/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile breakpoint */
@media (max-width: 480px) {
    .opaque-container {
        margin: 5rem 1rem 0.5rem;
        padding: 1rem;
    }

    .process-timeline {
        margin-top: 3rem;
        flex-direction: column;
        gap: 3rem;
    }

    .process-stage {
        display: flex;
        flex-direction: column;
        padding: 2.5rem 1rem 1rem;
    }

    .stage-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        align-self: start;
        position: absolute;
        top: -36px;
    }

    .stage-content h3 {
        font-size: 1.2rem;
    }

    .stage-content p {
        font-size: 0.9rem;
    }
}

/* Tablet breakpoint */
@media (min-width: 481px) and (max-width: 1200px) {
    .opaque-container {
        margin: 5.5rem 2rem 1rem;
        padding: 2rem 1rem;
    }

    .process-timeline {
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .process-stage {
        padding: 1.5rem;
    }

    .stage-number {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .stage-content h3 {
        font-size: 1.5rem;
    }

    .stage-content p {
        font-size: 1rem;
    }
}

/* Desktop breakpoint */
@media (min-width: 1200px) {
    .opaque-container {
        margin: 5.5rem 2rem 1rem;
        padding: 2rem 1rem;
    }

    .process-timeline {
        margin: 3.5rem 0rem 0rem;
        gap: 1rem;
    }

    .process-stage {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .stage-number {
        align-self: center;
        position: absolute;
        top: -36px;
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }

    .stage-content {
        margin-top: 2rem;
    }

    .stage-content h3 {
        font-size: 1.5rem;
    }

    .stage-content p {
        font-size: 1rem;
    }
}


body {
    background: url("/images/web-pictures/landing-page.jpg");
    background-size: cover;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    color: white;
}

.opaque-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 31px;
    animation: fadeInUp 0.2s ease-out forwards;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 15;
}

.process-title {
    color: #ffffff;
    text-align: center;
    animation: fadeInUp 0.2s ease-out forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
    font-weight: 600;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

.process-description {
    opacity: 1 !important;
    animation: none !important;
    margin-top: 1rem;
    margin-bottom: 0;
    max-width: 1000px;
    color: #e0e0e0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.process-timeline {
    display: flex;
}

.process-stage {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgb(59 78 102 / 12%);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: slideInLeft 0.2s ease-out forwards;
}

.process-stage:nth-child(1) { animation-delay: 0.0s }
.process-stage:nth-child(2) { animation-delay: 0.05s }
.process-stage:nth-child(3) { animation-delay: 0.1s }
.process-stage:nth-child(4) { animation-delay: 0.15s }
.process-stage:nth-child(5) { animation-delay: 0.2s }

.stage-number {
    background: linear-gradient(135deg, #11284691, #11284691);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    flex-shrink: 0;
    z-index: 3;
}

.stage-content h3 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.stage-content p {
    margin: 0;
}

.cta-btn {
    display: inline-block;
    margin: 2rem 0 0.5rem;
    padding: 0.9rem 2.2rem;
    font-size: .8rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(90deg, rgba(6, 165, 221, 0.8) 0%, rgba(33, 150, 243, 0.8) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(6, 165, 221, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 15;
}

    .cta-btn:hover, .cta-btn:focus {
        color: #ffffff;
        background: linear-gradient(90deg, #06a5dd 0%, #2196F3 100%);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 12px 35px rgba(6, 165, 221, 0.4);
        border-color: rgba(255, 255, 255, 0.5);
        outline: none;
    }

/* Mobile responsive sizing for CTA button */
@media (max-width: 575px) {
    .cta-btn {
        padding: 0.7rem 1.8rem; /* Smaller padding for mobile */
        font-size: 1rem; /* Smaller font for mobile */

    }
    .footer-wrapper {
        margin-top: 140vh;
    }
}

/* Tablet responsive sizing for CTA button */
@media (min-width: 576px) and (max-width: 991px) {
    .cta-btn {
        padding: 0.8rem 2rem; /* Slightly smaller padding for tablet */
        font-size: 1.1rem; /* Slightly smaller font for tablet */
    }
    .footer-wrapper {
        margin-top: 140vh;
    }
}