
        :root {
            --primary: #2563EB;
            --dark: #0F172A;
            --light-bg: #EEF5FF;
            --accent: #4F8DFF;
            --white: #FFFFFF;
            --gray: #64748B;
            --glass: rgba(255, 255, 255, 0.7);
            --radius-lg: 24px;
            --radius-md: 16px;
            --shadow-premium: 0 20px 50px rgba(15, 23, 42, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
        }

        /* --- Background Decorations --- */
        .glow {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
            filter: blur(80px);
            z-index: -1;
            pointer-events: none;
        }

        .hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 30px 6% 0;
    overflow: hidden;
}

.hero-split {
    width: 100%;
    max-width: 1500px;

    display: grid;

    /* Bring both sections closer */
    grid-template-columns: 0.95fr 1.05fr;

    gap: 0;

    align-items: center;

    margin: 0 auto;
}

.hero-left {
    position: relative;
    z-index: 5;

    max-width: 620px;

    margin-left: 40px;
}

.hero-right {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    margin-left: -120px;
}

    .hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--dark);
    text-transform: none;
}

.hero h1 span {
    display: block;
    background: linear-gradient(135deg, #2563EB, #4F8DFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

        .hero p.subheading {
    font-size: 1.15rem;
    color: var(--primary);
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 10px;
}

        .hero p.desc {
            font-size: 1.0rem;
            color: var(--gray);
            font-weight: 300;    
            max-width: 600px;
            margin-bottom: 40px;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
        }

        .btn-outline {
            border: 2px solid #E2E8F0;
            color: var(--dark);
        }

        .btn-outline:hover { background: #f8fafc; border-color: var(--primary); }

        /* Stats Row */
        .stats-row {
            display: flex;
            gap: 40px;
            border-top: 1px solid #E2E8F0;
            padding-top: 30px;
        }

        .stat-item h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 4px; }
        .stat-item p { font-size: 0.85rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

       /* Hero Image Area */

.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    overflow: visible;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Blue glow behind image */

.image-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.team-img {
    width: 145%;
    max-width: 1150px;

    object-fit: cover;

    margin-right: -120px;

    mask-image:
        linear-gradient(
            to left,
            black 68%,
            transparent 100%
        );

    -webkit-mask-image:
        linear-gradient(
            to left,
            black 68%,
            transparent 100%
        );
}
@media (max-width: 768px) {

    .hero {
    min-height: auto;
    padding: 30px 0 0;
    margin-bottom: 0;
}

    .hero-split {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    /* Put text first, image second */

    .hero-left {
        order: 1;
        max-width: 100%;
        margin: 0;
        text-align: center;
    }

   .hero-right {
    order: 2;
    width: 100vw;
    margin: 0;
    padding: 0;
    justify-content: center;
    overflow: hidden;
}

    /* Hide hiring badge */

    .floating-card {
        display: none;
    }

    .image-container {
        width: 100%;
        justify-content: center;
    }

    .team-img {
    width: 100vw;
    max-width: none;

    margin: 0;
    padding: 0;

    object-fit: cover;

    mask-image: none;
    -webkit-mask-image: none;
}

    .tag {
        margin-bottom: 14px;
    }

    .hero .subheading {
        font-size: 1rem;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
        line-height: 0.95;
        margin-bottom: 18px;
    }

    .hero p.desc {
        font-size: 1rem;
        line-height: 1.7;
        margin: 0 auto 30px;
    }

    @media (max-width: 768px) {

    .hero-btns .btn {
        width: fit-content !important;
        min-width: 220px;
        margin: 0 auto;
        padding-left: 32px;
        padding-right: 32px;
    }
}
.apply-section .section-header {
    margin-bottom: 30px;
}
    .stats-row {
    position: relative;

    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

    text-align: center;

    border-top: none;

    padding-top: 0;
}.stats-row::before,
.stats-row::after {
    content: "";

    position: absolute;

    background: #9ca3af;
}

.stats-row::before {
    width: 1px;
    height: 120px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

.stats-row::after {
    width: 320px;
    height: 1px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}
}        .floating-card {
            position: absolute;
            background: var(--glass);
            backdrop-filter: blur(12px);
            padding: 20px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.5);
            box-shadow: var-shadow-premium;
            z-index: 3;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        /* --- Why People Love Logix Section --- */
        .section { padding: 120px 8%; }

        .section-header { text-align: center; margin-bottom: 80px; }
        .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .why-card {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            border: 1px solid #f1f5f9;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary);
            box-shadow: var(--shadow-premium);
        }

        .why-card .icon-box {
            width: 60px;
            height: 60px;
            background: var(--light-bg);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            margin-bottom: 24px;
            transition: 0.3s;
        }

        .why-card:hover .icon-box {
            background: var(--primary);
            color: white;
        }

       .why-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    text-align: left;
}

.why-card p {
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    text-align: left;
}

        /* --- Application Section --- */
        .apply-section { background: var(--light-bg); position: relative; }

        .form-wrapper {
            max-width: 850px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
            border: 1px solid rgba(255,255,255,0.8);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .full-width { grid-column: span 2; }

        .input-group { display: flex; flex-direction: column; gap: 8px; }

        label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

        input, select, textarea {
            padding: 14px 20px;
            border-radius: 10px;
            border: 1.5px solid #E2E8F0;
            background: #F8FAFC;
            font-size: 1rem;
            transition: 0.3s;
        }

        input:focus, select:focus {
            outline: none;
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
        }

        .radio-container {
            display: flex;
            gap: 20px;
            background: #F8FAFC;
            padding: 12px 20px;
            border-radius: 12px;
            border: 1.5px solid #E2E8F0;
        }

       .radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
}

        .file-drop {
            border: 2px dashed #CBD5E1;
            padding: 30px;
            text-align: center;
            border-radius: 16px;
            cursor: pointer;
            transition: 0.3s;
        }

        .file-drop:hover { border-color: var(--primary); background: var(--light-bg); }

        .submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
        }

        /* --- FAQ Section --- */
        .faq-wrapper { max-width: 800px; margin: 0 auto; }

        .faq-item {
            background: white;
            margin-bottom: 16px;
            border-radius: 16px;
            border: 1px solid #f1f5f9;
            overflow: hidden;
            transition: 0.3s;
        }

        .faq-trigger {
            padding: 24px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            text-align: left;
            color: var(--dark);
        }

        .faq-content {
            padding: 0 24px 24px;
            color: var(--gray);
            display: none;
        }

        .faq-item.active { border-color: var(--primary); box-shadow: 0 10px 25px rgba(0,0,0,0.05); }

        /* --- Responsive --- */
        @media (max-width: 1024px) {
            .hero-split { grid-template-columns: 1fr; text-align: center; }
            .hero-left { order: 2; }
            .hero-right { order: 1; margin-bottom: 50px; }
            .hero h1 { font-size: 3rem; }
            .hero p.desc { margin-left: auto; margin-right: auto; }
            .hero-btns { justify-content: center; }
            .stats-row { justify-content: center; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .team-img { width: 80%; }
        }

        @media (max-width: 768px) {
            .section { padding: 80px 5%; }
            .form-grid { grid-template-columns: 1fr; }
            .full-width { grid-column: span 1; }
            .form-wrapper { padding: 40px 20px; }
            .why-grid { grid-template-columns: 1fr; }
            .hero-btns { flex-direction: column; }
            .stats-row { flex-wrap: wrap; gap: 20px; }
        }
/* ===== MOBILE FIX ===== */

@media (max-width: 768px) {

    /* Hero image below content with faded borders */

    .hero-right {
        order: 2 !important;
        margin-top: 20px;
    }

    .team-img {
        width: 130%;
        max-width: none;
        margin-right: 0;

        -webkit-mask-image: linear-gradient(
            to left,
            black 65%,
            transparent 100%
        );

        mask-image: linear-gradient(
            to left,
            black 65%,
            transparent 100%
        );
    }

    /* Smaller headings for all sections except hero */

    .section-header h2 {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .why-card h3 {
        font-size: 1.15rem;
    }

    .faq-trigger {
        font-size: 1rem;
    }
}
@media (max-width: 768px) {

    .input-group label {
        text-align: left !important;
        
    }

}
input,
select,
textarea,
.hero p.desc,
.section-header p,
.why-card p {
    font-weight: 400 !important;
}
@media (max-width: 768px) {

    /* Reduce overall form spacing */

    .form-wrapper {
        padding: 28px 18px;
    }

    .form-grid {
        gap: 16px;
    }

    .input-group {
        gap: 6px;
    }
@media (max-width: 768px) {

    .form-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 24px 16px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .form-grid {
        width: 100%;
        overflow: hidden;
    }

    .icon-box svg,
    .file-drop svg,
    .submit-btn svg,
    .faq-trigger svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
}
    /* Reduce field height */

    input,
    select,
    textarea {
        padding: 11px 16px;
        min-height: 46px;
        font-size: 14px;
    }

    /* Smaller labels */

    label {
        font-size: 14px;
        margin-bottom: 2px;
    }

    /* Fix radio fields */

   @media (max-width: 768px) {

    .radio-container {
        display: flex;
        justify-content: space-between;
        align-items: center;

       padding: 2px 14px !important;
    min-height: 33px !important;
    }

    .radio-option {
        display: inline-flex !important;
        align-items: center;

        gap: 5px;

        font-size: 14px;
        font-weight: 400;

        line-height: 1;

        white-space: nowrap;

        width: auto !important;
        margin: 0;
    }

    .radio-option input[type="radio"] {
        transform: scale(0.85);
        margin: 0;
    }
}
    /* Remove extra gap under Work Preference */

    .input-group.full-width {
        margin-bottom: 0;
    }

    /* Reduce resume upload area height */

    .file-drop {
        padding: 18px;
    }

    /* Smaller submit button */

    .submit-btn {
        padding: 14px;
        font-size: 15px;
        margin-top: 10px;
    }
}
@media (max-width: 768px) {

    .hero,
    .hero-split,
    .hero-right,
    .image-container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .team-img {
        display: block;
        margin-bottom: -6px;
    }
}