body {
    font-family: 'Inter', sans-serif;
    background-color: #06141B; /* Very Dark Blue */
    color: #CCD0CF; /* Very Light Gray */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6, .font-poppins {
    font-family: 'Poppins', sans-serif;
}

.glass-card {
    background: rgba(17, 33, 45, 0.8); /* Dark Blue with opacity */
    backdrop-filter: blur(12px);
    border: 1px solid #253745; /* Medium Dark Blue */
    transition: all 0.3s ease;
}

    .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2), 0 0 20px rgba(155, 168, 171, 0.1);
        border-color: #4A5C6A; /* Grayish Blue */
    }

.text-glow {
    color: #FFFFFF;
    text-shadow: 0 0 8px rgba(204, 208, 207, 0.3);
}

.btn-primary {
    background-color: #4A5C6A; /* Grayish Blue */
    color: #FFFFFF;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #9BA8AB; /* Light Gray */
        transform: translateY(-2px);
        color: #06141B;
    }

    .btn-primary:disabled {
        background-color: #253745;
        cursor: not-allowed;
    }

.modal-overlay {
    transition: opacity 0.3s ease;
}

.modal-content {
    transition: transform 0.3s ease;
}

.full-screen-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.animated-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .animated-content.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.form-input {
    background-color: #11212D;
    border: 1px solid #253745;
    color: #CCD0CF;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    .form-input:focus {
        outline: none;
        border-color: #9BA8AB;
        box-shadow: 0 0 0 3px rgba(155, 168, 171, 0.2);
    }

.divider-shape {
    height: 4px;
    width: 100%;
    max-width: 90rem;
    margin: 0 auto;
    background: linear-gradient(to right, transparent, #4A5C6A, transparent);
    opacity: 0.5;
}
/* Development Journey Styles */
.journey-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.journey-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.journey-icon-container {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #11212D;
    border: 2px solid #253745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.journey-content {
    border-left: 2px dashed #253745;
    padding-left: 2.5rem;
    padding-bottom: 3rem;
}

.journey-container .journey-step:last-child .journey-content {
    border-left: none;
}

@media (min-width: 768px) {
    .journey-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        position: relative;
    }

    .journey-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .journey-content {
        border-left: none;
        padding-left: 0;
        padding-bottom: 0;
    }

    .journey-container::before {
        content: '';
        position: absolute;
        top: 40px;
        left: 16.66%;
        right: 16.66%;
        height: 2px;
        background: repeating-linear-gradient(90deg, #253745, #253745 6px, transparent 6px, transparent 12px);
        z-index: 1;
    }

    .journey-step:nth-child(n+4) {
        margin-top: 2rem;
    }
}
/* Timeline Visualization */
.timeline-vis {
    display: flex;
    height: 40px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #0A1822;
    border: 1px solid #253745;
}

.timeline-phase {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 8px;
    transition: all 0.3s ease;
}

    .timeline-phase:hover {
        filter: brightness(1.2);
    }
