/* Page-specific styles: careers.css */

body {
            font-family: var(--font-main);
            color: var(--dark-green);
            background-color: var(--white);
            width: 100%;
            margin: 0 auto;
            overflow-x: hidden;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 42px;
            text-align: center;
            margin-bottom: 60px;
            color: var(--dark-green);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--medium-green), var(--teal));
            padding: 5px 0;
            text-align: center;
            color: var(--white);
            position: relative;
        }

        .breadcrumb {
            display: none !important;
        }

        .hero h1 {
            font-family: var(--font-heading);
            font-size: clamp(32px, 8vw, 64px);
            margin-bottom: 20px;
            color: var(--dark-green);
        }

        .hero p {
            font-size: clamp(18px, 4vw, 24px);
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* Why Work With Us */
        .why-us {
            background-color: var(--cream);
            padding: 100px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .benefit-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 16px;
            text-align: center;
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

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

        .benefit-icon {
            font-size: 48px;
            color: var(--teal);
            margin-bottom: 20px;
            background: rgba(119, 191, 163, 0.15);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
        }

        .benefit-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-family: 'AlibabaSans-Bold', sans-serif;
        }

        .benefit-card p {
            font-size: 15px;
            line-height: 1.6;
            color: #555;
        }

        /* Our Culture */
        .culture {
            background-color: var(--white);
            padding: 100px 0;
        }

        .culture-content {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .culture-content p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #444;
        }

        .culture-images {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .culture-img {
            height: clamp(250px, 30vw, 400px);
            border-radius: 20px;
            overflow: hidden;
            position: relative;
        }

        .culture-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .culture-img:hover img {
            transform: scale(1.05);
        }

        .culture-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 20px;
            background: linear-gradient(to top, rgba(44, 62, 80, 0.8), transparent);
            color: var(--white);
            font-weight: bold;
        }

        /* Employee Benefits */
        .employee-benefits {
            background-color: var(--pale-green);
            padding: 100px 0;
        }

        .benefits-list-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: rgba(255, 255, 255, 0.6);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .benefit-item-icon {
            font-size: 32px;
            color: var(--teal);
            flex-shrink: 0;
        }

        .benefit-item-content h4 {
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .benefit-item-content p {
            font-size: 14px;
            color: #555;
            line-height: 1.5;
        }

        /* Open Positions */
        .open-positions {
            background-color: var(--white);
            padding: 100px 0;
        }

        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .job-card {
            border: 2px solid var(--teal);
            border-radius: 20px;
            padding: 40px;
            background: var(--white);
            display: flex;
            flex-direction: column;
            transition: box-shadow 0.3s ease;
        }

        .job-card:hover {
            box-shadow: 0 15px 40px rgba(119, 191, 163, 0.2);
        }

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

        .job-title {
            font-size: 24px;
            font-family: 'AlibabaSans-Bold', sans-serif;
            color: var(--dark-green);
        }

        .dept-badge {
            background-color: var(--teal);
            color: var(--white);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            font-size: 14px;
            color: #666;
        }

        .job-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .job-desc {
            margin-bottom: 20px;
            color: #444;
            line-height: 1.6;
            flex-grow: 1;
        }

        .job-lists {
            background: #f8fcf9;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 25px;
        }

        .job-lists h5 {
            font-size: 14px;
            text-transform: uppercase;
            color: var(--teal);
            margin-bottom: 10px;
            font-weight: bold;
        }

        .job-lists ul {
            margin-bottom: 15px;
            padding-left: 20px;
            list-style: disc;
            font-size: 14px;
            color: #555;
        }

        .job-lists ul:last-child {
            margin-bottom: 0;
        }

        .job-lists li {
            margin-bottom: 5px;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--cream);
            padding: 100px 0;
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            position: relative;
        }

        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--teal);
            margin: -90px auto 20px;
            background: #ccc;
        }

        .testimonial-card-inner {
            margin-top: 40px;
        }

        .quote-icon {
            font-size: 32px;
            color: var(--pale-green);
            margin-bottom: 15px;
        }

        .quote-text {
            font-style: italic;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: #555;
        }

        .author-name {
            font-weight: bold;
            color: var(--dark-green);
            font-size: 18px;
        }

        .author-role {
            font-size: 14px;
            color: var(--teal);
            margin-top: 4px;
        }

        .author-years {
            font-size: 12px;
            color: #888;
            margin-top: 5px;
        }

       
        /* Application Form */
        .application-form-section {
            background-color: var(--pale-green);
            padding: 100px 0;
        }

        .form-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--white);
            padding: 60px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: span 2;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark-green);
        }

        .form-input,
        .form-select,
        .form-textarea {
            padding: 12px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 15px;
            transition: border-color 0.3s;
            background: #fcfcfc;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--teal);
            background: #fff;
        }

        .file-upload-wrapper {
            border: 2px dashed #ccc;
            padding: 20px;
            text-align: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .file-upload-wrapper:hover {
            border-color: var(--teal);
            background: #f9fffb;
        }

        .file-upload-text {
            color: #777;
            font-size: 14px;
        }

        .file-upload-text i {
            display: block;
            font-size: 24px;
            margin-bottom: 5px;
            color: var(--teal);
        }

        /* Contact HR */
        .contact-hr {
            background-color: var(--teal);
            padding: 80px 0;
            text-align: center;
            color: var(--white);
        }

        .contact-hr h2 {
            font-family: var(--font-heading);
            font-size: 36px;
            margin-bottom: 20px;
        }

        .contact-info {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .contact-info p {
            margin-bottom: 10px;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {

            .benefits-grid,
            .culture-images,
            .benefits-list-grid,
            .testimonial-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

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

            .process-steps {
                gap: 20px;
                padding: 0 20px;
            }
        }

        @media (max-width: 992px) {

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .section-title {
                font-size: 32px;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            .process-steps::before {
                width: 2px;
                height: 100%;
                left: 50%;
                top: 0;
                transform: translateX(-50%);
            }

            .step-item {
                width: 100%;
            }

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

        @media (max-width: 768px) {

            .benefits-grid,
            .culture-images,
            .benefits-list-grid,
            .testimonial-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .form-container {
                padding: 30px;
            }

            .hero {
                padding: 60px 0;
            }

            .nav-actions {
                width: 100%;
                flex-direction: column;
            }
        }
