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

/* Canvas animation styles */
#heroCanvas {
    opacity: 0.3;
}

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

/* Service card hover effect */
.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);
}

/* Product card hover effect */
.product-card:hover {
    transform: scale(1.02);
}

/* Button hover effects */
.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Animation for mobile menu */
.mobile-menu-open {
    display: block !important;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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