
          /* Custom styles for the website */
body {
    scroll-behavior: smooth;
}

/* 3D Floating Text Effect */
@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateZ(0);
        text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #aaa, 0 4px 0 #999, 0 5px 0 #888;
    }
    50% { 
        transform: translateY(-10px) translateZ(10px);
        text-shadow: 0 5px 0 #ccc, 0 10px 0 #c9c9c9, 0 15px 0 #aaa, 0 20px 0 #999, 0 25px 0 #888;
    }
}
.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Blur Focus Text Effect */
@keyframes blur-focus {
    0%, 100% { 
        filter: blur(5px); 
        opacity: 0.7; 
    }
    50% { 
        filter: blur(0); 
        opacity: 1; 
    }
}
.animate-blur-focus {
    animation: blur-focus 4s ease-in-out infinite;
}

/* Outline text effect */
.outline-text {
    position: relative;
    color: transparent;
}

.outline-text::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: transparent;
    -webkit-text-stroke: 2px #ffffff;
}

/* Mask text effect */
.mask-text {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animation for hero section elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.25rem;
    }
    
    #mobileMenu.show {
        display: block;
    }
}

/* Canvas container styling */
#heroCanvas {
    z-index: 0;
}

/* Additional styling for visual effects */
.gradient-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

/* Card hover effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Button animations */
.btn-hover {
    transition: all 0.3s ease;
}

.btn-hover:hover {
    transform: scale(1.05);
}

/* Retro text effect */
.retro-text {
    text-shadow: 4px 4px 0px #bdbdbd, 7px 7px 0px #999, 10px 10px 0px #777;
}

/* Typing animation effect */
@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}
@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: orange; }
}
.animate-typing {
    overflow: hidden;
    border-right: .15em solid orange;
    white-space: nowrap;
    animation: typing 3.5s steps(30, end), blink-caret .5s step-end infinite;
}
        