html,body
{
    overflow-x: hidden; 
}

    :root {
        --primary-color: #0f1c54;
        --secondary-color: #03092c;
        --accent-color: #ff4d5a;
        --accent-hover: #ff6471;
        --accent-secondary: #4b7bec;
        --text-light: #ffffff;
        --text-dark: #171c34;
        --text-muted: #94a3b8;
        --card-bg: rgba(255, 255, 255, 0.03);
        --card-border: rgba(255, 255, 255, 0.08);
        --gradient-primary: linear-gradient(135deg, #ff4d5a 0%, #ff6471 100%);
        --gradient-dark: linear-gradient(135deg, #0f1c54 0%, #03092c 100%);
        --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
        --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.1);
        --transition-fast: 0.3s;
        --transition-medium: 0.5s;
        --border-radius-sm: 8px;
        --border-radius-md: 16px;
        --border-radius-lg: 24px;
        --border-radius-xl: 32px;
        --font-primary: 'Inter', 'Segoe UI', sans-serif;

        /* New variables for the video popup */
        --overlay-bg: rgba(3, 9, 44, 0.95);
        --popup-bg: rgba(15, 28, 84, 0.9);
        --btn-active: #02061e;
        /* Dark navy for active button state */
    }

    /* Submit button */
    #applicationForm button[type="submit"] {
        background-color: #ff4d5a;
        border-color: #ff4d5a;
        color: #fff;
    }

    /* File upload trigger button */
    #resumeTrigger {
        background-color: transparent;
        border: 2px dashed #ff4d5a !important;
        color: #fff;
    }

    #resumeTrigger:hover {
        background-color: #e0434f;
        border-color: #e0434f;
    }

    #applicationForm button[type="submit"]:hover {
        background-color: #e0434f;
        border-color: #e0434f;
    }

    .job-card {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
        backdrop-filter: blur(20px);
        border: 1px solid var(--card-border);
        border-radius: var(--border-radius-lg);
        padding: 30px;
        margin-bottom: 30px;
        box-shadow: var(--shadow-card);
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform var(--transition-medium);
    }

    .job-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(255, 77, 90, 0.15);
        border-color: rgba(255, 77, 90, 0.3);
    }

    .job-card:hover::before {
        transform: scaleX(1);
    }

    .job-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 20px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .job-title {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 8px;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .job-department {
        background: var(--gradient-primary);
        color: var(--text-light);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
        position: relative;
        overflow: hidden;
    }

    .job-department::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .job-department:hover::before {
        left: 100%;
    }

    .job-meta {
        display: flex;
        gap: 25px;
        margin-bottom: 18px;
        flex-wrap: wrap;
    }

    .job-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-muted);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .job-meta-item i {
        color: var(--accent-color);
        font-size: 1.1rem;
    }

    .job-description {
        color: var(--text-muted);
        line-height: 1.7;
        margin-bottom: 20px;
        font-size: 1.05rem;
    }

    .job-requirements h6 {
        color: var(--text-dark);
        margin-bottom: 12px;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .requirement-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
    }

    .requirement-tag {
        background: linear-gradient(145deg, #f8f9ff, #e8ecff);
        color: var(--primary-color);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
        border: 2px solid transparent;
        transition: all var(--transition-fast);
        position: relative;
        overflow: hidden;
    }

    .requirement-tag::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-fast);
        z-index: -1;
    }

    .requirement-tag:hover {
        color: var(--text-light);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 77, 90, 0.3);
    }

    .requirement-tag:hover::before {
        opacity: 1;
    }

    .apply-btn {
        background: var(--gradient-primary);
        color: var(--text-light);
        padding: 14px 32px;
        border: none;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1rem;
        transition: all var(--transition-fast);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 25px rgba(255, 77, 90, 0.3);
    }

    .apply-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .apply-btn:hover {
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 15px 35px rgba(255, 77, 90, 0.4);
        color: var(--text-light);
    }

    .apply-btn:hover::before {
        left: 100%;
    }

    .apply-btn:active {
        transform: translateY(-1px) scale(1.02);
    }

    /* Enhanced Hiring Stats Section */
    .hiring-stats {
        background: var(--gradient-dark);
        color: var(--text-light);
        /* padding: 100px 0; */
        position: relative;
        overflow: hidden;
    }

    .hiring-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
        animation: float 20s ease-in-out infinite;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px) rotate(0deg);
        }

        50% {
            transform: translateY(-20px) rotate(180deg);
        }
    }

    .hiring-stat-card {
        text-align: center;
        padding: 30px 20px;
        position: relative;
        z-index: 1;
    }

    .hiring-stat-number {
        font-size: 4rem;
        font-weight: 900;
        display: block;
        margin-bottom: 15px;
        background: linear-gradient(45deg, #ff4d5a, #ff6471, #4b7bec);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 4px 20px rgba(255, 77, 90, 0.3);
    }

    .hiring-stat-label {
        font-size: 1.2rem;
        opacity: 0.9;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Enhanced Culture Section */
    .culture-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        position: relative;
    }

    .culture-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        padding: 40px 30px;
        border-radius: var(--border-radius-lg);
        text-align: center;
        height: 100%;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        position: relative;
        overflow: hidden;
    }

    .culture-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-medium);
        z-index: -1;
    }

    .culture-card:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 25px 50px rgba(255, 77, 90, 0.15);
        color: var(--text-light);
    }

    .culture-card:hover::before {
        opacity: 1;
    }

    .culture-card:hover .culture-icon {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1) rotate(10deg);
    }

    .culture-card:hover .culture-title,
    .culture-card:hover p {
        color: var(--text-light);
    }

    .culture-icon {
        width: 90px;
        height: 90px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        font-size: 2.2rem;
        color: var(--text-light);
        transition: all var(--transition-medium);
        box-shadow: 0 10px 30px rgba(255, 77, 90, 0.3);
    }

    .culture-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: var(--text-dark);
        transition: color var(--transition-medium);
    }

    .culture-card p {
        color: var(--text-muted);
        line-height: 1.6;
        font-size: 1.05rem;
        transition: color var(--transition-medium);
    }

    /* Enhanced Benefits Section */
    .benefits-section {
        padding: 100px 0;
        background: var(--text-light);
    }

    .benefit-item {
        display: flex;
        align-items: center;
        padding: 25px 0;
        border-bottom: 2px solid #f1f5f9;
        transition: all var(--transition-fast);
        border-radius: var(--border-radius-sm);
    }

    .benefit-item:hover {
        background: linear-gradient(145deg, #f8fafc, #f1f5f9);
        padding-left: 20px;
        transform: translateX(10px);
    }

    .benefit-item:last-child {
        border-bottom: none;
    }

    .benefit-icon {
        width: 60px;
        height: 60px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-light);
        margin-right: 25px;
        font-size: 1.5rem;
        transition: all var(--transition-fast);
        box-shadow: 0 8px 25px rgba(255, 77, 90, 0.2);
    }

    .benefit-item:hover .benefit-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 12px 35px rgba(255, 77, 90, 0.3);
    }

    .benefit-content h6 {
        margin: 0 0 8px 0;
        color: var(--text-dark);
        font-weight: 700;
        font-size: 1.2rem;
    }

    .benefit-content p {
        margin: 0;
        color: var(--text-muted);
        font-size: 1rem;
        line-height: 1.6;
    }


    /* Enhanced Modal Styles */
    .modal-content {
        border-radius: var(--border-radius-lg);
        border: none;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        overflow: hidden;
    }

    .modal-header {
        background: var(--gradient-primary);
        color: var(--text-light);
        border-bottom: none;
        padding: 25px 30px;
    }

    .modal-title {
        font-weight: 700;
        font-size: 1.4rem;
    }

    .btn-close {
        filter: invert(1);
        opacity: 0.8;
    }

    .btn-close:hover {
        opacity: 1;
    }

    .application-form {
        background: var(--text-light);
        padding: 40px;
        border-radius: 0;
    }

    .form-control {
        border: 2px solid #e2e8f0;
        border-radius: var(--border-radius-sm);
        padding: 14px 18px;
        font-size: 1rem;
        transition: all var(--transition-fast);
        background: #f8fafc;
    }

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.1);
        background: var(--text-light);
    }

    .file-upload-label {
        display: block;
        padding: 16px 20px;
        background: linear-gradient(145deg, #f8fafc, #e2e8f0);
        border: 2px dashed #cbd5e0;
        border-radius: var(--border-radius-sm);
        text-align: center;
        cursor: pointer;
        transition: all var(--transition-fast);
        font-weight: 600;
        color: var(--text-muted);
    }

    .file-upload-label:hover {
        background: linear-gradient(145deg, #e2e8f0, #cbd5e0);
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

    .form-check-input:checked {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

    /* Section Headers Enhancement */
    .section-header {
        margin-bottom: 60px;
    }

    .section-subtitle {
        color: var(--accent-color);
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .section-title {
        color: var(--text-dark);
        font-weight: 900;
        font-size: 2.8rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .section-description {
        color: var(--text-muted);
        font-size: 1.2rem;
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Responsive Enhancements */
    @media (max-width: 768px) {
        .job-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .job-meta {
            gap: 15px;
        }

        .hiring-stat-number {
            font-size: 3rem;
        }

        .section-title {
            font-size: 2.2rem;
        }

        .culture-card {
            margin-bottom: 30px;
        }

        .benefit-item:hover {
            transform: none;
            padding-left: 0;
        }
    }

    /* Animation Enhancements */
    @keyframes slideInUp {
        from {
            transform: translateY(50px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .job-card {
        animation: slideInUp 0.6s ease-out;
    }

    .hiring-stat-number {
        animation: pulse 2s ease-in-out infinite;
    }

    /* Glassmorphism Effects */
    .job-card,
    .culture-card {
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Gradient Text Effects */
    .gradient-text {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-header .section-title {
        color: transparent;
        background-image: linear-gradient(90deg, var(--text-light), navy);
        position: relative;
    }

    .section-header .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-image: linear-gradient(90deg, var(--text-light), red);
        border-radius: 2px;
    }

    .text-center .section-header .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Enhanced animations */
    @keyframes bounceIn {
        0% {
            transform: scale(0.3);
            opacity: 0;
        }

        50% {
            transform: scale(1.05);
        }

        70% {
            transform: scale(0.9);
        }

        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .job-card {
        animation: bounceIn 0.6s ease-out;
        animation-fill-mode: both;
    }

    .job-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .job-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .job-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .job-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .btn-square {
        display: flex !important;
    }

    /* Enhanced Background and Page Structure */
    body.hiring-page {
        background: var(--gradient-dark);
        min-height: 100vh;
        position: relative;
        overflow-x: hidden;
    }

    body.hiring-page::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 77, 90, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(75, 123, 236, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 60%, rgba(255, 100, 113, 0.05) 0%, transparent 50%);
        pointer-events: none;
        z-index: -2;
    }

    /* Enhanced animated background particles */
    body.hiring-page::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
            radial-gradient(2px 2px at 40px 70px, rgba(255, 77, 90, 0.1), transparent),
            radial-gradient(1px 1px at 90px 40px, rgba(75, 123, 236, 0.1), transparent),
            radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.1), transparent),
            radial-gradient(2px 2px at 160px 30px, rgba(255, 100, 113, 0.1), transparent);
        background-repeat: repeat;
        background-size: 200px 100px;
        animation: sparkle 20s linear infinite;
        pointer-events: none;
        z-index: -1;
    }

    @keyframes sparkle {
        0% {
            transform: translateY(0px) translateX(0px);
        }

        100% {
            transform: translateY(-100px) translateX(100px);
        }
    }

    /* Enhanced hiring page container */
    .hiring-container {
        background: transparent;
        position: relative;
        z-index: 1;
    }

    /* Updated job cards with better glassmorphism */
    .job-card {
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.05) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--border-radius-lg);
        padding: 35px;
        margin-bottom: 30px;
        box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }

    .job-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform var(--transition-medium);
    }

    .job-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow:
            0 30px 60px rgba(255, 77, 90, 0.2),
            0 10px 30px rgba(0, 0, 0, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 77, 90, 0.4);
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.1) 100%);
    }

    /* Enhanced job title with better gradient */
    .job-title {
        font-size: 1.7rem;
        font-weight: 800;
        color: var(--text-light);
        margin-bottom: 10px;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    }

    /* Enhanced job meta items */
    .job-meta-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.95rem;
        font-weight: 500;
    }

    .job-meta-item i {
        color: var(--accent-color);
        font-size: 1.1rem;
        filter: drop-shadow(0 2px 4px rgba(255, 77, 90, 0.3));
    }

    /* Enhanced job description */
    .job-description {
        color: rgba(255, 255, 255, 0.75);
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }

    /* Enhanced requirements section */
    .job-requirements h6 {
        color: var(--text-light);
        margin-bottom: 15px;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .requirement-tag {
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.15) 0%,
                rgba(255, 255, 255, 0.08) 100%);
        color: rgba(255, 255, 255, 0.9);
        padding: 10px 18px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all var(--transition-fast);
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .requirement-tag::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-fast);
        z-index: -1;
    }

    .requirement-tag:hover {
        color: var(--text-light);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255, 77, 90, 0.4);
        border-color: rgba(255, 77, 90, 0.5);
    }

    .requirement-tag:hover::before {
        opacity: 1;
    }

    /* Enhanced hiring stats section */
    .hiring-stats {
        background: linear-gradient(135deg,
                rgba(3, 9, 44, 0.95) 0%,
                rgba(15, 28, 84, 0.95) 50%,
                rgba(3, 9, 44, 0.95) 100%);
        backdrop-filter: blur(20px);
        color: var(--text-light);
        position: relative;
        overflow: hidden;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hiring-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 25% 25%, rgba(255, 77, 90, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 75% 75%, rgba(75, 123, 236, 0.1) 0%, transparent 50%);
        animation: float 15s ease-in-out infinite;
    }

    /* Enhanced culture section */
    .culture-section {
        background: transparent;
        position: relative;
    }

    .culture-card {
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0.06) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 40px 30px;
        border-radius: var(--border-radius-lg);
        text-align: center;
        height: 100%;
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        position: relative;
        overflow: hidden;
        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .culture-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-primary);
        opacity: 0;
        transition: opacity var(--transition-medium);
        z-index: -1;
    }

    .culture-card:hover {
        transform: translateY(-15px) scale(1.03);
        box-shadow:
            0 30px 60px rgba(255, 77, 90, 0.2),
            0 15px 35px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 77, 90, 0.3);
    }

    .culture-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: var(--text-light);
        transition: color var(--transition-medium);
    }

    .culture-card p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        font-size: 1.05rem;
        transition: color var(--transition-medium);
    }

    /* Enhanced benefits section */
    .benefits-section {
        padding: 100px 0;
        background: transparent;
        position: relative;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        padding: 30px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all var(--transition-fast);
        border-radius: var(--border-radius-md);
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.05) 0%,
                rgba(255, 255, 255, 0.02) 100%);
        margin-bottom: 15px;
    }

    .benefit-item:hover {
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 100%);
        padding-left: 35px;
        transform: translateX(10px);
        box-shadow: 0 10px 30px rgba(255, 77, 90, 0.1);
        border-color: rgba(255, 77, 90, 0.2);
    }

    .benefit-content h6 {
        margin: 0 0 8px 0;
        color: var(--text-light);
        font-weight: 700;
        font-size: 1.2rem;
    }

    .benefit-content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Enhanced section headers */
    .section-header {
        margin-bottom: 70px;
        position: relative;
    }

    .section-subtitle {
        color: var(--accent-color);
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        filter: drop-shadow(0 2px 4px rgba(255, 77, 90, 0.3));
    }

    .section-title {
        color: var(--text-light);
        font-weight: 900;
        font-size: 2.8rem;
        margin-bottom: 25px;
        line-height: 1.2;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-description {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.2rem;
        line-height: 1.7;
        max-width: 650px;
        margin: 0 auto;
    }

    /* Enhanced modal styles */
    .modal-content {
        border-radius: var(--border-radius-lg);
        border: none;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(248, 250, 252, 0.95) 100%);
        backdrop-filter: blur(20px);
    }

    /* Responsive enhancements */
    @media (max-width: 768px) {
        .section-title {
            font-size: 2.2rem;
        }

        .job-card {
            padding: 25px;
        }

        .benefit-item:hover {
            transform: none;
            padding-left: 25px;
        }

        body.hiring-page::after {
            background-size: 150px 75px;
        }
    }

    /* Enhanced Modal Backdrop */
    .modal-backdrop {
        background: rgba(3, 9, 44, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Enhanced Modal Dialog */
    .modal-dialog {
        margin: 2rem auto;
        max-width: 600px;
    }

    /* Enhanced Modal Content */
    .modal-content {
        border-radius: var(--border-radius-xl);
        border: none;
        box-shadow:
            0 30px 60px rgba(0, 0, 0, 0.4),
            0 10px 30px rgba(255, 77, 90, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
        overflow: hidden;
        background: linear-gradient(145deg,
                rgba(15, 28, 84, 0.95) 0%,
                rgba(3, 9, 44, 0.98) 100%);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        position: relative;
    }

    .modal-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(circle at 20% 20%, rgba(255, 77, 90, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(75, 123, 236, 0.1) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
    }

    /* Enhanced Modal Header */
    .modal-header {
        background: var(--gradient-primary);
        color: var(--text-light);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 35px;
        position: relative;
        overflow: hidden;
    }

    .modal-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
        0% {
            left: -100%;
        }

        50% {
            left: 100%;
        }

        100% {
            left: 100%;
        }
    }

    .modal-title {
        font-weight: 800;
        font-size: 1.5rem;
        margin: 0;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    .btn-close:hover {
        opacity: 1;
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    /* Enhanced Modal Body */
    .modal-body {
        padding: 0;
        background: transparent;
    }

    .application-form {
        background: transparent;
        padding: 40px 35px;
        border-radius: 0;
        position: relative;
    }

    /* Enhanced Form Groups */
    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-group label {
        color: var(--text-light);
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 8px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Enhanced Form Controls */
    .form-control {
        border: 2px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--border-radius-md);
        padding: 16px 20px;
        font-size: 1rem;
        transition: all var(--transition-fast);
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.08) 0%,
                rgba(255, 255, 255, 0.04) 100%);
        backdrop-filter: blur(10px);
        color: var(--text-light);
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .form-control::placeholder {
        color: rgba(255, 255, 255, 0.5);
        font-style: italic;
    }

    .form-control:focus {
        border-color: var(--accent-color);
        box-shadow:
            0 0 0 3px rgba(255, 77, 90, 0.2),
            inset 0 2px 4px rgba(0, 0, 0, 0.1);
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.12) 0%,
                rgba(255, 255, 255, 0.08) 100%);
        outline: none;
        transform: translateY(-1px);
    }

    /* Enhanced Select Dropdown */
    .form-control option {
        background: var(--secondary-color);
        color: var(--text-light);
        padding: 10px;
    }

    /* Enhanced File Upload */
    .file-upload {
        position: relative;
    }

    .file-upload input[type="file"] {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        z-index: 2;
    }

    .file-upload-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 20px;
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 100%);
        border: 2px dashed rgba(255, 255, 255, 0.3);
        border-radius: var(--border-radius-md);
        text-align: center;
        cursor: pointer;
        transition: all var(--transition-fast);
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
    }

    .file-upload-label::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.5s;
    }

    .file-upload-label:hover {
        border-color: var(--accent-color);
        color: var(--text-light);
        background: linear-gradient(145deg,
                rgba(255, 77, 90, 0.1) 0%,
                rgba(255, 100, 113, 0.05) 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 77, 90, 0.2);
    }

    .file-upload-label:hover::before {
        left: 100%;
    }

    .file-upload-label i {
        font-size: 1.2rem;
        color: var(--accent-color);
    }

    /* Enhanced Textarea */
    textarea.form-control {
        resize: vertical;
        min-height: 120px;
        line-height: 1.6;
    }

    /* Enhanced Checkbox */
    .form-check {
        padding-left: 0;
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .form-check-input {
        width: 20px;
        height: 20px;
        margin: 0;
        background: linear-gradient(145deg,
                rgba(255, 255, 255, 0.1) 0%,
                rgba(255, 255, 255, 0.05) 100%);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        transition: all var(--transition-fast);
        cursor: pointer;
        position: relative;
        flex-shrink: 0;
    }

    .form-check-input:checked {
        background: var(--gradient-primary);
        border-color: var(--accent-color);
        box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
    }

    .form-check-input:focus {
        box-shadow: 0 0 0 3px rgba(255, 77, 90, 0.2);
        outline: none;
    }

    .form-check-label {
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.95rem;
        line-height: 1.5;
        cursor: pointer;
        margin: 0;
    }

    /* Enhanced Submit Button */
    .apply-btn {
        background: var(--gradient-primary);
        color: var(--text-light);
        padding: 18px 40px;
        border: none;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1.1rem;
        transition: all var(--transition-fast);
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow:
            0 10px 30px rgba(255, 77, 90, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 20px;
    }

    .apply-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }

    .apply-btn:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow:
            0 15px 40px rgba(255, 77, 90, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        color: var(--text-light);
    }

    .apply-btn:hover::before {
        left: 100%;
    }

    .apply-btn:active {
        transform: translateY(-1px) scale(1.01);
    }

    .apply-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

    /* Enhanced Row Spacing */
    .row {
        margin-bottom: 10px;
    }

    .row:last-child {
        margin-bottom: 0;
    }

    /* Responsive Enhancements */
    @media (max-width: 768px) {
        .modal-dialog {
            margin: 1rem;
            max-width: none;
        }

        .application-form {
            padding: 30px 20px;
        }

        .modal-header {
            padding: 20px 25px;
        }

        .modal-title {
            font-size: 1.3rem;
        }

        .form-control {
            padding: 14px 16px;
        }

        .file-upload-label {
            padding: 16px;
            font-size: 0.9rem;
        }

        .apply-btn {
            padding: 16px 30px;
            font-size: 1rem;
        }

        .form-check .form-check-input {
            margin-left: 0.5rem;
        }

        .form-group label {
            font-size: 0.7rem;
        }
    }

    /* Animation for modal appearance */
    .modal.fade .modal-dialog {
        transform: scale(0.8) translateY(-50px);
        transition: all var(--transition-medium) cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal.show .modal-dialog {
        transform: scale(1) translateY(0);
    }

    /* Enhanced loading state for form submission */
    .apply-btn.loading {
        pointer-events: none;
        position: relative;
    }

    .apply-btn.loading::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20px;
        height: 20px;
        margin: -10px 0 0 -10px;
        border: 2px solid transparent;
        border-top: 2px solid var(--text-light);
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .form-control:disabled,
    .form-control:read-only {
        background-color: unset !important;
        opacity: 1;
    }