:root{
    --primary: #8a13eb;
    --primary-glow: #8914e9;
    --primary-fade: #691fca1c;
    --secondary: #fa6aff;
        --text: #c7c7c7;
        --card-bg: #121212;
        --text-muted: #a8a8a8;
       --dark: #000;
    }
     * {
            margin: 0; 
            padding: 0;
            box-sizing: border-box;
            font-family: 'PSemiBold';
            
        }
        @keyframes animates {
            0%{
                transform: translateY(20px);
            }
            100%{
                transform: translateY(0px);
            }
        }

    body{
        /* background: #000; */
        min-height: 100vh;
        color: var(--text);
        position: relative;
        background: linear-gradient(135deg, #000000, #320836, #460d75);
        
    }
   
    .TopNav{
        position: fixed;
        top: 0px;
        background-color: var(--primary-fade);
        align-self: center;
        height: fit-content;
        backdrop-filter: blur(5px);
        display: flex;
        flex-direction: row;
        z-index: 9999; 
        left: 0px;right: 0px;
        padding-block: 10px;
    }
    .TopNav .logo{
        height: 25px;
        border-radius: 100%;
        align-self: center;
        margin-left: 10px;
        animation: fa-bounce 1s;
        /* box-shadow: 1px 1px 5px var(--primary-glow);  */
        
    }
    .TopNav .logoName{
        /* color: var(--primary); */
        font-weight: 600;
        font-size: 20px;
        align-self: center;
         margin-left: 5px;
         position: relative;
         font-family: 'PSemiBold';
         background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
    }
    
    .TopNav nav{
        position: absolute;
        right: 10px;
        align-self: center;
        width: fit-content;
        display: flex;
        flex-direction: row;
    }
    .TopNav .navBox:hover nav{
        display: flex;
    }
    nav #nav-menu {
        display: flex;
        list-style: none;
        align-self: center;
        z-index: 999999;
    }

    nav #nav-menu li {
        margin-left: 2rem;
        display: flex;
        align-self: center;
        flex-direction: row;
    }

    nav #nav-menu li a {
        text-decoration: none;
        color: var(--text);
        font-weight: 500;
        transition: color 0.3s;
        text-wrap: nowrap;
        display: flex;
        align-self: center;
        position: relative;
    }
    nav #nav-menu li a:hover{
        color: var(--primary);
    }
    nav #nav-menu li a:hover::before{
        content: '';
        background: var(--primary);
        /* position: absolute; */
        /* bottom: -5px; */
        height: 10px;
        width: 10px;
        align-self: center;
        border-radius: 100%;
        margin-right: 5px;
        /* animation: width 1s; */
    }
    nav #nav-menu li a.btn:hover::before{
        content: '';
        background: none;
    }

    .mobile-menu-btn {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .TopNav .navBox button{
        background: transparent;
        border: none;
        color: var(--text);
        font-size: 25px;
        font-weight: 800;
        position: absolute;
        right: 0;
        align-self: center;
        margin-right: 10px;


    }
    .TopNav .navBox nav{
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 10px;
        align-self: center;
        background: #000000;
        padding: 15px 15px;
        gap: 10px;
        border-radius: 20px;
        
        box-shadow: 0 0 4px var(--primary);

    }
    .TopNav .navBox nav span{
        color: var(--text);
        font-size: 18px;
        position: relative;
     
    }
    .TopNav .navBox nav span:hover{
        color: var(--primary);
        transform: scale(1.1);
        transition: 1s;
    }
    .TopNav .navBox nav span:hover::before{
        content: '';
        background: var(--primary);
       height: 10px;
        width: 10px;
        align-self: center;
        border-radius: 100%;
        margin-right: 5px;
    }

/* Buttons */
        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: animates 1s;
        }
        
        .btn-primary {
            /* background: var(--primary); */
            color: var(--text);
            border: none;
            background: linear-gradient(to right, var(--primary), var(--secondary));
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        
        .btn-outline:hover {
            transform: translateY(-2px);
            transform: translateY(-2px);
        }

    /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 5% 5%;
            position: relative;
            overflow: hidden; 
            padding-top: 4rem; 
            padding-bottom: 4rem;
        }
        
        .hero-content {
             
            max-width: 600px;
            z-index: 2;
        }
        
        .hero h1 {
             animation: animates 1s;
            font-size: 8rem;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }
        
        .hero h1 span, .neon-glow {
            /* color: var(--primary); */
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            line-height: 1.1;
             animation: animates 2s;
        }
        
        .hero-btns {
            display: flex;
            gap: 1.5rem;
        }
        
        .hero-image {
            position: absolute;
            right: 5%;
            top: 20%;
            transform: translateY(-50%);
            width: 600px;
            height: 100%;
            z-index: 999;
            opacity: 1;  

        }
        .hero-image img{
            height: 100%;
            /* filter: drop-shadow(0 0 9px var(--primary-glow)); */

        }
        .hero-image2 {
                position: absolute;
                right: auto;
                top: auto;
                transform: none;
                margin-top: 3rem;
                width: 100%;
                max-width: 400px;
                height: auto;
                z-index: 0;
                overflow: hidden;
                max-height: 400px;
                opacity: 0.6;
            }
        .floating-coins {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }
        
        .coin {
            position: absolute;
            width: 80px;
            height: 80px;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.7;
            filter: drop-shadow(0 0 10px var(--primary-glow));
        }
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .floating {
            animation: float 6s ease-in-out infinite;
        }
        

        /*  */
        .toggle-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}
