       :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --dark: #1e293b;
            --light: #f8fafc;
            --gray: #64748b;
            --light-gray: #e2e8f0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }
        
        body {
            color: var(--dark);
            line-height: 1.6;
            background-color: #ffffff;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: fixed;
            width: 100%;
            z-index: 100;
        }

         :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --dark: #1e293b;
            --light: #ffffff;
            --gray: #64748b;
            --font: 'Inter', sans-serif;
        }

        body {
            font-family: var(--font);
            margin: 0;
            padding: 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 5%;
            background-color: var(--light);
            box-shadow: 0 2px 8px #f9f9f9;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }

        .logo img {
            width: auto;
            height: 64px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

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

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .btn {
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-primary {
            background-color: #33BDBD;
            color: white;
            border: #33BDBD;
        }

        .btn-primary:hover {
            background-color: #FBB040;
            transform: translateY(-2px);
        }

        .btn-outline {
            border: #33BDBD;
            color: #33BDBD;
            background-color: transparent;
        }

        .btn-outline:hover {
            background-color: rgba(37, 99, 235, 0.1);
            transform: translateY(-2px);
        }

        img.img-fluid {
    max-width: 100%;
    height: 400px;
    object-fit: cover;
        border-radius: 60px;
}

        /* Hero Section */
        .hero {
            padding: 150px 0 20px;
            background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
            text-align: center;
        }
        
        .hero h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero p {
            font-size: 20px;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 50px;
        }
        
        .hero-image {
            max-width: 800px;
            margin: 0 auto;
            border-radius: 12px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            overflow: hidden;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Key Offerings */
        .section {
            /* padding: 100px 0; */
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* .offerings {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .offering-card {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .offering-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        
        .offering-icon {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .offering-card h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .offering-card p {
            color: var(--gray);
            margin-bottom: 20px;
        } */
        .offering-card {
            background-color: white;
            border-radius: 16px;
            padding: 5px;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
            overflow: hidden;
        }

        .offering-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
        }
        .offerings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}



        .offering-card-img {
    width: 100%;
    height: 180px;           /* Fixed height for uniform card layout */
    object-fit: cover;       /* Ensures image fills the box while maintaining aspect ratio */
    border-radius: 10px;
    margin-bottom: 20px;
}


        .offering-icon {
            font-size: 32px;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .offering-card h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .offering-card p {
            color: var(--gray);
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.5;
        }

        /* .btn.btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-block;
        } */

        /* .btn.btn-outline:hover {
            background-color: var(--primary);
            color: white;
        } */
        .btn-outline:hover {
    background-color: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

        
        /* How we work */
        .process-steps {
            display: flex;
            justify-content: space-between;
            max-width: 900px;
            margin: 0 auto;
            position: relative;
        }
        
        .process-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--light-gray);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            width: 25%;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background-color: white;
            border: 2px solid var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 20px;
            position: relative;
        }
        
        .step.active .step-number {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .step h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .step p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Platform Features */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .feature h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .feature p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Core Values */
        .values {
            background-color: #f8fafc;
            border-radius: 12px;
            padding:10px 60px;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value {
            display: flex;
            gap: 20px;
        }
        
        .value-icon {
            font-size: 24px;
            color: #33BDBD;
            flex-shrink: 0;
        }
        
        .value-content h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .value-content p {
            color: var(--gray);
            font-size: 14px;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: #f1f5f9;
            padding: 80px 0;
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .testimonial {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
        }
        
        .testimonial-content {
            font-size: 18px;
            font-style: italic;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        .testimonial-company {
            color: var(--gray);
            font-size: 14px;
        }
        
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 50px;
            opacity: 0.7;
        }
        
        .client-logos img {
            height: 30px;
            width: auto;
        }
        
        /* CTA Section */
        .cta {
            /* background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); */
            background: #33BDBD;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 12px;
            margin: 60px 0;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }
        
        .btn-white {
            background-color: white;
            color: #33BDBD;
        }
        
        .btn-white:hover {
            background-color: #FBB040;
            transform: translateY(-2px);
            color: white;
        }
        
        .btn-transparent {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }
        
        .btn-transparent:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-2px);
        }
        
        /* Footer */
        footer {
            background-color: #33BDBD;
            color: #000000;
            padding: 80px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 10px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
        }
        
        .footer-about p {
            opacity: 0.7;
            margin-bottom: 20px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: #000000;
            font-size: 18px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .social-links a:hover {
            opacity: 1;
        }
        
        .footer-links h3 {
            font-size: 18px;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #000000;
            opacity: 0.7;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .footer-links a:hover {
            opacity: 1;
        }
        
        .newsletter input {
            width: 100%;
            padding: 12px 15px;
            border-radius: 6px;
            border: none;
            margin-bottom: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            color: white;
        }
        
        .newsletter input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            opacity: 0.7;
            font-size: 14px;
        }
        
        .footer-legal {
            display: flex;
            gap: 20px;
        }
        
        .footer-legal a {
            color: white;
            opacity: 0.7;
            font-size: 14px;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        
        .footer-legal a:hover {
            opacity: 1;
        }

        /* Contact Info Css*/
        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            text-align: center;
        }

        .contact-item {
            background: #f9f9f9;
            padding: 20px;
            border-radius: 10px;
            transition: 0.3s ease-in-out;
        }

        .contact-item:hover {
            background: #eaeaea;
        }

        .contact-icon {
            font-size: 2rem;
            color: #007bff;
            margin-bottom: 10px;
        }

        .contact-item h3 {
            margin-bottom: 5px;
            font-size: 1.2rem;
        }

        .contact-item p {
            font-size: 1rem;
            color: #555;
        }

        .contact-item a {
            text-decoration: none;
            color: inherit;
        }
        .section {
    padding: 80px 0;
    background-color: #ffffff;
    }
    .section-services{
    padding: 80px 0;
    background-color: #ffffff;
    }
    .section-home{
    /* padding: 80px 0; */
    background-color: #ffffff;
    }

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

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

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1e293b; /* --dark variable */
        margin-bottom: 15px;
        margin-top: revert;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #64748b; /* --gray variable */
        max-width: 700px;
        margin: 0 auto;
    }

    /* Specific About Content Styling */
    .about-content {
        text-align: center;
        font-size: 1.15rem;
        line-height: 1.7;
        max-width: 800px;
        margin: 0 auto 60px auto; /* Add more bottom margin */
        color: #475569; /* A slightly lighter shade of gray */
    }

    /* "Our Clients" Section Styling */
    .our-clients {
        margin-top: 50px;
    }

    .clients-title {
        text-align: center;
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 40px;
        color: #1e293b; /* --dark variable */
    }

    .clients-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 40px; /* Increased gap for more spacing */
    }

    .client-card {
        padding: 25px;
        background-color: #f8fafc; /* --light variable */
        border: 1px solid #e2e8f0; /* --light-gray variable */
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        min-height: 100px;
        min-width: 180px;
    }

    .client-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.07);
    }

    .client-card img {
        max-height: 45px; /* Slightly smaller for a cleaner look */
        max-width: 120px;
        width: auto;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: filter 0.3s ease, opacity 0.3s ease;
    }

    .client-card:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }
    
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .process-steps::before {
                display: none;
            }
            
            .step {
                width: 100%;
                display: flex;
                align-items: center;
                gap: 20px;
                text-align: left;
            }
            
            .step-number {
                margin: 0;
                width: 60px;
                height: 60px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

    .services-button {
        margin-top: 40px;
        text-align: center;
    }

    .lead {
        margin-top: 20px;
        text-align: center;
    }

    /* Contact Form Styles */
    /* filepath: f:\careerEventus\website\careerEventus\public\style.css */

    .contact-form {
        background: #fff;
        padding: 32px 24px;
        border-radius: 12px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.06);
        max-width: 480px;
        margin: 32px auto 0 auto;
    }

    .contact-form form > div {
        margin-bottom: 18px;
    }

    .contact-form label {
        display: block;
        font-weight: 600;
        color: #1a237e; /* Deep blue, matches your site */
        margin-bottom: 6px;
        letter-spacing: 0.5px;
    }

    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"] {
        width: 100%;
        padding: 10px 12px;
        border: 1px solid #bdbdbd;
        border-radius: 6px;
        font-size: 1rem;
        background: #f5f7fa;
        color: #222;
        transition: border 0.2s;
    }

    .contact-form input:focus {
        border-color: #3949ab; /* Accent blue */
        outline: none;
        background: #e8eaf6;
    }

    .contact-form button.btn-primary {
        background: #3949ab; /* Accent blue */
        color: #fff;
        border: none;
        padding: 12px 28px;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }

    .contact-form button.btn-primary:hover {
        background: #1a237e; /* Darker blue */
    }

    @media (max-width: 600px) {
        .contact-form {
            padding: 18px 8px;
            max-width: 100%;
        }
    }