
        /* COMMON STYLES */
        .alwcareers-section-container {
            max-width: 1200px;
            margin: 0px auto 5rem auto;
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        }

        .alwcareers-header-wrapper {
            text-align: center;
            margin-bottom: 3rem;
        }

        .alwcareers-title-main {
            position: relative;
            font-weight: 700;
            color: #07823d;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .alwcareers-title-main::after {
            content: '';
            position: absolute;
            bottom: -0.8rem;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #07823d, #4ade80);
            border-radius: 2px;
        }

        .alwcareers-paragraph-text {
            max-width: 800px;
            margin: 0 auto;
        }

        /* VALUES SECTION STYLES */
        .alwcareers-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .alwcareers-value-card {

            border-radius: 1rem;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
            border: 1px solid #f0f0f0;
        }

        .alwcareers-value-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
            border-color: #e0e7ff;
        }

        .alwcareers-value-icon-wrapper {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #07823d, #4ade80);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            box-shadow: 0 10px 20px rgba(7, 130, 61, 0.2);
        }

        .alwcareers-value-icon-wrapper i {
            font-size: 1.8rem;
            color: #ffffff;
        }

        .alwcareers-value-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .alwcareers-value-description {
            font-size: 1.5rem;
            line-height: 1.6;
        }

        /* JOBS SECTION STYLES */
        .alwcareers-jobs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .alwcareers-job-card {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }

        .alwcareers-job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
            border-color: #e4e9ff;
        }

        .alwcareers-job-header {
            background: var(--color-gradient-5);
            padding: 1.5rem;
            position: relative;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .alwcareers-job-title {
            color: #ffffff;
            font-size: 1.7rem;
            font-weight: 600;
            margin: 0;
        }

        .alwcareers-job-badge {
            background-color: #fff;
            color: #07823d;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
        }

        .alwcareers-job-details {
            padding: 1.5rem;
        }

        .alwcareers-job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.25rem;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 1.25rem;
        }

        .alwcareers-meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.5rem;
        }

        .alwcareers-meta-item i {
            color: #07823d;
            font-size: 1rem;
        }

        .alwcareers-job-summary {
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .alwcareers-job-actions {
            display: flex;
            gap: 1rem;
        }

        .alwcareers-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
        }

        .alwcareers-btn-details {
            background-color: #f3f4f6;
        }

        .alwcareers-btn-details:hover {
            background-color: #e5e7eb;
        }

        .alwcareers-btn-apply {
            background: var(--color-gradient-5);
            color: #ffffff;
            flex-grow: 1;
        }

        .alwcareers-btn-apply:hover {
            background: var(--color-gradient-4);
            box-shadow: 0 4px 12px rgba(7, 130, 61, 0.25);
        }

        .alwcareers-no-jobs {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem 0;
            color: #6b7280;
            font-size: 1.1rem;
        }

        /* POPUP STYLES */
        .alwcareers-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1000;
            display: none;
        }

        .alwcareers-popup-form {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 90%;
            max-width: 600px;
            border-radius: 1rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            display: none;
            max-height: 90vh;
            overflow-y: auto;
        }

        .alwcareers-popup-header {
            padding: 1.5rem;
            background: linear-gradient(135deg, #07823d, #4ade80);
            border-radius: 1rem 1rem 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .alwcareers-popup-header h3 {
            color: #ffffff;
            font-size: 1.5rem;
            font-weight: 600;
            margin: 0;
        }

        .alwcareers-popup-close {
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
            opacity: 0.8;
            transition: opacity 0.3s;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
        }

        .alwcareers-popup-close:hover {
            opacity: 1;
        }

        .alwcareers-application-form {
            padding: 2rem;
            background: white;
        }

        .alwcareers-form-group {
            margin-bottom: 1.5rem;
        }

        .alwcareers-form-label {
            display: block;
            font-size: 1.2rem;
            font-weight: 600;
            color: #374151;
            margin-bottom: 0.5rem;
        }

        .alwcareers-input-wrapper {
            position: relative;
        }

        .alwcareers-input-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }


        /* Continuing from where the file left off */
        .alwcareers-form-input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 3.5rem;
            border: 1px solid #e5e7eb;
            border-radius: 0.5rem;
            font-size: 1rem;
            transition: border-color 0.3s, box-shadow 0.3s;
        }

        .alwcareers-form-input:focus {
            outline: none;
            border-color: #07823d;
            box-shadow: 0 0 0 3px rgba(7, 130, 61, 0.1);
        }

        .alwcareers-form-input::placeholder {
            color: #9ca3af;
        }

        /* File Upload Styles */
        .alwcareers-file-upload {
            position: relative;
            margin-top: 0.5rem;
        }

        .alwcareers-file-input {
            position: absolute;
            width: 0.1px;
            height: 0.1px;
            opacity: 0;
            overflow: hidden;
            z-index: -1;
        }

        .alwcareers-file-label {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background-color: #f3f4f6;
            border: 1px dashed #d1d5db;
            border-radius: 0.5rem;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .alwcareers-file-label:hover {
            background-color: #e5e7eb;
            border-color: #9ca3af;
        }

        .alwcareers-file-label i {
            color: #07823d;
            font-size: 1.2rem;
        }

        /* Form Actions */
        .alwcareers-form-actions {
            margin-top: 2rem;
        }

        .alwcareers-btn-submit {
            width: 100%;
            background: linear-gradient(135deg, #07823d, #4ade80);
            color: #ffffff;
            padding: 0.875rem;
            font-size: 1rem;
        }

        .alwcareers-btn-submit:hover {
            background: linear-gradient(135deg, #066e33, #3ebd6b);
            box-shadow: 0 4px 12px rgba(7, 130, 61, 0.25);
        }

        .alwcareers-btn-submit:disabled {
            background: #9ca3af;
            cursor: not-allowed;
        }

        /* APPLICATION PROCESS STYLES */
        .alwcareers-process-container {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .alwcareers-process-step {
            display: flex;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .alwcareers-step-number {
            background: linear-gradient(135deg, #07823d, #4ade80);
            color: #ffffff;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
            box-shadow: 0 8px 16px rgba(7, 130, 61, 0.2);
        }

        .alwcareers-step-content {
            flex-grow: 1;
        }

        .alwcareers-step-title {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        /* CTA BANNER STYLES */
        .alwcareers-cta-banner {
            background: linear-gradient(135deg, #07823d, #4ade80);
            padding: 0.5rem;
            border-radius: 1.5rem;
            margin: 5rem auto;
            max-width: 1200px;
            overflow: hidden;
            position: relative;
        }

        .alwcareers-cta-container {
            background: var(--banner-two-gradient);
            border-radius: 1rem;
            padding: 3rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
        }

        .alwcareers-cta-accent-circles {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .alwcareers-accent-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .alwcareers-accent-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -100px;
        }

        .alwcareers-accent-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: -80px;
            right: 60px;
        }

        .alwcareers-accent-circle:nth-child(3) {
            width: 100px;
            height: 100px;
            top: 50px;
            right: 30%;
        }

        .alwcareers-cta-content {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex: 1;
        }

        .alwcareers-cta-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

       

        .alwcareers-cta-text h2 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .alwcareers-cta-text p {
            font-size: 1.5rem;
            opacity: 0.85;
            margin: 0;
        }

        .alwcareers-cta-action {
            margin-left: 2rem;
        }

        .alwcareers-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .alwcareers-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        /* RESPONSIVE STYLES */
        @media (max-width: 991px) {
            .alwcareers-cta-container {
                flex-direction: column;
                text-align: center;
                gap: 2rem;
            }

            .alwcareers-cta-content {
                flex-direction: column;
            }

            .alwcareers-cta-action {
                margin-left: 0;
            }
        }

        @media (max-width: 768px) {
            .alwcareers-section-container {
                padding: 2rem 1.5rem;
                margin: 3rem auto;
            }

            .alwcareers-title-main {
                font-size: 1.8rem;
            }



            .alwcareers-process-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .alwcareers-step-number {
                margin-bottom: 1rem;
            }

            .alwcareers-job-actions {
                flex-direction: column;
            }

            .alwcareers-job-meta {
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            .alwcareers-jobs-container {
                grid-template-columns: 1fr;
            }

            .alwcareers-values-grid {
                grid-template-columns: 1fr;
            }

            .alwcareers-value-card {
                padding: 2rem 1.5rem;
            }

            .alwcareers-job-header {
                flex-direction: column;
                gap: 1rem;
                align-items: flex-start;
            }

            .alwcareers-job-badge {
                align-self: flex-start;
            }

            .alwcareers-popup-form {
                width: 95%;
            }

            .alwcareers-title-main::after {
                width: 60px;
            }

            .alwcareers-cta-text h2 {
                font-size: 1.5rem;
            }
        }
