/* ================= contact.css ================= */

/* Base Background Gradient Mesh */
.bg-gradient-mesh {
    background-color: #050505;
    background-image: 
        radial-gradient(at 0% 0%, hsla(263, 70%, 15%, 0.6) 0, transparent 50%), 
        radial-gradient(at 100% 100%, hsla(263, 70%, 10%, 0.6) 0, transparent 50%);
}

/* Glassmorphism effects */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-aura {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0) 70%);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; filter: blur(40px); }
    50% { opacity: 1; filter: blur(60px); }
}
.animate-glow-pulse {
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.98); }
}
.animate-pulse-subtle {
    animation: pulse-subtle 3s infinite ease-in-out;
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px rgba(168, 85, 247, 0.5), 0 0 20px rgba(168, 85, 247, 0.3); }
    50% { text-shadow: 0 0 20px rgba(168, 85, 247, 0.8), 0 0 30px rgba(168, 85, 247, 0.5); }
}
.neon-glow {
    animation: glow 3s ease-in-out infinite;
}

/* Giant 14 Icon styling */
.icon-14 {
    font-size: 12rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 10px 15px rgba(139, 92, 246, 0.5));
    user-select: none;
    transition: transform 0.1s ease-out;
}

/* Custom scrollbar for calendar lists */
.calendar-scroll::-webkit-scrollbar {
    width: 4px;
}
.calendar-scroll::-webkit-scrollbar-track {
    background: #111;
}
.calendar-scroll::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 10px;
}


@media (max-width:1024px) {
    .icon-14{
        font-size: 9rem;
    }  
}
    


@media (max-width:767px) {
    .icon-14{
        font-size: 7rem;
    }
}