/* process.css */

/* Root Variables */
:root {
    --primary-color: #00a2e0;
    --secondary-color: #00a651;
    --accent-color: #00c2a8;
    --dark-color: #121212;
    --light-color: #ffffff;
    --gray-color: #f9f9f9;
    --text-color: #333333;
    --text-light: #777777;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 162, 224, 0.9), rgba(0, 166, 81, 0.9));
    overflow: hidden;
    color: var(--light-color);
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 10px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 30px;
    background-color: var(--light-color);
    position: relative;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
    border-left: 5px solid var(--primary-color);
}

.timeline-item:nth-child(even) .timeline-content {
    border-right: 5px solid var(--secondary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -13px;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-title {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Page Hero */
    .page-hero {
        height: 40vh;
        min-height: 300px;
        padding-top: 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Grid Layouts */
    .grid,
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] > div {
        padding: 20px !important;
    }

    /* Timeline */
    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
        left: 0 !important;
    }

    .timeline-item::after {
        left: 18px;
        right: auto;
    }

    .timeline-content {
        border-left: 5px solid var(--primary-color) !important;
        border-right: none !important;
    }

    .timeline-date {
        font-size: 0.8rem;
    }

    .timeline-title {
        font-size: 1.3rem;
    }

    /* Cards */
    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Testimonials */
    div[style*="max-width: 800px; margin: 0 auto"] > div {
        padding: 20px;
    }

    div[style*="font-size: 3rem; color: var(--primary-color); opacity: 0.2"] {
        font-size: 2rem;
    }

    /* CTA Section */
    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .cta div[style*="margin-top: 30px"] {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .cta .btn {
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    /* Page Hero */
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    /* Timeline */
    .timeline-item {
        padding-left: 60px;
        padding-right: 15px;
    }

    .timeline-content {
        padding: 20px;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Cards */
    .card {
        padding: 15px;
    }

    .card-title {
        font-size: 1.2rem;
    }

    /* Testimonials */
    div[style*="max-width: 800px; margin: 0 auto"] > div {
        padding: 15px;
    }

    div[style*="width: 60px; height: 60px; border-radius: 50%"] {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}