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

       :root {
    --primary-dark: #064e3b;
    --primary-blue: #065f46;
    --primary-light: #10b981;
    --accent: #6ee7b7;
    --background-light: #f0fdf4;
    --surface: #ffffff;
    --text-dark: #064e3b;
    --text-muted: #6b7280;
    --border: #d1fae5;
    --success: #22c55e;
    --warning: #facc15;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}


        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--surface);
        }

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

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        ul {
            list-style: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

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

        .section {
            padding: 80px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Header Styles */
        .header-top {
            background-color: var(--primary-dark);
            color: #ffffff;
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .header-top .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }

        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-main {
            background-color: var(--surface);
            box-shadow: var(--shadow-md);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-main .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .logo span {
            color: var(--primary-dark);
        }

        .nav-menu {
            display: flex;
            gap: 30px;
        }

        .nav-menu a {
            font-weight: 500;
            color: var(--text-dark);
            padding: 8px 0;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-blue);
            transition: var(--transition);
        }

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

        .nav-menu a:hover {
            color: var(--primary-blue);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--primary-dark);
            border-radius: 3px;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 100%);
            color: #ffffff;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero-content {
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            font-weight: 500;
        }

        .hero-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }

        .hero-benefit {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1rem;
        }

        .hero-benefit svg {
            width: 24px;
            height: 24px;
            fill: var(--success);
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 35px;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }

        .btn-primary {
            background-color: var(--primary-blue);
            color: #ffffff;
        }

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

        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .btn-secondary:hover {
            background-color: #ffffff;
            color: var(--primary-dark);
        }

        .btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        /* About Section */
        .about {
            background-color: var(--background-light);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            border-radius: 20px;
            padding: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 400px;
            position: relative;
        }

        .about-image svg {
            width: 200px;
            height: 200px;
            fill: #ffffff;
            opacity: 0.9;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: var(--surface);
            border-radius: 10px;
            box-shadow: var(--shadow-md);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-blue);
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background-color: var(--surface);
            padding: 35px;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border);
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .service-icon svg {
            width: 35px;
            height: 35px;
            fill: #ffffff;
        }

        .service-card h3 {
            font-size: 1.3rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Jobs Section */
        .jobs {
            background-color: var(--background-light);
        }

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

        .job-card {
            background-color: var(--surface);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

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

        .job-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            padding: 25px;
            color: #ffffff;
        }

        .job-header h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .job-header span {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .job-body {
            padding: 25px;
        }

        .job-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        .job-feature svg {
            width: 18px;
            height: 18px;
            fill: var(--success);
            flex-shrink: 0;
        }

        .job-btn {
            width: 100%;
            margin-top: 15px;
        }

        /* Why Choose Us */
        .why-us {
            background-color: var(--primary-dark);
            color: #ffffff;
        }

        .why-us .section-title h2,
        .why-us .section-title p {
            color: #ffffff;
        }

        .why-us-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .why-us-item {
            display: flex;
            gap: 20px;
            padding: 25px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .why-us-item:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .why-us-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .why-us-icon svg {
            width: 28px;
            height: 28px;
            fill: #ffffff;
        }

        .why-us-item h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .why-us-item p {
            opacity: 0.8;
            font-size: 0.95rem;
        }

        /* How to Apply */
        .steps-container {
            display: flex;
            justify-content: space-between;
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .steps-container::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%;
            right: 10%;
            height: 4px;
            background-color: var(--border);
            z-index: 0;
        }

        .step-item {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: 700;
            color: #ffffff;
            box-shadow: var(--shadow-lg);
        }

        .step-item h4 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .step-item p {
            color: var(--text-muted);
            max-width: 200px;
            margin: 0 auto;
        }

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

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

        .testimonial-card {
            background-color: var(--surface);
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-md);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 25px;
            font-size: 4rem;
            color: var(--primary-blue);
            opacity: 0.2;
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-stars {
            color: #f59e0b;
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .testimonial-card p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.7;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .author-info h5 {
            color: var(--primary-dark);
            font-size: 1rem;
        }

        .author-info span {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }

        .contact-info-box {
            background: linear-gradient(135deg, var(--primary-dark), #1e3a5f);
            padding: 40px;
            border-radius: 20px;
            color: #ffffff;
        }

        .contact-info-box h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
        }

        .contact-info-box p {
            opacity: 0.8;
            margin-bottom: 30px;
        }

        .contact-detail {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .contact-detail-icon {
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-detail-icon svg {
            width: 22px;
            height: 22px;
            fill: #ffffff;
        }

        .contact-detail-text h5 {
            font-size: 0.9rem;
            opacity: 0.7;
            margin-bottom: 5px;
        }

        .contact-detail-text p {
            font-size: 1rem;
            margin: 0;
        }

        .contact-form {
            background-color: var(--surface);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .contact-form h3 {
            font-size: 1.5rem;
            color: var(--primary-dark);
            margin-bottom: 25px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border);
            border-radius: 10px;
            font-size: 1rem;
            font-family: inherit;
            transition: var(--transition);
            background-color: var(--background-light);
        }

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

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

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

        /* Newsletter Section */
        .newsletter {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent));
            color: #ffffff;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .newsletter p {
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 900px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 10px;
            font-size: 1rem;
        }

        .newsletter-form .btn {
            background-color: var(--primary-dark);
            color: #ffffff;
        }

        .newsletter-form .btn:hover {
            background-color: #0f172a;
        }

        /* Privacy & Terms */
        .legal {
            background-color: var(--background-light);
            padding: 50px 0;
        }

        .legal-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .legal-section {
            margin-bottom: 30px;
        }

        .legal-section h4 {
            font-size: 1.2rem;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .legal-section p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-dark);
            color: #ffffff;
            padding: 60px 0 30px;
        }

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

        .footer-brand .logo {
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-brand p {
            opacity: 0.7;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-social {
            display: flex;
            gap: 15px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background-color: var(--primary-blue);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: #ffffff;
        }

        .footer-links h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #ffffff;
        }

        .footer-links ul {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            opacity: 0.7;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            opacity: 1;
            color: var(--primary-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

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

        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            .services-grid,
            .jobs-grid,
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .why-us-grid {
                grid-template-columns: 1fr;
            }

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

        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background-color: var(--surface);
                flex-direction: column;
                padding: 80px 30px 30px;
                box-shadow: var(--shadow-xl);
                transition: var(--transition);
                z-index: 1001;
            }

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

            .mobile-toggle {
                display: flex;
            }

            .mobile-toggle.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }

            .mobile-toggle.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-toggle.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1.2rem;
            }

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

            .about-image {
                order: -1;
                min-height: 250px;
            }

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

            .steps-container {
                flex-direction: column;
                gap: 40px;
            }

            .steps-container::before {
                display: none;
            }

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

            .newsletter-form {
                flex-direction: column;
            }

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

            .footer-social {
                justify-content: center;
            }

            .contact-info {
                display: none;
            }

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

        /* Success Message */
        .success-message {
            display: none;
            padding: 15px 20px;
            background-color: var(--success);
            color: #ffffff;
            border-radius: 10px;
            margin-top: 15px;
            font-weight: 500;
        }

        .success-message.show {
            display: block;
            animation: slideIn 0.3s ease;
        }

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

        /* Scroll to top button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: var(--shadow-lg);
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background-color: var(--primary-light);
            transform: translateY(-5px);
        }

        .scroll-top svg {
            width: 24px;
            height: 24px;
            fill: #ffffff;
        }
    