
    /* Existing styles... */
    .banner-home {
            height: auto;
            padding-top: 100px;
            background-color: #f5f7fa;
        }
        .banner-home {
    background: url('images\bacground-img.jpeg') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
    position: relative;
    padding-top: 100px;
}

.banner-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(245, 247, 250, 0.85); /* Light overlay to ensure text readability */
    z-index: 0;
}

.progress-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95); /* Slightly transparent white */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    margin-top: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(225, 229, 235, 0.5);
}
        .progress-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 30px;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-top: 30px;
            margin-bottom: 50px;
            border: 1px solid #e1e5eb;
        }
        .progress-card {
            padding: 20px;
        }
        .form-title {
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 700;
            font-size: 28px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .progress-chart {
            margin-top: 40px;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            border: 1px solid #e1e5eb;
        }
        .chart-title {
            text-align: center;
            margin-bottom: 25px;
            color: #2c3e50;
            font-weight: 600;
            font-size: 22px;
        }
        .progress-steps {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin-bottom: 40px;
        }
        .progress-steps::before {
            content: '';
            position: absolute;
            top: 15px;
            left: 0;
            right: 0;
            height: 4px;
            background-color: #e9ecef;
            z-index: 1;
        }
        .progress-step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            min-width: 60px;
        }
        .step-circle {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background-color: #e9ecef;
            color: #495057;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-weight: bold;
            border: 3px solid white;
            font-size: 14px;
        }
        .step-label {
            font-size: 12px;
            color: #495057;
            max-width: 80px;
            word-wrap: break-word;
            font-weight: 500;
            line-height: 1.3;
        }
        .active-step .step-circle {
            background-color: #28a745;
            color: white;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3);
        }
        .active-step .step-label {
            color: #28a745;
            font-weight: 600;
        }
        .completed-step .step-circle {
            background-color: #007bff;
            color: white;
        }
        .completed-step .step-label {
            color: #007bff;
        }
        .action-btns {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }
        .back-btn {
            margin-top: 25px;
        }
        .email-lookup-form {
            margin-bottom: 25px;
            padding: 20px;
            background: #f8f9fa;
            border-radius: 8px;
            border: 1px solid #e1e5eb;
        }
        .admin-alert {
            margin-bottom: 25px;
            border-left: 4px solid #17a2b8;
        }
        .form-group label {
            color: #495057;
            font-weight: 500;
            margin-bottom: 8px;
        }
        .form-control {
            border-radius: 6px;
            padding: 10px 15px;
            border: 1px solid #ced4da;
            color: #495057;
        }
        .form-control:focus {
            border-color: #80bdff;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
        .btn {
            border-radius: 6px;
            padding: 10px 20px;
            font-weight: 500;
            letter-spacing: 0.5px;
        }
        .btn-primary {
            background-color: #3498db;
            border-color: #3498db;
        }
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        .alert {
            border-radius: 8px;
            padding: 15px 20px;
        }
        .text-center h4 {
            color: #2c3e50;
            margin-top: 15px;
            font-weight: 600;
        }
        .input-group-append .btn {
            border-top-left-radius: 0;
            border-bottom-left-radius: 0;
        }

    /* Mobile-specific styles */
    @media (max-width: 768px) {
        .banner-home {
            padding-top: 70px;
        }
        
        .progress-container {
            padding: 15px;
            margin-top: 15px;
            margin-bottom: 30px;
            border-radius: 8px;
        }
        
        .progress-card {
            padding: 15px;
        }
        
        .form-title {
            font-size: 22px;
            margin-bottom: 20px;
        }
        
        .progress-steps {
            flex-wrap: wrap;
            justify-content: flex-start;
            margin-bottom: 20px;
        }
        
        .progress-steps::before {
            display: none;
        }
        
        .progress-step {
            flex: 0 0 33.333%;
            margin-bottom: 15px;
            min-width: auto;
        }
        
        .step-circle {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
        
        .step-label {
            font-size: 10px;
            max-width: 60px;
        }
        
        .progress-chart {
            padding: 15px;
            margin-top: 25px;
        }
        
        .chart-title {
            font-size: 18px;
            margin-bottom: 15px;
        }
        
        .form-group label {
            font-size: 14px;
        }
        
        .form-control {
            padding: 8px 12px;
            font-size: 14px;
        }
        
        .btn {
            padding: 8px 15px;
            font-size: 14px;
        }
        
        .action-btns {
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .action-btns .btn {
            flex: 1 1 100%;
        }
        
        .email-lookup-form {
            padding: 15px;
        }
        
        .input-group {
            flex-direction: column;
        }
        
        .input-group-append {
            margin-top: 10px;
            width: 100%;
        }
        
        .input-group-append .btn {
            width: 100%;
            border-radius: 6px;
        }
    }

    /* Additional responsive improvements */
    @media (max-width: 480px) {
        .progress-step {
            flex: 0 0 50%;
        }
        
        .form-title {
            font-size: 20px;
        }
        
        .action-btns .btn {
            padding: 10px;
        }
    }
    @media (max-width: 768px) {
    .banner-home {
        background-attachment: scroll; /* Disable fixed background on mobile */
        padding-top: 70px;
    }
    
    .banner-home::before {
        background-color: rgba(245, 247, 250, 0.9); /* Slightly stronger overlay for mobile */
    }
    
    .progress-container {
        background: rgba(255, 255, 255, 0.98); /* Less transparent on mobile */
        padding: 15px;
    }
    /* Enhanced Email Lookup Styles */
.email-lookup-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.email-lookup-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3498db, #2c3e50);
}

.lookup-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.lookup-icon {
    margin-right: 10px;
    color: #3498db;
    font-size: 24px;
}

.lookup-title {
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.lookup-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: #6c757d;
}

.lookup-divider::before,
.lookup-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.lookup-divider-text {
    padding: 0 10px;
    font-size: 14px;
}

.new-journey-title {
    color: #2c3e50;
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.new-journey-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #3498db;
}

/* Mobile-specific lookup styles */
@media (max-width: 768px) {
    .email-lookup-form {
        padding: 20px 15px;
    }
    
    .lookup-header {
        flex-direction: column;
        text-align: center;
    }
    
    .lookup-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .input-group-append .btn {
        width: 100%;
        margin-top: 10px;
        border-radius: 6px !important;
    }
    
    .new-journey-title {
        font-size: 18px;
    }
    
    .lookup-title {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .email-lookup-form {
        padding: 15px;
    }
    
    .lookup-title {
        font-size: 16px;
    }
    
    .new-journey-title {
        font-size: 16px;
    }
    
    .lookup-divider-text {
        font-size: 12px;
    }
}
}