/* ==========================================================================
   BHARAT AGROLINK - CAREERS PAGE STYLESHEET
   Matching pixel-accurate design mockup
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bal-green-dark: #074e28;
    --bal-green-primary: #0b7a3c;
    --bal-green-vibrant: #10a450;
    --bal-green-light: #e8f5e9;
    --bal-green-pale: #f2f9f4;
    --bal-accent-orange: #ff9800;
    --bal-accent-blue: #0288d1;
    --bal-accent-purple: #7b1fa2;
    --bal-accent-rose: #d32f2f;
    --bal-text-heading: #1e293b;
    --bal-text-body: #475569;
    --bal-text-muted: #64748b;
    --bal-border: #e2e8f0;
    --bal-card-bg: #ffffff;
    --bal-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --bal-shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --bal-shadow-lg: 0 20px 30px -10px rgba(11, 122, 60, 0.12);
    --bal-radius-sm: 8px;
    --bal-radius-md: 16px;
    --bal-radius-lg: 24px;
    --bal-radius-full: 9999px;
}

body.bal-careers-body {
    background-color: #fcfdfc;
    color: var(--bal-text-body);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

.bal-careers-page {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.bal-careers-page * {
    box-sizing: border-box;
}

/* Typography Helpers */
.bal-font-handwriting {
    font-family: 'Caveat', cursive;
    letter-spacing: 0.5px;
}

.text-brand-green {
    color: var(--bal-green-primary) !important;
}

.text-brand-dark {
    color: var(--bal-green-dark) !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.bal-careers-hero-section {
    position: relative;
    padding: 60px 0 70px;
    background: linear-gradient(175deg, #f7faf8 0%, #ffffff 80%, #f4f9f5 100%);
    overflow: hidden;
}

.bal-careers-hero-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16, 164, 80, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}
.GAP-1 {
    gap: 0.5REM;
}
.bal-hero-eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bal-text-muted);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bal-hero-eyebrow .dot {
    color: var(--bal-green-primary);
    font-size: 16px;
}

.bal-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--bal-text-heading);
    margin-bottom: 16px;
}

.bal-hero-title .brand-accent {
    color: var(--bal-green-primary);
    display: block;
}

.bal-hero-tagline {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 14px;
}

.bal-hero-desc {
    font-size: 16px;
    color: var(--bal-text-body);
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.65;
}

.bal-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.bal-btn-primary {
    background-color: var(--bal-green-dark);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: var(--bal-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(7, 78, 40, 0.25);
}

.bal-btn-primary:hover {
    background-color: var(--bal-green-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 122, 60, 0.35);
    color: #ffffff !important;
}

.bal-btn-secondary {
    background-color: #ffffff;
    color: var(--bal-green-dark) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--bal-radius-full);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #d1e7dd;
    text-decoration: none;
    transition: all 0.25s ease;
}

.bal-btn-secondary:hover {
    background-color: var(--bal-green-pale);
    border-color: var(--bal-green-primary);
    transform: translateY(-2px);
    color: var(--bal-green-dark) !important;
}

/* Value Badges at bottom of hero */
.bal-hero-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    padding-top: 15px;
    border-top: 1px solid #eef3ef;
}

.bal-hero-value-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2e4a36;
}

.bal-hero-value-item i {
    color: var(--bal-green-primary);
    font-size: 16px;
}

/* Hero Visual Box */
.bal-hero-visual-wrapper {
    position: relative;
    border-radius: var(--bal-radius-lg);
    padding: 10px;
}

.bal-hero-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--bal-shadow-lg);
    background: #ffffff;
    border: 1px solid #edf2ed;
}

.bal-hero-img-box img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bal-hero-visual-wrapper:hover .bal-hero-img-box img {
    transform: scale(1.02);
}

/* Floating Doodle Tags */
.bal-doodle-tag {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 122, 60, 0.2);
    border-radius: 12px;
    padding: 6px 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    pointer-events: none;
    z-index: 2;
}

.bal-doodle-top-left {
    top: -16px;
    left: -10px;
    transform: rotate(-4deg);
}

.bal-doodle-bottom-right {
    bottom: -15px;
    right: 10px;
    transform: rotate(3deg);
}

.bal-doodle-tag .doodle-text {
    font-family: 'Caveat', cursive;
    font-size: 19px;
    font-weight: 700;
    color: var(--bal-green-primary);
    line-height: 1.2;
    display: block;
}

.bal-doodle-tag .doodle-sub {
    font-size: 11px;
    color: var(--bal-text-muted);
    font-weight: 600;
}

/* ==========================================================================
   WHY WORK WITH US SECTION
   ========================================================================== */
.bal-why-work-section {
    padding: 85px 0 70px;
    background-color: #ffffff;
    
}

.bal-section-heading-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.bal-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--bal-text-heading);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.bal-section-title .underline-accent {
    position: relative;
    white-space: nowrap;
}

.bal-section-title .underline-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bal-green-primary);
    border-radius: 2px;
}

.bal-section-subtitle {
    font-size: 16px;
    color: var(--bal-text-muted);
    line-height: 1.6;
}

