
/* Pulse line animation */
.pulse-wave {
  background: radial-gradient(circle, 
    rgba(255, 77, 77, 0.8) 0%,
    rgba(255, 77, 77, 0.6) 30%,
    rgba(255, 77, 77, 0.4) 50%,
    transparent 70%);
}

/* Particles container */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Custom animations */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

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

.transition-transform {
    transition-property: transform;
}

.duration-300 {
    transition-duration: 300ms;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #ff4d4d;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ff1a1a;
}
/* Section transitions */
.section-transition {
    transition: all 0.3s ease;
}

/* Image hover effects */
.hover-scale {
    transition: transform 0.3s ease;
}
.hover-scale:hover {
    transform: scale(1.03);
}
/* Grid layout */
.fast-grid {
    display: grid;
    width: 100%;
    padding: 0;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .fast-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .fast-grid {
        grid-template-columns: 1fr;
    }
}
/* Responsive ecosystem grid */
.ecosystem-grid {
    display: grid;
    width: 100%;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ecosystem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid > div {
        margin: 0 auto;
        max-width: 100%;
    }
}
/* Custom button hover effects */
.btn-hover-effect {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }

    .ecosystem-grid > div {
        padding: 1.5rem;
    }
}
