         :root {
            --primary: #003c71;
            --secondary: #23C0E9;
            --accent: #FF6B35;
            --light: #f8f9fa;
            --dark: #343a40;
            --gray: #6c757d;
            --success: #28a745;
            --whatsapp: #25D366;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f5f7fa;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Poppins', sans-serif;
        }
        
        .btn-primary {
            background: var(--secondary);
            color: white;
        }
        
        .btn-primary:hover {
            background: #1a9dc5;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(35, 192, 233, 0.3);
        }
        
        .btn-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline:hover {
            background: white;
            color: var(--primary);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 70px;
            height: 3px;
            background: var(--secondary);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Fixed Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }
        
        #preloader.hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        #status {
            text-align: center;
        }
        
        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(0, 60, 113, 0.2);
            border-radius: 50%;
            border-top-color: var(--secondary);
            animation: spin 1s ease-in-out infinite;
        }
        
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }
        
        /* New Navbar */
        .new-navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .new-navbar.sticky {
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .new-logo {
            display: flex;
            align-items: center;
        }
        
        .new-logo-img {
            height: 50px;
            margin-right: 10px;
        }
        
        .new-logo-text {
            font-weight: 700;
            font-size: 24px;
            color: var(--primary);
        }
        
        .new-logo-text span {
            color: var(--secondary);
        }
        
        .new-nav-menu {
            display: flex;
            align-items: center;
        }
        
        .new-nav-menu ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        
        .new-nav-menu li {
            margin: 0 15px;
            position: relative;
        }
        
        .new-nav-menu a {
            color: var(--primary);
            font-weight: 500;
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .new-nav-menu a:hover {
            color: var(--secondary);
        }
        
        .new-nav-menu a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .new-nav-menu a:hover:after {
            width: 100%;
        }
        
        /* WhatsApp Button Styles */
        .whatsapp-btn {
            background: var(--whatsapp);
            color: white !important;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-left: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
        }
        
        .whatsapp-btn:hover {
            background: #128C7E;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
        }
        
        .whatsapp-btn:after {
            display: none;
        }
        
        .whatsapp-btn i {
            font-size: 24px;
        }
        
        /* Mobile menu styles */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 60, 113, 0.85), rgba(0, 60, 113, 0.85)), 
                        url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            color: white;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-content h1 span {
            color: var(--secondary);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.9;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        /* Quick Categories */
        .quick-categories {
            padding: 80px 0;
            background: white;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .category-card {
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid #f0f0f0;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .category-icon {
            width: 70px;
            height: 70px;
            background: rgba(35, 192, 233, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        
        .category-icon i {
            font-size: 30px;
            color: var(--secondary);
        }
        
        .category-card h3 {
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        .category-card p {
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        .category-link {
            color: var(--secondary);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .category-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }
        
        .category-card:hover .category-link i {
            transform: translateX(5px);
        }
        
        /* Job Listings */
        .job-listings {
            padding: 80px 0;
            background: #f8f9fa;
        }
        
        .job-filters {
            display: flex;
            justify-content: space-between;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .filter-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .filter-select {
            padding: 10px 15px;
            border-radius: 5px;
            border: 1px solid #ddd;
            background: white;
            font-family: 'Roboto', sans-serif;
        }
        
        .job-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .job-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 4px solid var(--secondary);
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .job-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .job-logo {
            width: 70px;
            height: 70px;
            background: #f0f7ff;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .job-logo i {
            font-size: 30px;
            color: var(--secondary);
        }
        
        .job-details h3 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        
        .job-details p {
            color: var(--gray);
            margin-bottom: 10px;
        }
        
        .job-meta {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        .job-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .job-meta i {
            color: var(--secondary);
        }
        
        .job-actions {
            display: flex;
            gap: 10px;
        }
        
        .save-job {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .save-job:hover {
            background: #e9ecef;
        }
        
        /* App Download */
        .app-download {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary) 0%, #0056a3 100%);
            color: white;
        }
        
        .app-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
        }
        
        .app-text {
            flex: 1;
        }
        
        .app-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .app-text p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .app-buttons {
            display: flex;
            gap: 15px;
        }
        
        .app-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .app-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-3px);
        }
        
        .app-btn i {
            font-size: 24px;
        }
        
        .app-btn-text {
            display: flex;
            flex-direction: column;
        }
        
        .app-btn-text span:first-child {
            font-size: 0.8rem;
        }
        
        .app-btn-text span:last-child {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .app-image {
            flex: 1;
            text-align: center;
        }
        
        .app-image img {
            max-width: 300px;
            width: 100%;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 70px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: white;
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            opacity: 1;
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-links i {
            color: var(--secondary);
            font-size: 0.8rem;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding: 25px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .footer-bottom p {
            opacity: 0.7;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        /* Responsive Styles */
        @media (max-width: 991px) {
            .new-nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                padding: 20px;
                flex-direction: column;
                z-index: 1000;
            }
            
            .new-nav-menu.active {
                display: flex;
            }
            
            .new-nav-menu ul {
                flex-direction: column;
                width: 100%;
            }
            
            .new-nav-menu li {
                margin: 10px 0;
                width: 100%;
            }
            
            .new-nav-menu a {
                display: block;
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            
            .mobile-menu-toggle {
                display: block;
            }
            
            .whatsapp-btn {
                margin: 10px 0 0 0;
                align-self: center;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .app-content {
                flex-direction: column;
                text-align: center;
            }
            
            .app-buttons {
                justify-content: center;
            }
            
            .job-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            
            .job-actions {
                width: 100%;
                justify-content: flex-end;
            }
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .filter-group {
                width: 100%;
            }
            
            .filter-select {
                flex: 1;
            }
            
            .job-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .hero-section {
                padding: 150px 0 80px;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .app-buttons {
                flex-direction: column;
            }
            
            .whatsapp-btn {
                width: 45px;
                height: 45px;
            }
            
            .whatsapp-btn i {
                font-size: 20px;
            }
        }