   
        /* CSS Variables for Red, White & Light Grey Color Scheme */
        :root {
            --primary: #d32f2f;      /* Red */
            --primary-light: #ef5350; /* Lighter red */
            --primary-dark: #b71c1c;  /* Darker red */
            --white: #ffffff;
            --light-grey: #f5f5f5;
            --medium-grey: #e0e0e0;
            --dark-grey: #757575;
            --text: #212121;
            --shadow: rgba(0, 0, 0, 0.08);
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text);
            line-height: 1.6;
            font-weight: 400;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        section {
            padding: 80px 0;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            color: var(--primary);
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 1.5rem;
            color: var(--dark-grey);
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--primary-light);
        }

        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 12px 28px;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 16px;
            font-weight: 500;
            text-align: center;
        }

        .btn:hover {
            background-color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px var(--shadow);
            color:red;
            border: 2px solid red;
            
        }

        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        .btn-grey {
            background-color: var(--light-grey);
            color: var(--text);
        }

        .btn-grey:hover {
            background-color: var(--medium-grey);
        }

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

        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--primary);
            margin: 15px auto 0;
        }

        /* Header Styles */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px var(--shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            font-weight: 500;
            color: var(--text);
        }

        nav ul li a:hover {
            color: var(--primary);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
            z-index: 101;
        }

        /* Mobile Navigation */
        @media (max-width: 576px) {
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 20px;
                right: 15px;
                background: var(--white);
                border: 1px solid var(--medium-grey);
                padding: 10px;
                border-radius: 4px;
                width: 50px;
                height: 50px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            nav {
                display: none;
                width: 100%;
                margin-top: 5px;
                position: absolute;
                top: 100%;
                left: 0;
                background: var(--white);
                box-shadow: 0 5px 15px var(--shadow);
                border-top: 1px solid var(--medium-grey);
            }

            nav.active {
                display: block;
            }

            nav ul {
                flex-direction: column;
                padding: 20px 0;
            }

            nav ul li {
                margin: 0;
                text-align: center;
            }

            nav ul li a {
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid var(--light-grey);
            }

            nav ul li:last-child a {
                border-bottom: none;
            }

            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Hero Section */
        .hero {
            background-color: var(--light-grey);
            padding: 100px 0;
            text-align: center;
        }

        .hero h1 {
            max-width: 800px;
            margin: 0 auto 25px;
            color: var(--primary);
        }

        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Job Categories */
        .categories {
            background-color: var(--white);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .category-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px var(--shadow);
            border-top: 4px solid var(--primary);
        }

        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px var(--shadow);
        }

        .category-card i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .category-card h3 {
            margin-bottom: 15px;
            color: var(--primary);
        }

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

        .jobs-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 10px;
        }

        .job-card {
            background-color: var(--white);
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px var(--shadow);
            transition: all 0.3s ease;
            border-left: 4px solid var(--primary);
        }

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

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

        .job-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary);
        }

        .job-type {
            background-color: var(--light-grey);
            color: var(--text);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
        }

        .job-details {
            margin-bottom: 20px;
            color: var(--dark-grey);
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .job-details span {
            display: flex;
            align-items: center;
        }

        .job-details i {
            margin-right: 5px;
            color: var(--primary-light);
        }

        .job-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .job-salary {
            font-weight: 600;
            color: var(--primary);
            font-size: 1.1rem;
        }

        /* How It Works */
        .how-it-works {
            background-color: var(--white);
        }

        .steps {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-top: 50px;
        }

        .step {
            flex: 1;
            min-width: 250px;
            text-align: center;
            padding: 0 20px;
            margin-bottom: 30px;
            position: relative;
        }

        .step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 40px;
            right: -10px;
            width: 20px;
            height: 2px;
            background-color: var(--primary);
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            font-weight: 700;
        }

        .step h3 {
            color: var(--primary);
        }

        /* Stats Section */
        .stats {
            background-color: var(--light-grey);
            text-align: center;
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--dark-grey);
        }

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

        .testimonial-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .testimonial {
            background-color: var(--white);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 5px 15px var(--shadow);
            text-align: center;
            display: none;
            border-top: 4px solid var(--primary);
        }

        .testimonial.active {
            display: block;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: var(--light-grey);
            position: absolute;
            top: -20px;
            left: -10px;
            opacity: 0.7;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }

        .testimonial-role {
            color: var(--dark-grey);
            font-size: 0.9rem;
        }

        .testimonial-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            background-color: var(--light-grey);
            border-radius: 50%;
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .testimonial-dot.active {
            background-color: var(--primary);
            transform: scale(1.2);
        }

        /* Call to Action */
        .cta {
            background-color: var(--primary);
            color: var(--white);
            text-align: center;
        }

        .cta h2 {
            color: var(--white);
        }

        .cta p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta .btn {
            background-color: var(--white);
            color: var(--primary);
        }

        .cta .btn:hover {
            background-color: var(--light-grey);
        }

        .cta .btn-outline {
            border-color: var(--white);
            color: var(--white);
        }

        .cta .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary);
        }

        /* Footer */
        footer {
            background-color: var(--text);
            color: var(--white);
            padding: 70px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-column h3 {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-column ul li a:hover {
            color: var(--white);
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.8);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--white);
            color: var(--primary);
            transform: translateY(-3px);
        }

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

        /* Responsive Design */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            section {
                padding: 60px 0;
            }

            .step:not(:last-child):after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                text-align: center;
            }

            nav ul {
                margin-top: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            nav ul li {
                margin: 8px 15px;
            }

            .hero {
                padding: 80px 0;
            }

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

            .steps {
                flex-direction: column;
                align-items: center;
            }

            .step {
                margin-bottom: 50px;
                max-width: 400px;
            }

            .stats-container {
                flex-direction: column;
                align-items: center;
            }

            .stat-item {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .hero {
                padding: 60px 0;
            }

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

            .hero-buttons, .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            .job-card, .category-card {
                padding: 20px;
            }
        }
  