 .bg-animated {
        --stripe-color: #fff;
        --bg: var(--stripe-color);
        --maincolor: var(--bg);

        --stripes: repeating-linear-gradient(
            100deg,
            var(--stripe-color) 0%,
            var(--stripe-color) 7%,
            transparent 10%,
            transparent 12%,
            var(--stripe-color) 16%
        );

        --rainbow: repeating-linear-gradient(
            100deg,
            #60a5fa 10%,
            #e879f9 15%,
            #60a5fa 20%,
            #5eead4 25%,
            #60a5fa 30%
        );

        background-image: var(--stripes), var(--rainbow);
        background-size: 300%, 200%;
        background-position: 50% 50%, 50% 50%;
        animation: smoothBg 60s linear infinite;

        filter: blur(10px) invert(100%);
        mask-image: radial-gradient(ellipse at 100% 0%, black 40%, transparent 70%);
    }

    @keyframes smoothBg {
        from {
            background-position: 50% 50%, 50% 50%;
        }
        to {
            background-position: 350% 50%, 350% 50%;
        }
    }
@layer utilities {
  .shadow-soft-glow {
    box-shadow: 0 0 28px 2px rgba(186, 252, 3, 0.3);
    transition: box-shadow 0.3s ease-in-out;
  }
  
  .shadow-soft-glow:hover {
    box-shadow: 0 0 12px 4px rgba(186, 252, 3, 0.4);
  }
}


html, body {
    overflow-x: hidden;
}

/* Background Gradients */


/* Hover Effects */
.hover-scale, .card-hover, .btn-hover, .navbar, .nav-link {
    transition: all 0.3s ease;
}

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

.card-hover:hover, .hover-effect:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.btn-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(155, 255, 41, 0.3);
}

.btn-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.5s;
}

.btn-hover:hover::before {
    left: 100%;
}

/* Text Shadows */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Nav Link Underline */
.nav-link {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1rem;
    overflow: hidden;
}

.nav-link-text {
    position: relative;
    z-index: 10;
    transition: color 0.3s ease-in-out;
}

.nav-link-hover {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: #bafc03;
    opacity: 0;
    transform: translateX(-50%);
    transition: opacity 0.3s ease-in-out;
    border-radius: 8px;
}

.nav-link:hover .nav-link-hover {
    opacity: 0.15;
}

.nav-link:hover .nav-link-text {
    color: #bafc03;
}


/* Fade-in Animation */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Navbar Hover Effect */
.navbar:hover {
    box-shadow: 0 10px 30px rgba(155, 255, 41, 0.1);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: block;
}

@media (max-width: 768px) {
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(17, 24, 39, 0.95);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
    }
}

/* Scrolling Logo Animation */
@keyframes scrollLogo {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}



@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

.orokin-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background-color: #000;
    font-family: 'Roboto', sans-serif;
}

#orokinWaveCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.orokin-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orokin-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.orokin-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: #bafc03;
}

.orokin-subtitle {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #bafc03;
}

.orokin-text {
    color: #f0f0f0;
    margin-bottom: 1rem;
}

.orokin-card {
    background-color: rgba(17, 17, 17, 0.7);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.orokin-card:hover {
    background-color: rgba(26, 26, 26, 0.9);
}

.orokin-icon {
    font-size: 2rem;
    color: #bafc03;
    margin-bottom: 1rem;
}

.orokin-button {
    display: inline-block;
    background-color: #bafc03;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #bafc03;
}

.orokin-button:hover {
    background-color: transparent;
    color: #bafc03;
}

.orokin-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .orokin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .orokin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.orokin-backdrop-blur {
    backdrop-filter: blur(10px);
}

.orokin-transition {
    transition: all 0.3s ease;
}

  @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }
        .logo-container {
            position: relative;
            overflow: hidden;
        }
        .logo-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.1) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: rotate(30deg);
            animation: shimmer 10s linear infinite;
            pointer-events: none;
        }
        .logo-container:hover::before {
            animation-duration: 5s;
        }
        .logo-svg {
            transition: filter 0.3s ease;
        }
        .logo-container:hover .logo-svg {
            filter: brightness(1.2) contrast(1.1);}



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

.animate-fadeInUp {
  animation: fadeInUp 0.5s ease-out forwards;
}