/* =====================================================
   UNIVERSAL PREMIUM UI — FOR MOHUA TECH IT
   Includes:
   ✔ Apply Form (Glass + Neumorphism + Icons)
   ✔ Search Box (Smooth, Animated)
   ✔ Result Cards (Professional + News Portal Standard)
   ===================================================== */

/* ========== COLOR THEME ========== */
:root {
    --primary: #0066cc;
    --primary-dark: #004c99;
    --bg-light: #f5f7fa;
    --glass-bg: rgba(255,255,255,0.55);
    --glass-border: rgba(255,255,255,0.3);
}

/* =====================================================
   APPLY FORM (Glassmorphism + Elegant Premium UI)
   ===================================================== */

#mohua-application-form {
    max-width: 600px;
    margin: 60px auto;
    padding: 35px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Form Labels */
#mohua-application-form label {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    display: block;
}

/* Input Fields */
#mohua-application-form input[type="text"],
#mohua-application-form textarea,
#mohua-application-form input[type="file"] {
    width: 100%;
    padding: 14px 16px;
    margin-top: 6px;
    margin-bottom: 16px;
    border: 2px solid #e1e4e8;
    border-radius: 12px;
    font-size: 17px;
    background: #ffffffd9;
    transition: .2s;
}

/* Neumorphic Focus Effect */
#mohua-application-form input:focus,
#mohua-application-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(0,102,204,0.3);
    background: #fff;
    outline: none;
}

/* Textarea */
#mohua-application-form textarea {
    height: 130px;
    resize: vertical;
}

/* Submit Button */
#mohua-application-form button[type="submit"] {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 8px 20px rgba(0,102,204,0.35);
    transition: .3s;
}

#mohua-application-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,102,204,0.45);
}

/* Success / Error */
#mohua-app-result { font-size: 18px; margin-top: 12px; }
#mohua-app-result .success { color: #0a8a32; font-weight: 700; }
#mohua-app-result .error { color: #d8000c; font-weight: 700; }

/* =====================================================
   SEARCH BOX (Premium Round + Glow + Animation)
   ===================================================== */

.mohua-search-box {
    text-align: center;
    margin: 30px 0 20px;
}

#mohua-search-input {
    width: 60%;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid #dcdcdc;
    font-size: 20px;
    transition: 0.25s;
    background: #ffffffee;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

#mohua-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,102,204,0.25);
    outline: none;
}

/* =====================================================
   RESULT CARDS — FULL PROFESSIONAL NEWS PORTAL STYLE
   ===================================================== */

.mohua-result-count {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 25px;
}

.mohua-jsearch-results {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Card Style */
.mohua-jcard {
    display: flex;
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    gap: 22px;
    transition: .25s;
}

.mohua-jcard:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* Journalists Image */
.mohua-jimg img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid #f1f1f1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Info Section */
.mohua-jinfo h3 {
    margin: 0 0 8px;
    font-size: 26px;
    font-weight: 800;
}

.mohua-jinfo p {
    font-size: 18px;
    margin: 4px 0;
}

/* ------- Responsive ------- */
@media (max-width: 650px) {

    #mohua-search-input {
        width: 94%;
        font-size: 18px;
    }

    .mohua-jcard {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
