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

#heroCanvas {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8, #3b82f6);
}

/* Ensure all elements are visible by default */
* {
    visibility: visible !important;
}

/* Navigation active state */
.active {
    color: #2563eb !important;
    font-weight: 600;
}

/* Animation for service cards */
.service-card {
    transition: all 0.3s ease;
}

.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);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .section-padding {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .mobile-menu {
        display: block;
    }
}
        