.elementor-5865 .elementor-element.elementor-element-e032af8{--display:flex;}/* Start custom CSS for html, class: .elementor-element-36aa438 *//* --- High Contrast, Fast & Responsive CSS --- */
:root {
    --primary-blue: #2563EB;
    --darker-blue: #1d4ed8;
    --accent-green: #10B981;
    --accent-yellow: #FFD700; /* Bright Yellow for max contrast */
    --text-main: #FFFFFF; /* Pure White text */
    --text-muted: #F8FAFC; /* Very Bright off-white */
    --alert-red: #DC2626; /* Solid Red for visibility */
}

/* --- Main Footer Container --- */
.job-premium-footer {
    background-color: var(--primary-blue);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif; /* Normal standard fonts */
    padding: 0 0 20px 0;
    margin-top: 80px;
    position: relative;
}

/* --- Top Glowing Border --- */
.footer-top-glow {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--accent-green), var(--accent-yellow), var(--primary-blue));
}

/* --- Solid Floating Alert (Fixed Contrast & Visibility) --- */
.footer-floating-alert {
    background-color: var(--alert-red);
    border: 3px solid #FFFFFF;
    color: #FFFFFF;
    text-align: center;
    padding: 12px 25px;
    border-radius: 50px;
    margin: -35px auto 40px;
    width: fit-content;
    max-width: 90%;
    font-weight: bold;
    font-size: 16px; /* Normal Font Size */
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.alert-btn {
    background-color: var(--accent-yellow);
    color: #000000;
    padding: 6px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s, background-color 0.3s;
}

.alert-btn:hover {
    transform: translateY(-2px);
    background-color: #FFEA00;
}

/* --- Flexbox Grid --- */
.footer-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-card {
    flex: 1;
    min-width: 280px;
}

/* --- Typography (Fixed Sizes & Colors) --- */
.footer-title {
    color: var(--text-main);
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 2px solid var(--accent-yellow);
    padding-bottom: 8px;
    display: inline-block;
}

.footer-title span {
    color: var(--accent-yellow);
}

.footer-desc {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}

/* --- Stylish Nav Links --- */
.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    position: relative;
    padding-left: 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav-links a::before {
    content: '»';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-yellow);
    font-size: 18px;
    font-weight: bold;
}

.footer-nav-links a:hover {
    color: var(--accent-yellow);
    transform: translateX(5px);
}

/* --- Beautiful Pulsing Badge --- */
.badge-pulse {
    background-color: var(--alert-red);
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    vertical-align: middle;
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.6); }
    70% { box-shadow: 0 0 0 6px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

/* --- Interactive Form --- */
.interactive-form {
    display: flex;
    margin-top: 15px;
    background: #ffffff;
    border-radius: 6px;
    padding: 4px;
}

.interactive-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    background: transparent;
    outline: none;
    font-size: 16px;
    color: #000000;
}

.interactive-form button {
    padding: 10px 20px;
    background-color: var(--accent-green);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.interactive-form button:hover {
    background-color: #059669;
}

.secure-badge {
    font-size: 14px;
    color: var(--accent-yellow);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
}

/* --- Minimalist Copyright --- */
.footer-copyright {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    background-color: var(--darker-blue);
}

.footer-copyright p {
    color: var(--text-main);
    font-size: 15px;
    margin: 5px 0;
}

/* --- Mobile Specific Tweaks --- */
@media (max-width: 768px) {
    .footer-floating-alert {
        flex-direction: column;
        gap: 10px;
        border-radius: 15px;
        padding: 15px;
    }
    .footer-main-content {
        gap: 30px;
        padding: 20px 15px;
    }
}/* End custom CSS */