        /* Our Recruiters Section */
        .recruiters-section {
            background: linear-gradient(135deg, #0d2137 0%, #1a3a5c 100%);
            padding: 60px 15px;
            position: relative;
            overflow: hidden;
        }

        .recruiters-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(240, 165, 0, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .recruiters-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(44, 90, 160, 0.04) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .recruiters-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .recruiters-title {
            color: white;
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
            animation: fadeInDown 0.8s ease-out;
        }

        /* Recruiter Rows */
        .recruiters-row {
            margin-bottom: 30px;
            overflow: hidden;
            position: relative;
            height: 100px;
            background: rgba(255, 255, 255, 0.05);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
        }

        .recruiters-track {
            display: flex;
            gap: 20px;
            animation-duration: 30s;
            animation-iteration-count: infinite;
            animation-timing-function: linear;
            padding: 10px 0;
        }

        .scroll-right {
            animation-name: scrollRight;
            animation-delay: 0s;
        }

        .scroll-left {
            animation-name: scrollLeft;
            animation-delay: -10s;
        }

        /* Stagger animation delays for each row */
        .recruiters-row:nth-child(2) .recruiters-track {
            animation-delay: -10s;
        }

        .recruiters-row:nth-child(3) .recruiters-track {
            animation-delay: -20s;
        }

        .recruiters-row:nth-child(4) .recruiters-track {
            animation-delay: -5s;
        }

        @keyframes scrollRight {
            0% {
                transform: translateX(-50%);
            }
            100% {
                transform: translateX(0);
            }
        }

        @keyframes scrollLeft {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .recruiter-logo-item {
            flex: 0 0 auto;
            height: 80px;
            min-width: 150px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .recruiter-logo-item:hover {
            transform: scale(1.08) translateY(-5px);
            box-shadow: 0 10px 25px rgba(240, 165, 0, 0.3);
        }

        .recruiter-logo-item img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Responsive Design for Recruiters */
        @media (max-width: 1200px) {
            .recruiters-title {
                font-size: 36px;
            }
            
            .recruiters-track {
                animation-duration: 25s;
            }
            
            .recruiter-logo-item {
                min-width: 140px;
                height: 75px;
            }
        }

        @media (max-width: 768px) {
            .recruiters-section {
                padding: 40px 15px;
            }
            
            .recruiters-title {
                font-size: 28px;
                margin-bottom: 35px;
            }
            
            .recruiters-row {
                height: 80px;
                margin-bottom: 20px;
            }
            
            .recruiters-track {
                animation-duration: 20s;
            }
            
            .recruiter-logo-item {
                min-width: 120px;
                height: 65px;
            }
        }

        @media (max-width: 480px) {
            .recruiters-section {
                padding: 30px 10px;
            }
            
            .recruiters-title {
                font-size: 24px;
                margin-bottom: 25px;
            }
            
            .recruiters-row {
                height: 70px;
                margin-bottom: 15px;
            }
            
            .recruiters-track {
                animation-duration: 18s;
                gap: 15px;
            }
            
            .recruiter-logo-item {
                min-width: 100px;
                height: 55px;
            }
        }

        .recruiter-stats {
            background: rgba(44, 90, 160, 0.05);
            padding: 8px 15px;
            border-radius: 20px;
            margin-top: 10px;
        }

        .recruiter-stats span {
            color: #2c5aa0;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .recruiter-stats i {
            color: #f0a500;
            font-size: 12px;
        }

        .recruiters-stats-overall {
            margin-top: 40px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(44, 90, 160, 0.05) 0%, rgba(240, 165, 0, 0.03) 100%);
            border-radius: 15px;
            border: 1px solid rgba(44, 90, 160, 0.1);
            animation: slideDown 0.6s ease-out;
            color:white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
            color:white;
        }

        .stat-item {
            text-align: center;
            padding: 8px;
            animation: slideUp 0.6s ease-out both;
            color:white;
        }

        .stat-item:nth-child(1) { animation-delay: 0s; }
        .stat-item:nth-child(2) { animation-delay: 0.1s; }
        .stat-item:nth-child(3) { animation-delay: 0.2s; }
        .stat-item:nth-child(4) { animation-delay: 0.3s; }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .stat-number {
            color: white;
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 8px;
            line-height: 1;
            animation: slideInUp 0.6s ease-out;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stat-number.animate {
            animation: countUp 2s ease-out forwards;
        }

        @keyframes countUp {
            from {
                opacity: 0;
                transform: scale(0.5);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-label {
            color: white;
            font-size: 16px;
            font-weight: 600;
        }

        /* Navigation arrows for recruiters */
        .recruiter-scroll-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 45px;
            height: 45px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            cursor: pointer;
            z-index: 10;
            transition: all 0.3s ease;
            border: none;
            color: #f0a500;
            font-size: 18px;
        }

        .recruiter-scroll-nav:hover {
            background: #f0a500;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .recruiter-scroll-nav.prev {
            left: 10px;
        }

        .recruiter-scroll-nav.next {
            right: 10px;
        }

        .recruiter-scroll-nav.hidden {
            display: none;
        }

        /* Responsive Design for Recruiters */
        @media (max-width: 1200px) {
            .recruiters-title {
                font-size: 36px;
            }
            
            .recruiter-card {
                flex: 0 0 200px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }

        @media (max-width: 768px) {
            .recruiters-section {
                padding: 60px 15px;
            }
            
            .recruiters-title {
                font-size: 32px;
            }
            
            .recruiters-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }
            
            .recruiters-scroll {
                gap: 20px;
                padding: 15px;
            }
            
            .recruiter-card {
                flex: 0 0 180px;
                padding: 25px 15px;
            }
            
            .recruiter-name {
                font-size: 16px;
            }
            
            .recruiter-desc {
                font-size: 13px;
            }
            
            .recruiter-scroll-nav {
                display: none;
            }
            
            .recruiters-scroll-container {
                margin: 0 -15px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .stat-item {
                padding: 15px;
            }
            
            .stat-number {
                font-size: 32px;
            }
            
            .stat-label {
                font-size: 14px;
            }
        }

        @media (max-width: 480px) {
            .recruiters-title {
                font-size: 28px;
            }
            
            .recruiter-card {
                flex: 0 0 160px;
                padding: 20px 12px;
            }
            
            .recruiter-logo {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
        /* Recognition Section */
        .recognition-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
            padding: 80px 15px;
            position: relative;
            overflow: hidden;
        }

        .recognition-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(44, 90, 160, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .recognition-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(240, 165, 0, 0.06) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .recognition-title {
            color: #1a1a1a;
            font-size: 42px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            animation: fadeInDown 0.8s ease-out;
        }

        .recognition-subtitle {
            color: #555;
            font-size: 16px;
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            line-height: 1.7;
            position: relative;
            z-index: 2;
            animation: fadeInUp 0.8s ease-out 0.2s both;
        }

        .recognition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .recognition-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 15px;
            padding: 25px 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid transparent;
            min-height: 130px;
            animation: zoomInUp 0.6s ease-out both;
        }

        .recognition-logo:nth-child(1) { animation-delay: 0.1s; }
        .recognition-logo:nth-child(2) { animation-delay: 0.15s; }
        .recognition-logo:nth-child(3) { animation-delay: 0.2s; }
        .recognition-logo:nth-child(4) { animation-delay: 0.25s; }
        .recognition-logo:nth-child(5) { animation-delay: 0.3s; }
        .recognition-logo:nth-child(6) { animation-delay: 0.35s; }
        .recognition-logo:nth-child(7) { animation-delay: 0.4s; }
        .recognition-logo:nth-child(8) { animation-delay: 0.45s; }
        .recognition-logo:nth-child(9) { animation-delay: 0.5s; }
        .recognition-logo:nth-child(10) { animation-delay: 0.55s; }
        .recognition-logo:nth-child(11) { animation-delay: 0.6s; }
        .recognition-logo:nth-child(12) { animation-delay: 0.65s; }

        .recognition-logo:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
            border-color: #2c5aa0;
        }

        .recognition-logo img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
        }

        /* Responsive Design for Recognition */
        @media (max-width: 1200px) {
            .recognition-title {
                font-size: 36px;
            }
            
            .recognition-grid {
                grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .recognition-section {
                padding: 60px 15px;
            }
            
            .recognition-title {
                font-size: 32px;
                margin-bottom: 12px;
            }
            
            .recognition-subtitle {
                font-size: 15px;
                margin-bottom: 45px;
            }
            
            .recognition-grid {
                grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
                gap: 20px;
            }
            
            .recognition-logo {
                padding: 20px 12px;
                min-height: 120px;
            }
        }

        @media (max-width: 480px) {
            .recognition-section {
                padding: 40px 15px;
            }
            
            .recognition-title {
                font-size: 26px;
                margin-bottom: 10px;
            }
            
            .recognition-subtitle {
                font-size: 14px;
                margin-bottom: 35px;
            }
            
            .recognition-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
            
            .recognition-logo {
                padding: 15px 10px;
                min-height: 100px;
                border-radius: 10px;
            }
        }