 
        /* About Hero Section */
        .about-hero-section {
            position: relative;
            background: var(--primary-blue);
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .about-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg,
                    rgba(1, 174, 239, 0.05) 0%,
                    transparent 50%);
            pointer-events: none;
        }

        .about-hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            max-width: 900px;
            opacity: 0;
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
        }

        .about-hero-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--white);
            line-height: 1.3;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-hero-title .highlight-gold {
            color: var(--accent-gold);
            display: inline-block;
            position: relative;
        }

        .about-hero-title .highlight-gold::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            animation: expandWidth 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
        }

        .about-hero-description {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-lighter);
            line-height: 1.7;
            margin: 0;
            max-width: 700px;
        }

        /* Animations */
        @keyframes expandWidth {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .about-hero-section {
                padding: 120px 0 80px;
            }

            .about-hero-container {
                padding: 0 30px;
            }

            .about-hero-title {
                font-size: 38px;
            }
        }

        @media (max-width: 768px) {
            .about-hero-section {
                padding: 110px 0 70px;
            }

            .about-hero-container {
                padding: 0 20px;
            }

            .about-hero-title {
                font-size: 34px;
                letter-spacing: -0.3px;
            }

            .about-hero-description {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .about-hero-section {
                padding: 100px 0 60px;
            }

            .about-hero-title {
                font-size: 30px;
            }

            .about-hero-description {
                font-size: 14px;
            }
        }
   
   
   
   
    
        /* Career Section */
        .career-section {
            position: relative;
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
            overflow: hidden;
        }

        .career-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: linear-gradient(180deg, rgba(0, 72, 118, 0.03) 0%, transparent 100%);
            pointer-events: none;
        }

        .career-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        /* Section Header */
        .career-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 80px;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(1, 174, 239, 0.1);
            color: var(--accent-cyan);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            border: 1px solid rgba(1, 174, 239, 0.2);
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 20px;
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 16px;
            font-weight: 400;
            color: #6c757d;
            line-height: 1.7;
            margin: 0;
        }

        /* Positions Grid */
        .positions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .position-card {
            background: white;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(0, 0, 0, 0.06);
            position: relative;
            overflow: hidden;
        }

        .position-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-gold));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .position-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
            border-color: rgba(1, 174, 239, 0.3);
        }

        .position-card:hover::before {
            transform: scaleX(1);
        }

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

        .position-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, rgba(1, 174, 239, 0.1), rgba(1, 174, 239, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-cyan);
            font-size: 24px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .position-card:hover .position-icon {
            background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
            color: white;
            transform: rotate(5deg) scale(1.05);
        }

        .position-badge {
            padding: 6px 14px;
            background: rgba(244, 185, 66, 0.1);
            color: var(--accent-gold);
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .position-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .position-department {
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-cyan);
            margin-bottom: 16px;
        }

        .position-description {
            font-size: 14px;
            font-weight: 400;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .position-details {
            display: flex;
            gap: 24px;
            margin-bottom: 24px;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.06);
        }

        .detail-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: #6c757d;
        }

        .detail-item i {
            color: var(--accent-cyan);
            font-size: 12px;
        }

        .btn-apply {
            width: 100%;
            padding: 14px 24px;
            background: var(--primary-blue);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-apply:hover {
            background: var(--accent-cyan);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(1, 174, 239, 0.3);
        }

        .btn-apply i {
            font-size: 12px;
            transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-apply:hover i {
            transform: translateX(4px);
        }

        /* Benefits Section */
        .benefits-section {
            background: white;
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
        }

        .benefits-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-blue);
            text-align: center;
            margin-bottom: 50px;
        }

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

        .benefit-item {
            text-align: center;
        }

        .benefit-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--accent-cyan), var(--primary-blue));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-item:hover .benefit-icon {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 40px rgba(1, 174, 239, 0.3);
        }

        .benefit-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .benefit-item p {
            font-size: 13px;
            color: #6c757d;
            line-height: 1.6;
            margin: 0;
        }

        /* Career CTA */
        .career-cta {
            text-align: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
            border-radius: 20px;
            padding: 60px 40px;
            color: white;
        }

        .career-cta h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .career-cta p {
            font-size: 15px;
            font-weight: 400;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        /* Application Modal */
        .application-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .application-modal.active {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            position: relative;
            background: white;
            border-radius: 20px;
            max-width: 700px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 50px;
            animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(0, 0, 0, 0.05);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(0, 0, 0, 0.1);
            color: var(--primary-blue);
            transform: rotate(90deg);
        }

        .modal-header {
            margin-bottom: 40px;
        }

        .modal-header h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        .modal-header h3 span {
            color: var(--accent-cyan);
        }

        .modal-header p {
            font-size: 14px;
            color: #6c757d;
            margin: 0;
        }

        /* Application Form */
        .application-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

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

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

        .form-group label {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary-blue);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 14px 16px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-cyan);
            box-shadow: 0 0 0 3px rgba(1, 174, 239, 0.1);
        }

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

        /* File Upload */
        .file-upload {
            position: relative;
        }

        .file-upload input[type="file"] {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .file-upload label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            border: 2px dashed rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(1, 174, 239, 0.02);
        }

        .file-upload label:hover {
            border-color: var(--accent-cyan);
            background: rgba(1, 174, 239, 0.05);
        }

        .file-upload label i {
            font-size: 32px;
            color: var(--accent-cyan);
            margin-bottom: 12px;
        }

        .file-upload label span {
            font-size: 14px;
            font-weight: 500;
            color: var(--primary-blue);
            margin-bottom: 4px;
        }

        .file-upload label small {
            font-size: 12px;
            color: #6c757d;
        }

        .btn-submit {
            padding: 16px 36px;
            background: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            margin-top: 10px;
        }

        .btn-submit:hover {
            background: #ffca5d;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 185, 66, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .section-title {
                font-size: 36px;
            }

            .benefits-section {
                padding: 50px 40px;
            }
        }

        @media (max-width: 992px) {
            .positions-grid {
                grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
                gap: 24px;
            }

            .benefits-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 30px;
            }
        }

        @media (max-width: 768px) {
            .career-section {
                padding: 80px 0;
            }

            .career-container {
                padding: 0 20px;
            }

            .career-header {
                margin-bottom: 60px;
            }

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

            .section-description {
                font-size: 15px;
            }

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

            .position-card {
                padding: 28px;
            }

            .benefits-section {
                padding: 40px 24px;
            }

            .benefits-title {
                font-size: 24px;
                margin-bottom: 40px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }

            .career-cta {
                padding: 50px 24px;
            }

            .career-cta h3 {
                font-size: 24px;
            }

            .modal-content {
                padding: 40px 24px;
            }

            .modal-header h3 {
                font-size: 22px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 28px;
            }

            .position-details {
                flex-direction: column;
                gap: 12px;
            }
        }
   