/* styles.css */
:root {
    --primary-dark: #1a1a1a;
    --primary-navy: #0a1931;
    --primary-gold: #c5a047;
    --primary-crimson: #ae1f25;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-gray: #666666;
    --bg-light: #f8f9fa;
    --border-light: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;*/
    
    /*background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');*/
    background-image: url('mainbg.jpg');
    opacity: 0.5;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    padding: 0 20px;
}

/*.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}
*/
.hero-subtitle {
    font-size: 1.25rem;

    margin-top: 1.0rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-gold);
    color: var(--text-light);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    text-align: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Trust Signals */
.trust-signals {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.trust-title {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-gray);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border-top: 4px solid var(--primary-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-navy);
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.feature i {
    color: var(--primary-gold);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 3rem;
}

.image-placeholder span {
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* Why Choose Us */
.why-us {
    background: var(--primary-navy);
    color: var(--text-light);
}

.why-us .section-title {
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(197, 160, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 1.8rem;
    border: 2px solid var(--primary-gold);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

.security-notice {
    background: rgba(197, 160, 71, 0.1);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 4px solid var(--primary-gold);
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.security-notice i {
    color: var(--primary-gold);
    font-size: 1.5rem;
}

/* Form Styles */
.contact-form {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: transparent;
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: var(--text-gray);
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--text-light);
    padding: 0 0.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group input:focus + label,
.form-group select:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-gold);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-section i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--primary-gold);
}

.certifications span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--primary-gold);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--primary-dark);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    /*.hero-subtitle {
        font-size: 1.1rem;
    }*/

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-logos {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}

/* Careers Section */
.careers {
    background: var(--bg-light);
    padding: 5rem 0;
}

.careers-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.careers-text h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
}

.careers-features {
    margin-top: 2rem;
}

.career-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.career-feature i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.career-feature h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-navy);
}

/* Openings Grid */
.openings-section {
    margin: 4rem 0;
}

.openings-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.openings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.opening-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

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

.opening-header h4 {
    color: var(--primary-navy);
    font-size: 1.3rem;
    margin-right: 1rem;
}

.opening-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.opening-badge.full-time {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid #28a745;
}

.opening-badge.contract {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.opening-badge.shift-work {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid #007bff;
}

.opening-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.opening-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.opening-detail i {
    color: var(--primary-gold);
}

.opening-requirements {
    margin: 1.5rem 0;
}

.opening-requirements h5 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

.opening-requirements ul {
    list-style: none;
    padding-left: 0;
}

.opening-requirements li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.opening-requirements li:before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--text-light);
}

/* Benefits Section */
.benefits-section {
    margin: 2rem 0;
    text-align: center;
}

.benefits-section h3 {
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 1.8rem;
}

.benefit-card h4 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
}

/* Process Section */
.process-section {
    margin: 4rem 0;
}

.process-section h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-navy);
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--primary-navy);
    margin-bottom: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
}

.modal-content {
    background: var(--text-light);
    margin: 2rem auto;
    width: 90%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: var(--shadow-heavy);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
    color: var(--primary-navy);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-crimson);
}

.modal-body {
    padding: 2rem;
}

/* Application Form */
.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.application-form textarea {
    resize: vertical;
    min-height: 100px;
}

.file-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px dashed var(--border-light);
    border-radius: 5px;
    cursor: pointer;
    transition: border-color 0.3s ease;
    text-align: center;
    justify-content: center;
}

.file-label:hover {
    border-color: var(--primary-gold);
}

.file-label i {
    color: var(--primary-gold);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group label {
    position: static;
    padding: 0;
    background: none;
    font-size: 0.9rem;
}

.form-actions {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .careers-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .openings-grid {
        grid-template-columns: 1fr;
    }
    
    .application-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .opening-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .opening-details {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 480px) {
    .opening-card {
        padding: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
}

/* Careers Page Specific Styles */
.careers-hero {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 8rem 0 4rem;
    text-align: center;
}

.careers-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.careers-hero-content p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Position Selection */
.position-selection {
    padding: 5rem 0;
    background: var(--bg-light);
}

.position-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.position-card {
    background: var(--text-light);
    padding: 3rem 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-gold);
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.position-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-crimson));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-light);
    font-size: 2rem;
}