/* 4 Feature Cards Grid */
.bal-why-card {
    background: #ffffff;
    border: 1px solid #eef3ef;
    border-radius: 18px;
    padding: 34px 26px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--bal-shadow-sm);
    display: flex;
    flex-direction: column;
}

.bal-why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
    border-color: #cde4d4;
}

.bal-why-icon-circle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    transition: transform 0.3s ease;
}

.bal-why-card:hover .bal-why-icon-circle {
    transform: scale(1.1);
}

.bal-icon-green { background-color: #e8f5e9; color: #1b5e20; }
.bal-icon-blue { background-color: #e1f5fe; color: #0277bd; }
.bal-icon-orange { background-color: #fff3e0; color: #e65100; }
.bal-icon-purple { background-color: #f3e5f5; color: #7b1fa2; }

.bal-why-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--bal-text-heading);
    margin-bottom: 12px;
    line-height: 1.35;
}

.bal-why-card-text {
    font-size: 14.5px;
    color: var(--bal-text-body);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   CURRENT OPPORTUNITIES (JOB VACANCIES) SECTION
   ========================================================================== */
.bal-opportunities-section {
    padding: 70px 0 85px;
    background-color: #fbfdfb;
    position: relative;
}

.bal-opp-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}

.bal-opp-doodle {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px dashed #b7dfc4;
    box-shadow: 0 4px 12px rgba(11, 122, 60, 0.05);
}

.bal-opp-doodle span {
    font-family: 'Caveat', cursive;
    font-size: 21px;
    font-weight: 700;
    color: var(--bal-green-primary);
    line-height: 1.15;
}

.bal-opp-doodle i {
    color: var(--bal-green-primary);
    font-size: 20px;
}

/* Filter Pills */
.bal-dept-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.bal-dept-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--bal-text-body);
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--bal-radius-full);
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.bal-dept-btn:hover {
    border-color: var(--bal-green-primary);
    color: var(--bal-green-primary);
    background: #f4fbf6;
}

.bal-dept-btn.active {
    background-color: var(--bal-green-primary);
    border-color: var(--bal-green-primary);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(11, 122, 60, 0.2);
}

/* Job Cards Grid */
.bal-job-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}

@media (max-width: 1100px) {
    .bal-job-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .bal-job-grid {
        grid-template-columns: 1fr;
    }
}

/* Individual Job Card */
.bal-job-card {
    background: #ffffff;
    border: 1px solid #e9eee9;
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--bal-shadow-sm);
    position: relative;
}

.bal-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
    border-color: #badcc3;
}

.bal-job-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.bal-job-badge {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--bal-radius-full);
    text-transform: capitalize;
    letter-spacing: 0.3px;
}

