  
      :root {
        --primary: #F96D00;
        --primary-dark: #e56200;
        --secondary: #1a1a1a;
        --accent: #ffd700;
        --success: #28a745;
        --danger: #dc3545;
        --gray-light: #f8f9fa;
        --gray-medium: #6c757d;
        --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
        --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
        --radius: 8px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      }

      /* Enhanced Hero */
      .hero-careers {
        background: linear-gradient(135deg, rgba(26,26,26,0.9) 0%, rgba(26,26,26,0.7) 100%), url('images/bg_1.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
        min-height: 60vh;
        display: flex;
        align-items: center;
      }

      .hero-careers::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 30% 50%, rgba(249,109,0,0.1) 0%, transparent 50%);
      }

      .hero-content {
        position: relative;
        z-index: 2;
      }

      .hero-stats {
        display: flex;
        gap: 2rem;
        margin-top: 2rem;
        justify-content: center;
      }

      .stat-item {
        text-align: center;
        color: white;
      }

      .stat-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        display: block;
        line-height: 1;
      }

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

      /* Search & Filter Section */
      .search-section {
        background: white;
        padding: 2rem 0;
        box-shadow: var(--shadow-md);
        position: sticky;
        top: 0;
        z-index: 100;
        margin-top: -3rem;
        border-radius: var(--radius) var(--radius) 0 0;
      }

      .search-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      .search-box {
        position: relative;
        margin-bottom: 1rem;
      }

      .search-input {
        width: 100%;
        padding: 1rem 1.5rem 1rem 3rem;
        border: 2px solid #e9ecef;
        border-radius: 50px;
        font-size: 1rem;
        transition: var(--transition);
        background: var(--gray-light);
      }

      .search-input:focus {
        outline: none;
        border-color: var(--primary);
        background: white;
        box-shadow: 0 0 0 4px rgba(249,109,0,0.1);
      }

      .search-icon {
        position: absolute;
        left: 1.25rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--gray-medium);
        font-size: 1.25rem;
      }

      .filter-tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        align-items: center;
      }

      .filter-label {
        color: var(--gray-medium);
        font-size: 0.875rem;
        margin-right: 0.5rem;
      }

      .filter-btn {
        padding: 0.5rem 1rem;
        border: 1px solid #dee2e6;
        background: white;
        border-radius: 20px;
        font-size: 0.875rem;
        cursor: pointer;
        transition: var(--transition);
        color: var(--gray-medium);
      }

      .filter-btn:hover, .filter-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
        transform: translateY(-1px);
      }

      /* Job Cards */
      .jobs-container {
        background: var(--gray-light);
        min-height: 60vh;
        padding: 3rem 0;
      }

      .job-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
      }

      .job-card {
        background: white;
        border-radius: var(--radius);
        padding: 1.5rem;
        box-shadow: var(--shadow-sm);
        transition: var(--transition);
        border: 1px solid transparent;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

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

      .job-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(249,109,0,0.2);
      }

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

      .job-card.featured {
        border: 2px solid var(--primary);
        background: linear-gradient(135deg, white 0%, #fff8f3 100%);
      }

      .job-card.featured::after {
        content: 'Featured';
        position: absolute;
        top: 1rem;
        right: -2rem;
        background: var(--primary);
        color: white;
        padding: 0.25rem 2.5rem;
        font-size: 0.75rem;
        font-weight: 600;
        transform: rotate(45deg);
        box-shadow: var(--shadow-sm);
      }

      .job-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 1rem;
      }

      .job-title {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--secondary);
        margin-bottom: 0.25rem;
        line-height: 1.3;
      }

      .job-department {
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
        font-size: 0.875rem;
        color: var(--primary);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
      }

      .job-badges {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin: 1rem 0;
      }

      .badge {
        padding: 0.375rem 0.75rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.25rem;
      }

      .badge-type {
        background: #e3f2fd;
        color: #1976d2;
      }

      .badge-location {
        background: #f3e5f5;
        color: #7b1fa2;
      }

      .badge-salary {
        background: #e8f5e9;
        color: #388e3c;
      }

      .badge-urgent {
        background: #ffebee;
        color: #c62828;
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
      }

      .job-meta {
        display: flex;
        gap: 1.5rem;
        color: var(--gray-medium);
        font-size: 0.875rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #f0f0f0;
      }

      .job-meta span {
        display: flex;
        align-items: center;
        gap: 0.375rem;
      }

      .job-description {
        color: var(--gray-medium);
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .job-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .job-posted {
        font-size: 0.875rem;
        color: var(--gray-medium);
      }

      .btn-apply-sm {
        padding: 0.5rem 1.25rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
      }

      .btn-apply-sm:hover {
        background: var(--primary-dark);
        transform: translateX(4px);
        color: white;
        text-decoration: none;
      }

      /* Empty State */
      .empty-state {
        text-align: center;
        padding: 4rem 2rem;
        color: var(--gray-medium);
      }

      .empty-state-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
        opacity: 0.3;
      }

      /* Modal */
      .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.8);
        backdrop-filter: blur(4px);
        z-index: 1000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 1rem;
        opacity: 0;
        transition: opacity 0.3s ease;
      }

      .modal-overlay.active {
        display: flex;
        opacity: 1;
      }

      .modal-content {
        background: white;
        border-radius: var(--radius);
        max-width: 900px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        transform: scale(0.9) translateY(20px);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
      }

      .modal-overlay.active .modal-content {
        transform: scale(1) translateY(0);
      }

      .modal-header {
        background: linear-gradient(135deg, var(--secondary) 0%, #2d2d2d 100%);
        color: white;
        padding: 2rem;
        position: relative;
      }

      .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: rgba(255,255,255,0.1);
        border: none;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
      }

      .modal-close:hover {
        background: rgba(255,255,255,0.2);
        transform: rotate(90deg);
      }

      .modal-body {
        padding: 2rem;
      }

      .job-detail-section {
        margin-bottom: 2rem;
      }

      .job-detail-section h4 {
        color: var(--secondary);
        font-weight: 700;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }

      .job-detail-section ul {
        list-style: none;
        padding: 0;
      }

      .job-detail-section li {
        padding: 0.5rem 0;
        padding-left: 1.5rem;
        position: relative;
        color: var(--gray-medium);
      }

      .job-detail-section li::before {
        content: '•';
        color: var(--primary);
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      .application-form {
        background: var(--gray-light);
        padding: 2rem;
        border-radius: var(--radius);
        margin-top: 2rem;
      }

      .form-group {
        margin-bottom: 1.5rem;
      }

      .form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: var(--secondary);
      }

      .required::after {
        content: " *";
        color: var(--danger);
      }

      .form-control {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 2px solid #e9ecef;
        border-radius: var(--radius);
        font-size: 1rem;
        transition: var(--transition);
        background: white;
      }

      .form-control:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(249,109,0,0.1);
      }

      textarea.form-control {
        resize: vertical;
        min-height: 120px;
      }

      .custom-file {
        position: relative;
        display: inline-block;
        width: 100%;
      }

      .custom-file-input {
        position: relative;
        z-index: 2;
        width: 100%;
        height: calc(2.25rem + 2px);
        margin: 0;
        opacity: 0;
      }

      .custom-file-label {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        z-index: 1;
        height: calc(2.25rem + 2px);
        padding: 0.875rem 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--gray-medium);
        background-color: #fff;
        border: 2px solid #e9ecef;
        border-radius: var(--radius);
      }

      .custom-file-label::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 3;
        display: block;
        height: 2.25rem;
        padding: 0.875rem 1rem;
        line-height: 1.5;
        color: white;
        content: "Browse";
        background-color: var(--primary);
        border-left: inherit;
        border-radius: 0 var(--radius) var(--radius) 0;
      }

      .btn-submit {
        width: 100%;
        padding: 1rem;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius);
        font-size: 1.125rem;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
      }

      .btn-submit:hover:not(:disabled) {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
      }

      .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
      }

      .alert {
        padding: 1rem;
        border-radius: var(--radius);
        margin-bottom: 1rem;
        display: none;
      }

      .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
      }

      .alert-error {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
      }

      .spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255,255,255,.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s ease-in-out infinite;
      }
      .ftco-animate{
    opacity: unset;
    visibility: unset;
      }

      @keyframes spin {
        to { transform: rotate(360deg); }
      }

      /* Admin Panel */
      .admin-panel {
        background: white;
        padding: 2rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        margin-bottom: 2rem;
        display: none;
      }

      .admin-panel.active {
        display: block;
      }

      .job-list-admin {
        margin-top: 1.5rem;
      }

      .job-item-admin {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        border: 1px solid #e9ecef;
        border-radius: var(--radius);
        margin-bottom: 0.5rem;
        background: white;
      }

      .btn-icon {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        color: var(--gray-medium);
        transition: var(--transition);
      }

      .btn-icon:hover {
        color: var(--primary);
      }

      .btn-delete:hover {
        color: var(--danger);
      }

      /* Responsive */
      @media (max-width: 768px) {
        .job-grid {
          grid-template-columns: 1fr;
        }
        
        .hero-stats {
          flex-direction: column;
          gap: 1rem;
        }
        
        .modal-content {
          max-height: 100vh;
          border-radius: 0;
        }
      }

      /* Animations */
      .fade-in {
        animation: fadeIn 0.5s ease-out;
      }

      @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
      }

      /* Toast Notification */
      .toast {
        position: fixed;
        bottom: 2rem;
        right: 2rem;
        background: var(--secondary);
        color: white;
        padding: 1rem 1.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
        display: none;
        align-items: center;
        gap: 0.75rem;
        z-index: 2000;
        animation: slideIn 0.3s ease;
      }

      .toast.show {
        display: flex;
      }

      @keyframes slideIn {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
      }
