* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0E27;
    color: white;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #00D4FF 0%, #FF00A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-strong {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D4FF, #FF00A0);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #00D4FF 0%, #FF00A0 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.stat-number {
    background: linear-gradient(135deg, #00D4FF 0%, #FF00A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: rgba(0, 212, 255, 0.5);
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.training-module {
    transition: all 0.3s ease;
}

.training-module:hover {
    transform: scale(1.02);
    border-color: rgba(0, 212, 255, 0.5);
}

.consultancy-pillar {
    position: relative;
    overflow: hidden;
}

.consultancy-pillar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.7s;
}

.consultancy-pillar:hover::before {
    left: 100%;
}

/* Tailwind-like utility classes for colors */
.bg-hyper-dark { background-color: #0A0E27; }
.bg-hyper-navy { background-color: #0F172A; }
.text-hyper-cyan { color: #00D4FF; }
.text-hyper-magenta { color: #FF00A0; }
.bg-hyper-cyan { background-color: #00D4FF; }
.bg-hyper-magenta { background-color: #FF00A0; }
.border-hyper-cyan { border-color: #00D4FF; }
.border-hyper-magenta { border-color: #FF00A0; }

/* Animation delays */
.animation-delay-2000 { animation-delay: 2s; }