 /* Enhanced CSS Additions */
        :root {
            --primary-hover: #1e40af;
            --accent-hover: #d97706;
            --light-hover: #f1f5f9;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 10px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
             --primary: #2563eb;
            --secondary: #1e293b;
            --accent: #f59e0b;
            --light: #f8fafc;
            --dark: #0f172a;
        }

        /* Floating background elements */
        body::before,
        body::after {
            content: '';
            position: fixed;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.1;
            filter: blur(60px);
        }

        body::before {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -100px;
            left: -100px;
        }

        body::after {
            width: 300px;
            height: 300px;
            background: var(--accent);
            bottom: -50px;
            right: -50px;
        }

        /* Enhanced Typography */
        h1,
        h2,
        h3,
        h4 {
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font-size: 3rem;
            background: linear-gradient(to right, var(--primary), var(--dark));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }

        @media (min-width: 768px) {
            h1 {
                font-size: 3.5rem;
            }

            h2 {
                font-size: 2.5rem;
            }
        }

        /* Enhanced Buttons */
        .btn {
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--shadow);
            border: none;
        }

        .btn::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-hover);
            z-index: -2;
        }

        .btn::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background-color: var(--primary-hover);
            transition: all 0.3s;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

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

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        /* Enhanced Cards */
        .model-card,
        .service-card,
        .benefit-item,
        .team-card {
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .model-card:hover,
        .service-card:hover,
        .benefit-item:hover,
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .model-card::before,
        .service-card::before,
        .benefit-item::before,
        .team-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
        }

        /* Enhanced Hero Section */
        #hero {
            position: relative;
            overflow: hidden;
        }

        .hero-text {
            position: relative;
            z-index: 2;
        }

        .hero-text p {
            font-size: 1.2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-top: 30px;
            flex-wrap: wrap;
        }

        /* Enhanced Process Steps */
        .process-step {
            transition: var(--transition);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            background: white;
            box-shadow: var(--shadow);
        }

        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .detail-step-number {
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        /* Enhanced Trust Indicators */
        .trust-logos img {
            transition: all 0.5s ease;
            filter: grayscale(100%);
        }

        .trust-logos img:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }

        /* Enhanced Case Study */
        .case-study-item {
            transition: var(--transition);
        }

        .case-study-item:hover {
            transform: translateY(-5px);
        }

        .case-stat-number {
            font-size: 2.5rem;
            background: linear-gradient(to right, var(--primary), var(--accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Enhanced Contact Form */
        .contact-form {
            transition: var(--transition);
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
            outline: none;
        }

        /* Animated Underline for Links */
        .nav-links a {
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }

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

        /* Pulse Animation for CTA */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        #cta {
            animation: pulse 6s infinite;
        }

        /* Floating Animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .model-icon,
        .service-icon,
        .benefit-icon,
        .team-icon {
            animation: float 3s ease-in-out infinite;
        }

        /* Gradient Backgrounds */
        #cta {
            background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
        }

        #hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #bfdbfe 100%);
        }

        /* Responsive Improvements */
        @media (max-width: 768px) {
            .hero-buttons {
                flex-direction: column;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .process-step {
                padding: 20px;
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--secondary);
        }

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

        section {
            padding: 80px 0;
        }

        h1,
        h2,
        h3 {
            margin-bottom: 20px;
            font-weight: 700;
        }

        h1 {
            font-size: 2.8rem;
        }

        h2 {
            font-size: 2.2rem;
        }

        h3 {
            font-size: 1.5rem;
        }

        p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
        }

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

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

        .text-center {
            text-align: center;
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            background: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 40px;
            /* Adjust based on your image proportions */
            width: auto;
            transition: all 0.3s ease;
        }

        /* Make logo slightly larger on hover */
        .logo:hover img {
            transform: scale(1.05);
        }

        /* For the footer logo (if you want to keep it text-based) */
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: block;
            /* Keep the gradient text effect */
            background: linear-gradient(to right, white, #e0f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 20px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary);
            font-weight: 500;
            transition: color 0.3s;
        }

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

        /* Hero Section */
        #hero {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding-top: 150px;
            padding-bottom: 100px;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
        }

        .hero-image {
            flex: 1;
        }

        .hero-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Trust Indicators */
        #trust {
            background: white;
            padding: 40px 0;
        }

        .trust-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
        }

        .trust-logos img {
            height: 40px;
            opacity: 0.7;
            margin: 15px;
            transition: opacity 0.3s;
        }

        .trust-logos img:hover {
            opacity: 1;
        }

        .stats {
            display: flex;
            justify-content: space-around;
            text-align: center;
            margin-top: 40px;
        }

        .stat-item {
            padding: 0 20px;
        }

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


        /* Hiring Models */
        #hiring-models {
            background: white;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .model-card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .model-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .model-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .model-features {
            margin: 20px 0;
        }

        .model-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            list-style-type: none;
        }

        .model-features li:before {
            content: "✓";
            color: var(--primary);
            position: absolute;
            left: 0;
        }

        .model-best-for {
            background: rgba(37, 99, 235, 0.1);
            padding: 10px;
            border-radius: 5px;
            font-size: 0.9rem;
        }

        /* Services */
        #services {
            background: #f8fafc;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* Detailed Hiring Process */
        #detailed-process {
            background: #f8fafc;
        }

        .process-step {
            margin-bottom: 40px;
            border-left: 3px solid var(--primary);
            padding-left: 30px;
            position: relative;
        }

        .step-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

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

        .process-step:nth-child(2) .detail-step-number {
            background: var(--accent);
        }

        .step-content {
            padding-left: 70px;
        }

        .step-content ul {
            margin: 15px 0;
            padding-left: 20px;
        }

        .step-content li {
            margin-bottom: 8px;
            position: relative;
        }

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

        .process-step h3 i {
            margin-right: 10px;
            color: var(--accent);
        }

        .process-cta {
            margin-top: 50px;
            text-align: center;
        }

        /* ATS Platform Section */
        #ats-platform {
            background: white;
        }

        .ats-feature {
            display: flex;
            margin-bottom: 30px;
        }

        .ats-feature-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-right: 20px;
        }

        .ats-feature-content {
            flex: 1;
        }

        .ats-dashboard {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        /* Why Us */
        #why-us {
            background: #f8fafc;
        }

        .benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .benefit-item {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .benefit-icon {
            font-size: 2rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        /* Build Your Team Section */
        #build-team {
            background: white;
        }

        .team-structure {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .team-card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .team-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .team-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .team-roles {
            list-style: none;
        }

        .team-roles li {
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #e2e8f0;
        }

        .team-roles li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .role-title {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 5px;
        }

        .role-desc {
            font-size: 0.9rem;
            color: #64748b;
        }

        .team-process {
            background: #f0f9ff;
            border-radius: 10px;
            padding: 40px;
            border: 1px solid #bfdbfe;
            margin-bottom: 40px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
            gap: 30px;
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .team-structure {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

            .team-process {
                padding: 30px 20px;
            }
        }


        /* Case Study */
        #case-study {
            background: white;
        }

        .case-study-item {
            background: #f8fafc;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            display: flex;
        }

        .case-image {
            flex: 1;
        }

        .case-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-content {
            flex: 1;
            padding: 50px;
        }

        .case-stats {
            display: flex;
            margin-top: 30px;
        }

        .case-stat {
            margin-right: 30px;
        }

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

        /* CTA */
        #cta {
            background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-buttons {
            margin-top: 30px;
        }

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

        .cta-btn-outline {
            background: transparent;
            border: 2px solid white;
            color: white;
        }

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

        /* Contact */
        #contact {
            background: #f8fafc;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 800px;
            margin: 0 auto;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #e2e8f0;
            border-radius: 5px;
            font-size: 1rem;
        }

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

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .footer-column {
            width: 23%;
            min-width: 200px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 20px;
            display: block;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: white;
        }

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

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

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

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }

            .hero-text {
                padding-right: 0;
                margin-bottom: 40px;
                text-align: center;
            }

            .case-study-item {
                flex-direction: column;
            }

            .footer-column {
                width: 48%;
            }
        }

        @media (max-width: 768px) {
            .process-steps {
                flex-direction: column;
            }

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

            .step {
                width: 100%;
                margin-bottom: 40px;
            }

            .step-number {
                margin-bottom: 15px;
            }

            .nav-links {
                display: none;
            }

            h1 {
                font-size: 2.2rem;
            }

            h2 {
                font-size: 1.8rem;
            }

            .step-content {
                padding-left: 20px;
            }

            .ats-feature {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .ats-feature-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Secure Interview Centers Section */
        #interview-centers {
            background: linear-gradient(135deg, #f8fafc 0%, #f0f7ff 100%);
        }

        .centers-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .center-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .center-image {
            height: 200px;
            overflow: hidden;
        }

        .center-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .center-card:hover .center-image img {
            transform: scale(1.05);
        }

        .center-content {
            padding: 30px;
        }

        .center-features {
            margin: 20px 0;
        }

        .center-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 30px;
            list-style-type: none;
        }

        .center-features li:before {
            content: "✓";
            color: var(--primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .center-cta {
            margin-top: 20px;
        }

        .centers-benefits {
            background: rgba(67, 97, 238, 0.05);
            border-radius: 15px;
            padding: 50px;
            margin-top: 50px;
            border: 1px solid rgba(67, 97, 238, 0.1);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .benefit-card {
            background: white;
            padding: 25px;
            border-radius: 12px;
            box-shadow: var(--shadow-sm);
        }

        .benefit-card h4 {
            display: flex;
            align-items: center;
            color: var(--primary);
        }

        .benefit-card h4 i {
            margin-right: 15px;
            color: var(--primary);
        }

        @media (max-width: 768px) {
            .centers-benefits {
                padding: 30px;
            }
        }