.bal-job-badge-sales { background: #e8f5e9; color: #1b5e20; }
.bal-job-badge-marketing { background: #e1f5fe; color: #0277bd; }
.bal-job-badge-advisory { background: #fff3e0; color: #e65100; }
.bal-job-badge-technology { background: #f3e5f5; color: #6a1b9a; }
.bal-job-badge-operations { background: #ffebee; color: #c62828; }
.bal-job-badge-info { background: #e0f7fa; color: #00838f; }

.bal-job-icon-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.bal-job-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--bal-text-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}

.bal-job-location {
    font-size: 13.5px;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
    font-weight: 500;
}

.bal-job-location i {
    color: var(--bal-green-primary);
    font-size: 13px;
}

.bal-job-bullets {
    list-style: none;
    padding-left: 0;
    margin-bottom: 24px;
    font-size: 13.5px;
    color: #475569;
    flex-grow: 1;
}

.bal-job-bullets li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    line-height: 1.5;
}

.bal-job-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--bal-green-primary);
}

.bal-job-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid #f1f5f1;
}

.bal-btn-apply {
    background: #ffffff;
    color: var(--bal-green-dark);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: var(--bal-radius-full);
    border: 1.5px solid #d0e7d6;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bal-btn-apply:hover {
    background: var(--bal-green-dark);
    color: #ffffff !important;
    border-color: var(--bal-green-dark);
    box-shadow: 0 4px 10px rgba(7, 78, 40, 0.2);
}

/* ==========================================================================
   RESUME / DIDN'T FIND RIGHT ROLE CALLOUT BANNER
   ========================================================================== */
.bal-resume-callout-wrap {
    margin-top: 20px;
    margin-bottom: 70px;
}

.bal-resume-callout-card {
    background: #edf7ef;
    border: 1px solid #c9e6d0;
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

.bal-resume-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.bal-resume-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #d4edd9;
    color: var(--bal-green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.bal-resume-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bal-text-heading);
    margin-bottom: 4px;
}

.bal-resume-text p {
    font-size: 15px;
    color: var(--bal-text-body);
    margin-bottom: 0;
}

.bal-resume-text a {
    color: var(--bal-green-primary);
    font-weight: 700;
    text-decoration: none;
}

.bal-resume-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.bal-btn-send-resume {
    background-color: var(--bal-green-dark);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px 28px;
    border-radius: var(--bal-radius-full);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.bal-btn-send-resume:hover {
    background-color: var(--bal-green-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 122, 60, 0.25);
}

.bal-resume-doodle {
    text-align: center;
}

.bal-resume-doodle span {
    font-family: 'Caveat', cursive;
    font-size: 21px;
    font-weight: 700;
    color: var(--bal-green-primary);
    display: block;
    line-height: 1.15;
}

.bal-resume-doodle i {
    color: var(--bal-green-primary);
    font-size: 18px;
}

/* ==========================================================================
   JOIN BHARAT AGROLINK BOTTOM BANNER
   ========================================================================== */
.bal-join-section {
    padding-bottom: 90px;
}

.bal-join-card {
    background: linear-gradient(135deg, #f3f8f4 0%, #e9f3ec 100%);
    border: 1px solid #dbe9de;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--bal-shadow-sm);
}

.bal-join-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bal-join-content {
    padding: 50px;
    flex: 1;
    min-width: 320px;
}

.bal-join-title {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: var(--bal-text-heading);
    margin-bottom: 8px;
}

.bal-join-motto {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--bal-green-dark);
    margin-bottom: 14px;
}

.bal-join-desc {
    font-size: 15.5px;
    color: var(--bal-text-body);
    max-width: 520px;
    margin-bottom: 28px;
    line-height: 1.65;
}

.bal-join-visual {
    flex: 1;
    min-width: 320px;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.bal-join-visual img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 0 24px 24px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

.bal-join-doodle-tag {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(11, 122, 60, 0.2);
    border-radius: 14px;
    padding: 10px 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.bal-join-doodle-tag span {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    font-weight: 700;
    color: var(--bal-green-primary);
    display: block;
    line-height: 1.15;
}

/* ==========================================================================
   JOB APPLICATION MODAL
   ========================================================================== */
.bal-modal-header {
    background: #f4faf6;
    border-bottom: 1px solid #e1efe5;
    padding: 22px 28px;
}

.bal-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--bal-text-heading);
    margin-bottom: 4px;
}

.bal-modal-role-pill {
    display: inline-block;
    background: var(--bal-green-light);
    color: var(--bal-green-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 20px;
}

.bal-modal-body {
    padding: 28px;
}

.bal-form-label {
    font-size: 13.5px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.bal-form-control {
    width: 100%;
    padding: 11px 16px;
    font-size: 14.5px;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    transition: all 0.2s ease;
    color: #1e293b;
    background-color: #ffffff;
}

.bal-form-control:focus {
    outline: none;
    border-color: var(--bal-green-primary);
    box-shadow: 0 0 0 4px rgba(11, 122, 60, 0.12);
}

.bal-file-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
}

.bal-file-upload-box:hover {
    border-color: var(--bal-green-primary);
    background: #f4fbf6;
}

.bal-file-upload-box i {
    font-size: 32px;
    color: var(--bal-green-primary);
    margin-bottom: 8px;
    display: block;
}

.bal-modal-footer {
    padding: 18px 28px;
    background: #fafbfc;
    border-top: 1px solid #edf2f7;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 991px) {
    .bal-hero-title {
        font-size: 38px;
    }
    .bal-hero-img-box img {
        height: 300px;
    }
    .bal-join-visual img {
        border-radius: 0 0 24px 24px;
        mask-image: none;
        -webkit-mask-image: none;
        height: 260px;
    }
    .bal-join-content {
        padding: 35px 25px;
    }
    .bal-resume-callout-card {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .bal-hero-title {
        font-size: 32px;
    }
    .bal-section-title {
        font-size: 28px;
    }
    .bal-hero-values {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .bal-resume-left {
        flex-direction: column;
        align-items: flex-start;
    }
    .bal-resume-right {
        width: 100%;
        justify-content: space-between;
    }
}

/* ==========================================================================
   APPLICATION MODAL & FILE UPLOAD STYLES
   ========================================================================== */
.bal-modal-header {
    padding: 20px 28px;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
}
.bal-modal-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}
.bal-modal-role-pill {
    display: inline-block;
    background: #e8f5e9;
    color: #0b7a3c;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 9999px;
}
.bal-modal-body {
    padding: 24px 28px;
    background: #ffffff;
}
.bal-modal-footer {
    padding: 16px 28px 24px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.bal-form-label {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
    display: block;
}
.bal-form-control {
    width: 100%;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    color: #1e293b;
    transition: all 0.2s ease;
    background: #ffffff;
}
.bal-form-control:focus {
    border-color: #0b7a3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(11, 122, 60, 0.12);
}
.bal-file-upload-box {
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.25s ease;
    display: block;
    margin-bottom: 0;
    position: relative;
}
.bal-file-upload-box:hover,
.bal-file-upload-box.dragover {
    border-color: #0b7a3c !important;
    background: #f2f9f4 !important;
}
.bal-file-upload-box i {
    font-size: 32px;
    color: #0b7a3c;
    margin-bottom: 8px;
    display: inline-block;
}
.bal-file-input-sr {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
}

