/* Custom Tailwind utilities and styles */

/* Custom Utilities & Animations */
body {
    background-color: #0B0F19;
    color: #B0BEC5;
    overflow-x: hidden;
}

.gradient-text {
    background: linear-gradient(135deg, #00D2FF 0%, #0077FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-nav {
    background: rgba(11, 15, 25, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.1);
}

.icon-gradient {
    background: linear-gradient(135deg, #00D2FF 0%, #0077FF 100%);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.2);
}

/* Background Glow Effect */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,210,255,0.1) 0%, rgba(11,15,25,0) 70%);
    top: -200px;
    left: -200px;
    z-index: -1;
    border-radius: 50%;
}