 /* WhatsApp Help Section Styles */
        .whatsapp-help-section {
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease;
        }
        
        .whatsapp-alert {
            background: linear-gradient(135deg, #25D366, #128C7E);
            border: none;
            border-radius: 15px;
            padding: 25px;
            color: white;
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            border-left: 5px solid #075E54;
            position: relative;
            overflow: hidden;
        }
        
        .whatsapp-alert::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .whatsapp-alert::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -30%;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }
        
        .whatsapp-icon {
            font-size: 2.5rem;
            animation: bounce 2s infinite;
        }
        
        .whatsapp-content h4 {
            font-weight: 700;
            margin-bottom: 10px;
            font-size: 1.4rem;
        }
        
        .whatsapp-content p {
            font-size: 1rem;
            opacity: 0.9;
            margin-bottom: 0;
            line-height: 1.5;
        }
        
        .whatsapp-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
            backdrop-filter: blur(10px);
            position: relative;
            z-index: 2;
        }
        
        .whatsapp-btn:hover {
            background: white;
            color: #25D366;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        

/* Application Section Styles */
.application-section {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.application-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.application-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px;
    text-align: center;
}

.application-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.application-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.application-body {
    padding: 40px;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.step-indicator:before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #f0f0f0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 600;
    transition: var(--transition);
}

.step.active .step-number {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.step.completed .step-number {
    background: var(--secondary-color);
    color: white;
}

.step-text {
    font-size: 0.9rem;
    color: #999;
    font-weight: 500;
}

.step.active .step-text {
    color: var(--primary-color);
    font-weight: 600;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.form-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-control {
    padding: 12px 15px;
    border: 2px solid #eaeaea;
    border-radius: 8px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(58, 134, 255, 0.25);
}

.visa-option-card {
    border: 2px solid #eaeaea;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.visa-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.visa-option-card.selected {
    border-color: var(--primary-color);
    background: rgba(58, 134, 255, 0.05);
}

.visa-type {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.visa-description {
    color: #666;
    font-size: 0.9rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.nav-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-prev {
    background: #f8f9fa;
    color: var(--dark-color);
    border: 1px solid #eaeaea;
}

.btn-prev:hover {
    background: #e9ecef;
}

.btn-next {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-next:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(58, 134, 255, 0.3);
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 134, 255, 0.4);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 40px;
}

.success-message h2{
   font-size : 16pt;
}
.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 20px;
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.success-text {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Custom field styling */
.field-summary {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.field-label {
    font-weight: 600;
    color: var(--dark-color);
}

.field-value {
    color: #666;
}

/* Responsive adjustments for application section */
@media (max-width: 991.98px) {
    .application-header {
        padding: 30px 20px;
    }
    
    .application-title {
        font-size: 2rem;
    }
    
    .application-body {
        padding: 30px;
    }
    
    .step-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .step-indicator {
        flex-wrap: wrap;
    }
    
    .step {
        flex: 0 0 33.333%;
        margin-bottom: 20px;
    }
    
    .step-indicator:before {
        top: 30px;
    }
}

@media (max-width: 575.98px) {
    .application-section {
        padding: 100px 0 40px;
    }
    
    .application-header {
        padding: 25px 15px;
    }
    
    .application-title {
        font-size: 1.8rem;
    }
    
    .application-subtitle {
        font-size: 1rem;
    }
    
    .application-body {
        padding: 25px 15px;
    }
    
    .step {
        flex: 0 0 50%;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-btn {
        width: 100%;
    }
}
	