/* ==========================================================================
   🌐 CODESTACK HIRE PAGE MASTER DESIGN SYSTEM (SPLIT & MOBILE ACTIVE)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #030508;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow-x: hidden;
    position: relative;
}

/* 🌌 Ambient Top Corner Subtle Cyber Glow */
.bg-glow-layer {
    position: fixed;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Main Grid Architecture split view */
.hire-main-container {
    width: 100%;
    max-width: 1050px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* --- 💡 LEFT INFO PANEL LOOKS --- */
.hire-info-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cyber-badge {
    background: rgba(0, 242, 254, 0.05);
    border: 1px solid rgba(0, 242, 254, 0.15);
    color: #00f2fe;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    width: fit-content;
}

.hire-info-side h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.neon-text {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 15px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-item i {
    color: #00f2fe;
    font-size: 16px;
    background: rgba(0, 242, 254, 0.04);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.1);
}

.feature-item h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-item p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.4;
}

/* --- 📝 RIGHT FORM PANEL LOOKS (FAQ SOLID BLACK STYLE) --- */
.hire-form-side {
    background: #090d16;
    /* Pure FAQ style dark panel */
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.form-header {
    margin-bottom: 25px;
}

.form-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.form-header p {
    color: #64748b;
    font-size: 13px;
}

#hire-lead-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 11px;
    font-weight: 700;
    color: #00f2fe;
    letter-spacing: 0.5px;
}

.form-group label i {
    margin-right: 4px;
}

/* Input Reset Block */
#hire-lead-form input {
    background: #05070f !important;
    /* Secondary deeper black background */
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    color: #e2e8f0 !important;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

#hire-lead-form input:focus {
    border-color: #00f2fe !important;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.15) !important;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    border: none;
    border-radius: 12px;
    color: #05070f;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 242, 254, 0.4);
}

/* ==========================================================================
   📱 THE MASTER RESPONSIVE OVERRIDE ENGINE
   ========================================================================== */
@media (max-width: 900px) {
    .hire-main-container {
        grid-template-columns: 1fr !important;
        /* Stacks column layout */
        gap: 45px;
    }

    .hire-info-side {
        text-align: center;
        align-items: center;
    }

    .features-list {
        text-align: left;
        width: 100%;
        max-width: 480px;
    }

    .hire-info-side h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 14px;
    }

    .hire-form-side {
        padding: 24px 16px !important;
        border-radius: 16px;
    }

    .hire-info-side h1 {
        font-size: 26px;
    }
}

/* ==========================================================================
   ↩️ BACK TO HOME FLOATING BUTTON STYLING
   ========================================================================== */
.back-to-home-btn {
    position: absolute;
    top: 30px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
    color: #94a3b8 !important;
    /* Slate gray link */
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 10px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Hover Physics Matrix */
.back-to-home-btn:hover {
    color: #00f2fe !important;
    /* Cyan glow text */
    border-color: rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
    transform: translateX(-4px);
    /* Halke se left side slide hoga pointer responsive par */
}

.back-to-home-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* 📱 Mobile Responsive Adaptive Scaling */
@media (max-width: 900px) {

    /* Desktop layout grid ko thoda space dene ke liye body hierarchy check */
    body {
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 80px !important;
        /* Button ke liye upar space chhoda */
    }

    .back-to-home-btn {
        position: fixed;
        /* Mobile par top edge par fix ho jayega background scroll hote waqt */
        top: 16px;
        left: 16px;
        padding: 8px 14px;
        font-size: 12px;
        background: rgba(9, 13, 22, 0.8);
        /* Solid glassmorphism backing for screen contrast */
        backdrop-filter: blur(8px);
        border-color: rgba(255, 255, 255, 0.06);
        width: calc(100% - 32px);
        /* Mobile full stretch width balance */
        justify-content: center;
        /* Text screen center me lock hoga */
    }

    .back-to-home-btn:hover {
        transform: none;
        /* Mobile touch par side slide skip */
    }
}

@media (max-width: 900px) {
    body {
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding-top: 85px !important;
        /* Header area ko breathing space di */
    }

    /* 🔥 THE FIX: Giant dabba khatam, ab banega ek elegant dynamic pill */
    .back-to-home-btn {
        position: absolute !important;
        /* Fixed se absolute kiya taaki screen par floating block na bane */
        top: 20px !important;
        left: 20px !important;
        width: auto !important;
        /* ❌ Full width stretch terminated */
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;

        /* Premium Cyber Glassmorphism Look */
        background: rgba(9, 13, 22, 0.6) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(0, 242, 254, 0.2) !important;
        /* Soft cyan neon outline */
        border-radius: 30px !important;
        /* Full rounded organic pill shape */
        padding: 8px 16px !important;
        /* Compact space */

        color: #00f2fe !important;
        /* High contrast cyan font */
        font-size: 12px !important;
        letter-spacing: 0.3px;
    }

    .back-to-home-btn i {
        font-size: 12px !important;
    }
}