.toggle-card {
    background-color: var(--card-bg);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.toggle-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px var(--primary-glow);
    background: var(--primary);
    color: #fff;
}
.toggle-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}
.toggle-card button {
    margin-top: 18px;
    border-radius: 8px;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    background: var(--card-bg);
    transition: background 0.2s;
}
.toggle-card button:hover {
    color: #fff;
    background: var(--card-bg);
    transform: scale(1.1);
}
/* Features Section */
        .features {
            padding: 6rem 5%;
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }
        
        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-10px) scale(1.1);
            box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background-size: 400%;
            border-radius: 16px;
            opacity: 0;
            transition: 0.5s;
            background: linear-gradient(60deg, var(--primary), var(--card-bg) 60%);
        }
        
        .feature-card:hover::before {
            opacity: 1;
            animation: animate 3s linear infinite;
            
        }
        
        @keyframes animate {
            0% { background-position: 0 0; }
            50% { background-position: 400% 0; }
            100% { background-position: 0 0; }
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: rgba(0, 255, 149, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.2rem;
            color: var(--primary);
        }
        .feature-icon i {
            font-size: 2.2rem;
            color: var(--primary);
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .feature-card p {
            color: var(--text-muted);
            line-height: 1.6;
        }
/* How it Works */
        .how-it-works {
            padding: 8rem 5%;
            position: relative;
            overflow: hidden;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }
        
        .step {
            text-align: center;
            width: 30%;
            position: relative;
            z-index: 2;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 5px 15px rgba(108, 66, 245, 0.4);
        }
        
        .step-connector {
            position: absolute;
            top: 30px;
            left: 15%;
            width: 70%;
            height: 3px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            z-index: 1;
        }
/* Investment Plans */
        .plans {
            padding: 6rem 5%;
            background-color: var(--darker-bg);
        }
        
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }
        
        .plan-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            min-width: 300px;
            animation: animates 1s;
        }
        
        .plan-card.popular {
            border: 2px solid var(--primary);
            box-shadow: 0 0 20px var(--primary-glow);
        }
        
        .popular-badge {
            position: absolute;
            top: 0;
            right: 2rem;
            background-color: var(--primary);
            color: var(--dark-bg);
            padding: 0.5rem 1.5rem;
            font-weight: 600;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        
        .plan-card h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }
        
        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        .plan-price span {
            font-size: 1rem;
            color: var(--text-muted);
        }
        
        .plan-features {
            margin-bottom: 2.5rem;
        }
        
        .plan-features li {
            list-style: none;
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-muted);
        }
        
        .plan-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
        }

         /* Testimonials */
        .testimonials {
            padding: 6rem 5%;
            position: relative;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 3rem auto 0;
        }
        
        .testimonial-card {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 1rem;
            left: 1.5rem;
            font-size: 5rem;
            color: rgba(0, 255, 157, 0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-content {
            margin-bottom: 1.5rem;
            font-style: italic;
            line-height: 1.6;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid var(--primary);
        }
        
        .author-info h4 {
            font-size: 1.1rem;
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        a{
            text-decoration: none;
        }
        /* CTA Section */
        .cta {
            padding: 6rem 5%;
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 2.5rem;
            font-size: 1.1rem;
        }
        
        /* Footer */
        footer {
            background: rgba(255, 255, 255, 0.1);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(0, 255, 157, 0.1);
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-col h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }
        
        .footer-col ul {
            list-style: none;
        }
        
        .footer-col ul li {
            margin-bottom: 0.8rem;
        }
        
        .footer-col ul li a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-col ul li a:hover {
            color: var(--primary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            font-size: 30px;
            color: #fff;
        }
        
        .social-link:hover {
            background-color: var(--primary);
            color: var(--dark-bg);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
        }




 .container-t {
      width: 90%;
      max-width: 500px;
      position: relative;
      z-index: 9999; 
      align-self: center;
    display: none;
    }

    .testimonial {
      display: flex;
      align-self: center;
      gap: 15px;
      background: #1a1a1a;
      padding: 10px;
      border-radius: 15px;
      box-shadow: 0 20px 40px rgba(0,0,0,0.5);
      position: absolute;
      width: 100%;
      opacity: 0;
      filter: blur(10px);
      transform: translateY(20px);
      animation: fadeInOut 6s ease-in-out forwards;
    }

    .testimonial img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--primary);
    }

    .info {
      flex: 1;
    }

    .info h4 {
      margin: 0;
      font-size: 16px;
      color: var(--primary);
    }

    .info small {
      color: #ccc;
      display: block;
      margin-bottom: 8px;
    }

    .info p {
      margin: 0;
      font-size: 12px;
      color: #eee;
    }

    @keyframes fadeInOut {
      0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
      }
      10%, 90% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
      }
      100% {
        opacity: 0;
        transform: translateY(-20px);
        filter: blur(10px);
      }
    }
 /* Responsive */
        @media (max-width: 2024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .hero-image {
                width: 450px;
                /* height: 450px; */
                opacity: 1;
            }
            
            .plans-grid{
                flex-direction: row;
                display: flex;
            }
        }
        
        @media (max-width: 768px) {
            section{
    padding: 1rem 2%;
    height: fit-content;
   
}
            .hero {
                flex-direction: column;
                text-align: center;
                padding-top: 8rem;
                padding-bottom: 4rem;
            }
            .navTog{
                flex-direction: column;
                position: relative;
            }
            .navTog span{
                display: flex;
            }
            .navTog:hover div.box{
                display: block;
            }
            .navTog div.box{
                display: none;
                position: absolute;
                right: 0px;
                top: 10px;
                padding: 10px 15px;
                background: #050505;
                border-radius: 20px; 
                width: 130px;
            }
            .navTog .Tog{
                flex-direction: column;
            }
            .toggle-section{
                flex-direction: column;
            }

            .hero-content {
                max-width: 100%;
            }
            
            .hero-btns {
                justify-content: center;
            }
            
            
            .hero-image {
                position: relative;
                right: auto;
                top: auto;
                transform: none;
                margin-top: 2rem;
                width: 100%;
                max-width: 400px;
                height: auto;
            }
            
            .nav-links {
                margin-bottom: 10px; 
            }
            .plans-grid{
                flex-direction: row;
                display: flex;
            }
            .steps {
                flex-direction: column;
                align-items: center;
                gap: 3rem;
            }
            
            .step {
                width: 100%;
            }
            
            .step-connector {
                display: none;
            }
        }
        
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .btn {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .hero-btns {
                flex-direction: row;
                gap: 1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            .plans-grid{
                display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

    .hero-content {
        /* margin-bottom: 1rem; */
    }

    .cta-buttons {
        justify-content: center;
    }

    .steps::before {
        display: none;
    }

    .step {
        flex: 100%;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    nav #nav-menu {
        position: fixed;
        top: 50px;
        display: none;
        left: 0;
        width: 100%;
        height: 60vh;
        background-color: var(--dark);
        backdrop-filter: blur(5px);
        flex-direction: column;
        align-items: center;
        padding-top: 2rem;
        animation: fromTop 3s;
        overflow-y: hidden;
        
    }
@keyframes fromTop {
    0%{
        height: 10vh;
    }
}
    nav #nav-menu.active {
        display: flex;
    }

    nav #nav-menu li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    .section-title {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
    .section-title p {
        color: #777;
        max-width: 700px;
        margin: 0 auto;
    }

    .trading-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .currency-selector {
        margin-top: 1rem;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
        div.support{
        position: fixed;
        top: 80%;
        right: 15px;
        height: 56px;
        width: 56px;
        border-radius: 50%;
        background: linear-gradient(to right, var(--primary), var(--secondary));
        z-index: 99999;
        box-shadow: 0 0 9px #050505;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
        animation: gingle 1s;
    }
    div.support:hover {
        background: #0a0a0a;
        border: 4px solid var(--primary);
        box-shadow: 0 0 19px var(--primary);
        transform: translateY(-10px) scale(1.1);
        transition: 0.3s;
    }
    div.support i.uil-comments {
        color: #e9e9e9;
        font-size: 2rem;
        transition: color 0.3s;
    }
    div.support div.message{
        position: absolute;
        top: -130px;
        left: -200px;  
        padding: 5px 5px;
        text-align: center;
        background: #2d3436;
        border-radius: 10px;
        display: flex; 
        flex-direction: column;
    }
    .welcome-message{
        margin:5px auto;
        max-width:300px;
        background:#23272f;
        color:var(--text-muted);
        
        padding: 10px 10px;
        border-radius:12px;
        text-align:center;
    }
    div.message .icon{
        /* padding: 5px; */
        /* background: var(--text-muted); */
        border-radius: 100%;
        display: flex;
        width: fit-content;
        height: fit-content;
    }
    div.message .icon i{
        font-size: 35px;
    }
    div.support .id{
        position: absolute;
        top: -30px;
        left: -50px;  
        width: 80px; 
        padding: 5px 5px;
        text-align: center;
        background: #2d3436;
        border-radius: 10px;
        display: none;
    }
    div.support:hover .id{
        display: flex;
    }
    div.support .unread-count{
        padding: 2px 5px;
        background: #b10b2f;
        font-size: 13px;
        border-radius: 20px;
        position: absolute;
        bottom: -5px;
        left: 7px;
        font-weight: 700;
        
    }
    div.support:hover i.uil-comments {
        color: var(--primary);
    }
   
    @keyframes gingle {
        0% { transform: translateY(-10px) scale(1.1);}
        50% { transform: translateY(10px) scale(0.9);}
        100% { transform: translateY(-10px) scale(1.1);}
    }
 /* Animated Circles Background */
.circles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.circles li {
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animating 25s linear infinite;
    bottom: -150px;
    border-radius: 50%;
}

.circles li:nth-child(1) {
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.circles li:nth-child(2) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3) {
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4) {
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5) {
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6) {
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7) {
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8) {
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9) {
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10) {
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}

@keyframes animating {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}
