body {
    font-family: 'Inter', sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #4E88E6 0%, #244E99 50%, #712D91 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #4E88E6, #712D91, transparent);
}

.sec-pad {
    padding: 7rem 0 4rem 0 !important;
}









.quick-apply-container {
    background: #1a202c;
    border-radius: 20px;
    box-shadow: 0 6px 24px 0 rgba(50, 100, 255, 0.13);
    padding: 2.5rem;
}

.quick-apply-container h3 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-apply-container input[type="text"],
.quick-apply-container input[type="email"],
.quick-apply-container select,
.quick-apply-container textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    background: #23272f;
    font-size: 1rem;
    color: #fff;
    transition: border 0.2s, box-shadow 0.2s;
    margin-bottom: 1.2rem;
}

.quick-apply-container input:focus,
.quick-apply-container select:focus,
.quick-apply-container textarea:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.18);
    outline: none;
}

.quick-apply-container button[type="submit"] {
    background: linear-gradient(90deg,#2563eb 0,#60a5fa 100%);
    color: #fff;
    font-weight: bold;
    padding: 0.9rem 2.4rem;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, opacity 0.2s;
    box-shadow: 0 2px 12px 0 rgba(60,160,255,0.07);
}

.quick-apply-container button[type="submit"]:hover {
    background: linear-gradient(90deg,#2563eb 0,#7dd3fc 100%);
    opacity: 0.93;
}

.quick-apply-container .success-message {
    color: #3b82f6;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    padding: 1rem;
    border-radius: 0.75rem;
    margin-top: 1rem;
    text-align: center;
    font-size: 1.08rem;
}
