* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f0f4f8;
    color: #2c3e50;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-left h1 {
    font-size: 2.8rem;
    color: #f1c40f;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.hero-left h2 {
    font-size: 1.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #f1c40f;
    color: #0b2a4a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(241, 196, 15, 0.6);
    background: #f39c12;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.hero-right {
    display: none;
}

/* ============================================
   JOB DESCRIPTION - Direct Text
============================================ */
.job-desc {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#particles-js-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.job-desc-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.job-desc-content h2 {
    color: #f1c40f;
    font-size: 2.5rem;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.job-desc-content > p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

.job-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.job-card {
    padding: 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
}

.job-card h3 {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.3);
}

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

.job-card ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.25);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.job-card ul li:last-child {
    border-bottom: none;
}

.job-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #f1c40f;
    font-weight: bold;
}

/* ============================================
   ALERT MESSAGES
============================================ */
.alert {
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 5px solid;
}

.alert-error {
    background: rgba(248, 215, 218, 0.9);
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-success {
    background: rgba(212, 237, 218, 0.9);
    color: #155724;
    border-left-color: #28a745;
}

/* ============================================
   APPLICATION PAGE - Direct Text No Boxes
============================================ */
.application-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.application-page #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.application-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
}

.application-header {
    text-align: center;
    margin-bottom: 30px;
}

.application-header h1 {
    color: #f1c40f;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.application-header h2 {
    color: #ffffff;
    font-size: 1.6rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    font-weight: 300;
}

.application-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Direct Application Form - No Box, No Blur, No Border Radius */
.application-form-direct {
    position: relative;
    z-index: 2;
    text-align: left;
}

.application-form-direct .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.application-form-direct .form-group {
    margin-bottom: 20px;
}

.application-form-direct .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
    font-size: 1rem;
}

.application-form-direct .form-group input,
.application-form-direct .form-group select,
.application-form-direct .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 0;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    color: #0b2a4a;
}

.application-form-direct .form-group input::placeholder,
.application-form-direct .form-group textarea::placeholder {
    color: #6c8a9e;
    font-style: italic;
}

.application-form-direct .form-group input:focus,
.application-form-direct .form-group select:focus,
.application-form-direct .form-group textarea:focus {
    border-color: #f1c40f;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.application-form-direct .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.application-form-direct .btn-submit-direct {
    background: #f1c40f;
    color: #0b2a4a;
    padding: 15px 45px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.application-form-direct .btn-submit-direct:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

.application-form-direct .alert {
    margin-bottom: 20px;
}

/* ============================================
   SUCCESS PAGE - Direct Text
============================================ */
.success-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.success-page #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.success-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

.success-content {
    text-align: center;
}

.success-content h1 {
    color: #f1c40f;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.success-content h2 {
    color: #ffffff;
    font-size: 1.8rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    font-weight: 300;
}

.success-content p {
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    margin-bottom: 15px;
}

.success-content p strong {
    color: #f1c40f;
}

.success-buttons {
    margin-top: 25px;
}

.success-buttons .btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: #f1c40f;
    color: #0b2a4a;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.success-buttons .btn-primary:hover {
    background: #f39c12;
    transform: translateY(-3px);
}

/* ============================================
   LOGIN PAGE
============================================ */
.login-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
}

.login-page #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.login-container {
    position: relative;
    z-index: 2;
    max-width: 450px;
    width: 100%;
}

.login-box {
    text-align: center;
}

.login-box h1 {
    color: #f1c40f;
    font-size: 1.8rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-bottom: 5px;
}

.login-box h2 {
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    margin-bottom: 20px;
    font-weight: 300;
}

.login-form .form-group {
    margin-bottom: 15px;
}

.login-form .form-group label {
    display: block;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.login-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 0;
    font-size: 1rem;
    background: rgba(255,255,255,0.7);
    color: #0b2a4a;
}

.login-form .form-group input:focus {
    border-color: #f1c40f;
    outline: none;
    background: rgba(255,255,255,0.9);
    box-shadow: none;
}

.login-form .btn-submit-direct {
    background: #f1c40f;
    color: #0b2a4a;
    padding: 15px 45px;
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-form .btn-submit-direct:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(241, 196, 15, 0.3);
}

/* ============================================
   ADMIN PAGE
============================================ */
.admin-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    padding: 40px 20px;
    overflow: hidden;
}

.admin-page #particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.admin-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.admin-header {
    text-align: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    color: #f1c40f;
    font-size: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.admin-header h2 {
    color: #ffffff;
    font-size: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    font-weight: 300;
}

.btn-logout {
    display: inline-block;
    padding: 10px 25px;
    background: #dc3545;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-logout:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.admin-table-container {
    background: rgba(255,255,255,0.08);
    padding: 20px;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: #ffffff;
    font-size: 0.85rem;
}

.admin-table thead {
    background: rgba(0,0,0,0.3);
}

.admin-table th {
    padding: 12px 8px;
    text-align: left;
    font-weight: 600;
    color: #f1c40f;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    white-space: nowrap;
}

.admin-table td {
    padding: 10px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.admin-table tbody tr:hover {
    background: rgba(255,255,255,0.08);
}

/* ============================================
   FOOTER - Transparent
============================================ */
footer {
    position: relative;
    background: linear-gradient(135deg, #0b2a4a 0%, #1a4a7a 40%, #4a90d9 70%, #ffffff 100%);
    padding: 40px 0;
    text-align: center;
    overflow: hidden;
}

#particles-js-3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-content p {
    color: #ffffff;
    font-size: 1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */
@media (max-width: 1024px) {
    .admin-table {
        font-size: 0.75rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 8px 5px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-left {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-left h1 {
        font-size: 2rem;
    }
    
    .hero-left h2 {
        font-size: 1.3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .application-form-direct .form-row {
        grid-template-columns: 1fr;
    }
    
    .application-header h1 {
        font-size: 1.5rem;
    }
    
    .application-header h2 {
        font-size: 1.2rem;
    }
    
    .job-grid {
        grid-template-columns: 1fr;
    }
    
    .job-desc-content h2 {
        font-size: 1.8rem;
    }
    
    .job-desc-content > p {
        font-size: 1rem;
    }
    
    .success-content h1 {
        font-size: 1.5rem;
    }
    
    .success-content h2 {
        font-size: 1.3rem;
    }
    
    .success-content p {
        font-size: 1rem;
    }
    
    .login-box h1 {
        font-size: 1.4rem;
    }
    
    .login-box h2 {
        font-size: 1.2rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    .admin-header h2 {
        font-size: 1.2rem;
    }
    
    .admin-table {
        font-size: 0.7rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 6px 4px;
    }
}

@media (max-width: 480px) {
    .hero-left h1 {
        font-size: 1.5rem;
    }
    
    .hero-left h2 {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .application-form-direct .btn-submit-direct {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    .job-desc-content h2 {
        font-size: 1.4rem;
    }
    
    .job-card h3 {
        font-size: 1.2rem;
    }
    
    .job-card ul li {
        font-size: 0.9rem;
    }
    
    .application-header h1 {
        font-size: 1.2rem;
    }
    
    .application-header h2 {
        font-size: 1rem;
    }
    
    .application-header p {
        font-size: 0.9rem;
    }
    
    .success-content h1 {
        font-size: 1.2rem;
    }
    
    .success-content h2 {
        font-size: 1.1rem;
    }
    
    .success-content p {
        font-size: 0.9rem;
    }
    
    .admin-table {
        font-size: 0.6rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 4px 3px;
    }
    
    .admin-table-container {
        padding: 10px;
    }
}