.position-card h3 {
    color: var(--primary-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.position-card p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.position-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.position-features span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.position-features i {
    color: var(--primary-gold);
}

/* Application Form Section */
.application-form-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-header h2 {
    color: var(--primary-navy);
    margin: 0;
}

.simple-careers-form {
    background: var(--text-light);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

/* Careers Benefits */
.careers-benefits {
    padding: 5rem 0;
    background: var(--primary-navy);
    color: var(--text-light);
}

.careers-benefits .section-title {
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.benefit-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Active state for navigation */
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Design for Careers Page */
@media (max-width: 768px) {
    .careers-hero {
        padding: 6rem 0 3rem;
    }
    
    .careers-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .position-cards {
        grid-template-columns: 1fr;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
    }
    
    .simple-careers-form {
        padding: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-hero-content h1 {
        font-size: 2rem;
    }
    
    .careers-hero-content p {
        font-size: 1.1rem;
    }
    
    .simple-careers-form {
        padding: 1.5rem;
    }
    
    .position-card {
        padding: 2rem 1.5rem;
    }
}





/* Careers CTA Section */
.careers-cta {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}






/* Enhanced Position Cards */
.position-salary {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin: 0.5rem 0;
}

.position-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.position-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.position-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.position-features i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Salary Comparison Section */
.salary-comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.salary-table {
    background: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 2rem;
}

.salary-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: var(--primary-navy);
    color: var(--text-light);
    font-weight: 600;
}

.salary-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.salary-row:last-child {
    border-bottom: none;
}

.salary-row:nth-child(even) {
    background: #f8f9fa;
}

/* Risk Level Icons */
.low-risk {
    color: #28a745;
}

.medium-risk {
    color: #ffc107;
}

.high-risk {
    color: #fd7e14;
}

.extreme-risk {
    color: #dc3545;
}

/* Enhanced Benefits Section */
.benefit-item i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

/* Responsive Design for Salary Table */
@media (max-width: 768px) {
    .salary-header,
    .salary-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
        padding: 1rem;
    }
    
    .salary-header {
        display: none;
    }
    
    .salary-row {
        border: 1px solid var(--border-light);
        margin-bottom: 1rem;
        border-radius: 5px;
    }
    
    .position-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .salary-row {
        padding: 0.75rem;
    }
    
    .position-card {
        padding: 1.5rem;
    }
}











/* Fix for FontAwesome retirement icon */
.fa-retirement:before {
    content: "🏦";
    font-style: normal;
}

/* Ensure position cards have consistent height */
.position-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.position-card .btn {
    margin-top: auto;
}

/* Fix for salary table on mobile */
@media (max-width: 768px) {
    .salary-row {
        display: block;
        text-align: left;
    }
    
    .salary-row span {
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .salary-row span:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary-navy);
    }
}






/*****************************************************************************************************/


/* Language Top Bar */
.language-topbar {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 0.75rem 0;
    border-bottom: 2px solid var(--primary-gold);
}

.language-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.language-label {
    font-weight: 600;
    color: var(--primary-gold);
}

.language-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: rgba(197, 160, 71, 0.2);
}

.lang-btn.active {
    background: var(--primary-gold);
    color: var(--primary-dark);
    font-weight: 600;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    border-left: 4px solid var(--primary-gold);
    padding-left: 1rem;
}

/* Field Explanations */
.field-explanation {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    line-height: 1.4;
    font-style: italic;
}

/* Multiple Select Styling */
select[multiple] {
    height: 120px;
    padding: 0.5rem;
}

select[multiple] option {
    padding: 0.5rem;
    margin: 0.25rem 0;
    border-radius: 3px;
}

select[multiple] option:hover {
    background: var(--primary-gold);
    color: white;
}

/* Form Validation Styles */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown),
.form-group select:invalid:not(:focus),
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) {
    border-color: #dc3545;
}

.form-group input:invalid:not(:focus):not(:placeholder-shown) + label,
.form-group select:invalid:not(:focus) + label,
.form-group textarea:invalid:not(:focus):not(:placeholder-shown) + label {
    color: #dc3545;
}

/* Responsive Language Bar */
@media (max-width: 768px) {
    .language-content {
        flex-direction: column;
        text-align: center;
    }
    
    .language-buttons {
        justify-content: center;
    }
    
    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .form-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .language-buttons {
        gap: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .field-explanation {
        font-size: 0.75rem;
    }
}

/* RTL Support for Arabic and Urdu */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .form-section h3 {
    border-left: none;
    border-right: 4px solid var(--primary-gold);
    padding-left: 0;
    padding-right: 1rem;
}

[dir="rtl"] .language-buttons {
    flex-direction: row-reverse;
}

/* Chinese font support */
.lang-chinese {
    font-family: "Microsoft YaHei", "SimHei", sans-serif;
}

/* Arabic font support */
.lang-arabic {
    font-family: "Arabic Typesetting", "Traditional Arabic", sans-serif;
    direction: rtl;
}


////************************************* Logo Part *****************************************
/* ===== NAVIGATION LOGO ===== */
.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff; /* White color for dark navbar */
    gap: 12px;
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #c5a045; /* Gold on hover */
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ===== FOOTER LOGO ===== */
.footer-section h3 {
    color: #ffffff; /* White color for dark footer */
    font-size: 1.5rem;
    margin: 0 0 15px 0;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo-img {
        display: flex;
    align-items: center;
        height: 65px;
    width: auto;
    object-fit: contain; /* Hide logo in footer if you only want it in nav */
    /* Or if you want logo in footer too: */
    /* height: 35px;
    width: auto;
    object-fit: contain;
    margin-right: 12px; */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-logo a {
        font-size: 1.2rem;
        gap: 8px;
    }
    
    .nav-logo-img {
        height: 32px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
    }
}


//******************************* Additional Fonts  ********//
/*.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 3.5rem;
    letter-spacing: 1px;
}*/

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}


//******************** about image ******************//
/* About Image Styling */
.about-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    text-align: center;
}

.image-caption i {
    font-size: 2rem;
    color: #c5a045;
    margin-bottom: 10px;
    display: block;
}

.image-caption span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
}