        /* ============= CSS Variables ============= */
        :root {
            --primary-blue: #003366;
            --accent-yellow: #FFC300;
            --text-light: #CEF4EB;
            --light-green: rgba(206, 244, 235, 0.5);
            --glass-bg: rgba(206, 244, 235, 0.15);
        }

        /* ============= Base Styles ============= */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-image: 
                linear-gradient(to right, 
                rgba(0, 51, 102, 0.3),
                rgba(0, 51, 102, 0.4),
                rgba(0, 51, 102, 0.5),
                rgba(0, 51, 102, 0.6),
                rgba(0, 51, 102, 0.7),
                rgba(0, 51, 102, 0.8),
                rgba(0, 51, 102, 0.9)), 
                url(https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1740&q=80);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding-top: 80px;
            min-height: 100vh;
            color: var(--text-light);
        }

        /* ============= Navigation ============= */
        .navbar {
            background: rgba(0, 51, 102, 0.95) !important;
            padding: 0.8rem 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
        }

        .logoimg {
            height: 50px;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 12px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-yellow) !important;
        }

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

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

        /* ============= Hero Section ============= */
        .hero-section {
            padding: 80px 0 40px;
            text-align: center;
        }

        .hero-section h1 {
            font-weight: 800;
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-yellow);
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            font-weight: 300;
            line-height: 1.7;
        }

        .hero-btn {
            background: var(--accent-yellow);
            border: none;
            color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: inline-block;
            margin: 0 10px 15px;
        }

        .hero-btn:hover {
            background: #e0ac00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .hero-btn.secondary {
            background: transparent;
            border: 2px solid var(--accent-yellow);
            color: var(--accent-yellow);
        }

        .hero-btn.secondary:hover {
            background: rgba(255, 195, 0, 0.1);
        }

        /* ============= Section Styles ============= */
        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--accent-yellow);
            position: relative;
            padding-bottom: 15px;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent-yellow);
            border-radius: 2px;
        }

        /* ============= Glass Card ============= */
        .glass-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            border-color: rgba(255, 195, 0, 0.3);
        }

        /* ============= Benefits Section ============= */
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--accent-yellow);
            margin-bottom: 20px;
        }

        .benefit-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent-yellow);
            font-weight: 700;
        }

        /* ============= Job Listings ============= */
        .job-card {
            position: relative;
            overflow: hidden;
        }

        .job-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--accent-yellow);
            color: var(--primary-blue);
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.85rem;
        }

        .job-title {
            font-size: 1.5rem;
            color: var(--accent-yellow);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }

        .job-meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .job-meta-item i {
            color: var(--accent-yellow);
        }

        .job-description {
            margin-bottom: 25px;
            line-height: 1.7;
        }

        .job-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .job-tag {
            background: rgba(255, 195, 0, 0.15);
            color: var(--accent-yellow);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
        }

        /* ============= Application Form ============= */
        .form-group label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .form-control, .form-select {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: var(--text-light);
            padding: 12px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .form-control:focus, .form-select:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--accent-yellow);
            box-shadow: 0 0 0 0.25rem rgba(255, 195, 0, 0.25);
            color: var(--text-light);
        }

        .form-control::placeholder {
            color: rgba(206, 244, 235, 0.6);
        }

        .btn-submit {
            background: var(--accent-yellow);
            border: none;
            color: var(--primary-blue);
            padding: 12px 30px;
            font-weight: 700;
            border-radius: 30px;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            max-width: 300px;
            margin: 30px auto 0;
            font-size: 1.1rem;
        }

        .btn-submit:hover {
            background: #e0ac00;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* ============= Testimonials ============= */
        .testimonial-card {
            text-align: center;
            padding: 30px;
        }

        .testimonial-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-yellow);
            margin: 0 auto 20px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text:before,
        .testimonial-text:after {
            content: '"';
            font-size: 3rem;
            color: rgba(255, 195, 0, 0.3);
            position: absolute;
        }

        .testimonial-text:before {
            top: -20px;
            left: -15px;
        }

        .testimonial-text:after {
            bottom: -40px;
            right: -15px;
        }

        .testimonial-name {
            font-weight: 700;
            color: var(--accent-yellow);
            margin-bottom: 5px;
        }

        .testimonial-role {
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* ============= Footer ============= */
        footer {
            background: #ffc400be;
            color: white;
            padding: 2rem 0;
            margin-top: 50px;
            box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
        }

        footer p {
            margin: 0;
            text-align: center;
            opacity: 0.8;
        }

        /* ============= Responsive Design ============= */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0 30px;
            }
            
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 40px;
            }
            
            .glass-card {
                padding: 25px;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 1.9rem;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-btn {
                display: block;
                width: 100%;
                max-width: 300px;
                margin: 0 auto 15px;
            }
        }