<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HR Networks - Future of Call Centers</title>
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Rajdhani:wght@300;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<style>
/* Reset and Base Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
cursor: none;
}
:root {
--neon-cyan: #0ff;
--neon-blue: #0066ff;
--neon-purple: #a100ff;
--dark-bg: #0a0a12;
}
body {
font-family: 'Rajdhani', sans-serif;
background: var(--dark-bg);
color: #fff;
overflow-x: hidden;
}
/* Preloader */
#preloader {
position: fixed;
width: 100%;
height: 100%;
background: var(--dark-bg);
z-index: 9999;
display: flex;
justify-content: center;
align-items: center;
}
.loader {
width: 48px;
height: 48px;
border: 3px solid var(--neon-cyan);
border-radius: 50%;
border-top-color: transparent;
animation: spin 1s linear infinite;
}
/* Navigation */
.nav-container {
position: fixed;
top: 0;
width: 100%;
background: rgba(10, 10, 18, 0.9);
backdrop-filter: blur(10px);
z-index: 1000;
border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}
/* Hero Section */
.hero {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: radial-gradient(circle at center, rgba(0, 102, 255, 0.1) 0%, transparent 60%);
}
.hero-title {
font-family: 'Orbitron', sans-serif;
font-size: 4rem;
text-align: center;
background: linear-gradient(45deg, var(--neon-cyan), var(--neon-blue));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
border-right: 2px solid var(--neon-cyan);
animation: typing 3s steps(40) 1s 1 normal both,
blink-caret 0.75s step-end infinite;
}
/* 3D Card Hover Effects */
.service-card {
background: rgba(255, 255, 255, 0.05);
border-radius: 15px;
padding: 2rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(0, 255, 255, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
transform: translateY(-10px) rotateX(10deg) rotateY(-5deg);
box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}
/* Neon Button Styles */
.cta-button {
background: linear-gradient(45deg, var(--neon-blue), var(--neon-purple));
padding: 1rem 2rem;
border: none;
border-radius: 50px;
color: white;
font-family: 'Orbitron', sans-serif;
position: relative;
overflow: hidden;
transition: 0.3s;
}
.cta-button:hover {
transform: scale(1.05);
box-shadow: 0 0 30px rgba(0, 102, 255, 0.5);
}
/* Custom Cursor */
.cursor {
width: 20px;
height: 20px;
border: 2px solid var(--neon-cyan);
border-radius: 50%;
position: fixed;
pointer-events: none;
mix-blend-mode: difference;
transition: transform 0.3s ease;
}
/* Animations */
@keyframes spin {
to { transform: rotate(360deg); }
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: var(--neon-cyan); }
}
</style>
</head>
<body>
<!-- Preloader -->
<div id="preloader">
<div class="loader"></div>
</div>
<!-- Navigation -->
<nav class="nav-container">
<!-- Navigation content -->
</nav>
<!-- Hero Section -->
<section class="hero">
<h1 class="hero-title">Welcome to HR Networks – The Future of Call Centers</h1>
<button class="cta-button">Get Started</button>
</section>
<!-- Other sections... -->
<script>
// Preloader
window.onload = () => {
document.getElementById('preloader').style.display = 'none';
};
// Custom Cursor
const cursor = document.createElement('div');
cursor.classList.add('cursor');
document.body.appendChild(cursor);
document.addEventListener('mousemove', (e) => {
cursor.style.left = e.clientX + 'px';
cursor.style.top = e.clientY + 'px';
});
// Smooth Scroll
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});
</script>
</body>
</html>