
/* Animation for each circle */
@keyframes fade {
    0%, 20% {
        opacity: 1; /* Show the circle */
    }
    20%, 40% {
        opacity: 0; /* Hide the circle */
    }
}

@keyframes transformShape {
    0%, 100% {
        border-radius: 50%; /* Circle */
        transform: scale(1); /* Normal size */
    }
    50% {
        border-radius: 30%; /* Ellipse */
        transform: scale(1.5, 1); /* Make it wider */
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes movingUpDown {
    0% , 100%{ top:0%}
    50% {top: 100%}  
}

@keyframes leftrightJump {
    0%, 50%, 100% {
        top: 50%;
        left: 50%;
    }
    25% {
        top: 75%;
        left: 25% ;
    }
    75%{
        top: 75%;
        left: 75%;
    }
}


@keyframes movingAround {
    0%{
        top: -5%; left: 8%;
        transform: rotate(0deg);
    }
    20%{
        top: 85%; left: 8%;
    }
    50%{ 
        top: 85%; left: 85%;
    }
    70%{
        top:-5%; left: 85%;
    }
    100% {
        top: -5%; left: 8%;
        transform: rotate(360deg); 
    }
}

@keyframes movingAround2 {
    0%{
        top: 82%; left: 8%;
        transform: rotate(0deg);
    }
    50%{ 
        top: 85%; left: 85%;
    }
    70%{
        top:-5%; left: 85%;
    }
    100% {
        top: 82%; left: 8%;
        transform: rotate(360deg); 
    }
}

@keyframes bg_moving_leftright_circle2 {
    0%{
        top:calc(50% - 35px);
        left: 4%;
    }
    50%{
        top: calc(50% - 35px);
        left: 90%;
    }
    100%{
        top: calc(50% - 35px);
        left: 4%;
    }
}


/* Keyframes for the animation */
@keyframes transformStar {
    0%, 100% {
        clip-path: polygon(
            50% 0%, 
            61% 35%, 
            98% 35%, 
            68% 57%, 
            79% 91%, 
            50% 70%, 
            21% 91%, 
            32% 57%, 
            2% 35%, 
            39% 35%
        ); /* Initial star shape */
    }
    50% {
        clip-path: polygon(
            50% 0%, 
            70% 30%, 
            100% 30%, 
            75% 50%, 
            85% 80%, 
            50% 65%, 
            15% 80%, 
            25% 50%, 
            0% 30%, 
            30% 30%
        ); /* Altered star shape */
    }
}

@keyframes transformShape {
    0%, 100% {
        clip-path: circle(50%); /* Circle shape */
    }
    50% {
        clip-path: inset(0) /* ellipse(75% 50%); / * Oval shape */
    }
}


@keyframes scale_rotation {
    0%, 100% {
        transform: scale(1) rotate(0deg);        
    }
    50%{
        transform: scale(1.3) rotate(-15deg);
    }
}

@keyframes changeColor1{
    0% {
        background-color: #ff5733; /* Start color */
    }
    25% {
        background-color: #33c1ff; /* First transition color */
    }
    50% {
        background-color: #75ff33; /* Second transition color */
    }
    75% {
        background-color: #5c5c5c; /* Third transition color */
    }
    100% {
        background-color: #ff5733; /* Back to start color */
    }
}

@keyframes bounce-in-top {
    0% {
      transform: translateY(-500px);
      animation-timing-function: ease-in;
      opacity: 0;
    }
    38% {
      transform: translateY(0);
      animation-timing-function: ease-out;
      opacity: 1;
    }
    55% {
      transform: translateY(-65px);
      animation-timing-function: ease-in;
    }
    72% {
      transform: translateY(0);
      animation-timing-function: ease-out;
    }
    81% {
      transform: translateY(-28px);
      animation-timing-function: ease-in;
    }
    90% {
      transform: translateY(0);
      animation-timing-function: ease-out;
    }
    95% {
      transform: translateY(-8px);
      animation-timing-function: ease-in;
    }
    100% {
      transform: translateY(0);
      animation-timing-function: ease-out;
    }
}

@keyframes rotate-in-diag-2 {
    0% {
      transform: rotate3d(-1, 1, 0, -360deg);
      opacity: 0;
    }
    100% {
      transform: rotate3d(-1, 1, 0, 0deg);
      opacity: 1;
    }
}

@keyframes rotate-in-ver {
    0% {
      transform: rotateY(-360deg);
      opacity: 0;
    }
    100% {
      transform: rotateY(0deg);
      opacity: 1;
    }
}
  

@keyframes rotate-in-center {
    0% {
      transform: rotate(-360deg);
      opacity: 0;
    }
    70%, 100% {
      transform: rotate(0);
      opacity: 1;
    }
}


/* Delay each circle's animation */
.jump-animation { 
    transform: translate(-50%, -50%);
    animation: leftrightJump 8s infinite;
}

.vertical_circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFF;
    margin: 10px 0;
    opacity: 0; /* Start hidden */
    animation: fade 8s infinite; /* Total duration for all circles */
}


.circletTransformShape {
    width: 150px;
    height: 100px;
    border-radius: 50%;
    background-color: #FFF;
    animation: transformShape 8s infinite; /* Total duration for all circles */
}


.circle-container{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    right: 100px;
    z-index: 0;
}

#vcircle1 {
    width: 100px;
    height: 100px;
    animation-delay: 6s; /* Show after 8 seconds */
}

#vcircle2 {
    width: 85px;
    height: 85px;
    animation-delay: 4.5s; /* Show after 6 seconds */
}

#vcircle3 {
    width: 70px;
    height: 70px;
    animation-delay: 3s; /* Show after 4 seconds */
}

#vcircle4 {
    width: 55px;
    height: 55px;
    animation-delay: 1.5s; /* Show after 2 seconds */
}

#vcircle5 {
    width: 40px;
    height: 40px;
    animation-delay: 00s;
}

.horizontal_circle {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    background-color: #FFF;
    margin: 40px;
    animation: fade 8s infinite; /* Total duration for all circles */
}

#horizontal1 { animation-delay: 0s;} 
#horizontal2 { animation-delay: 1s;} 
#horizontal3 { animation-delay: 2s;} 
#horizontal4 { animation-delay: 3s;} 
#horizontal5 { animation-delay: 4s;} 
#horizontal6 { animation-delay: 5s;} 
#horizontal7 { animation-delay: 6s;} 


.workshop-icon-rotate-circle {
    width:  150px;
    height: 150px;
    border: 2px dashed #FFF;
    border-radius: 75px;
    animation: rotation 10s infinite linear;
    position: absolute ;
    right: 0;
}

.workshop-icon-rotate-circle-2 {
    width:  150px;
    height: 150px;
    border: 2px dashed #356ba2;
    border-radius: 75px;
    animation: rotation 20s infinite linear;
    position: absolute ;
    right: 12px;
}

.horizontal2_circle{
    background-color:  #FFF;
    animation: fade 8s infinite; /* Total duration for all circles */
    position: absolute;
    bottom: 10px;
} 

.horizontal2_circle#hc1{
    width: 30px;
    height: 30px;
    border-radius: 15px;
    right: 250px;
    animation-delay: 0s; /* Show after 8 seconds */

}

.horizontal2_circle#hc2{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    right: 190px;
    animation-delay: 1s; /* Show after 8 seconds */

}

.horizontal2_circle#hc3{
    width: 70px;
    height: 70px;
    border-radius: 35px;
    right: 110px;
    animation-delay: 2s; /* Show after 8 seconds */

}

.horizontal2_circle#hc4{
    width: 90px;
    height: 90px;
    border-radius: 45px;
    right: 10px;
    animation-delay: 3s; /* Show after 8 seconds */

}



.horizontal2_circle#hc31{
    width: 30px;
    height: 30px;
    border-radius: 15px;
    right: 150px;
    animation-delay: 0s; /* Show after 8 seconds */

}

.horizontal2_circle#hc32{
    width: 50px;
    height: 50px;
    border-radius: 25px;
    right: 90px;
    animation-delay: 1s; /* Show after 8 seconds */

}

.horizontal2_circle#hc33{
    width: 70px;
    height: 70px;
    border-radius: 35px;
    right: 10px;
    animation-delay: 2s; /* Show after 8 seconds */

}


.container-2{ z-index: 10; position: relative;} 
.relative {    position: relative;}


.circle_blue {
    color: #356ba2;
    background-color: #356ba2;
}

.circle_light_blue {
    color:rgba(127, 184, 242, 0.43);
    background-color: rgba(127, 184, 242, 0.43);
}

.z-index-100{
    z-index: 100 !important;
}

.bg_moving_circle {
    width: 100px;
    height: 100px;
    position: absolute;
    /* background-color: #dc1818; */
    border: 2px dashed red;
    border-radius: 50px; 
    animation: movingAround 8s infinite;

}

.bg_moving_circle2 {
    width: 100px;
    height: 100px;
    position: absolute;
    /* background-color: #dc1818; */
    border: 2px dashed red;
    border-radius: 50px; 
    animation: movingAround2 8s infinite;
}
.bg_moving_retangle2 {
    width: 75px;
    height: 75px;
    position: absolute;
    background-color: #f8b620;
    animation: movingAround2 8s infinite;
    animation-delay: 2s;
    top: 82%; 
    left: 8;
}

.bg_moving_leftright_circle2{
    width: 75px;
    height: 75px;
    position: absolute;
    background-color: #f8b620;
    top: 50%;
    left: 8%;
    animation: bg_moving_leftright_circle2 8s infinite;

}

.star {
    width: 100px; /* Width of the star */
    height: 100px; /* Height of the star */
    background-color: #3498db; /* Star color */
    clip-path: polygon(
        50% 0%, 
        61% 35%, 
        98% 35%, 
        68% 57%, 
        79% 91%, 
        50% 70%, 
        21% 91%, 
        32% 57%, 
        2% 35%, 
        39% 35%
    ); /* Initial star shape */
    animation: transformStar 2s infinite; /* Animation */
}

.shape {
    width: 100px; /* Width of the circle */
    height: 100px; /* Height of the circle */
    background-color: #3498db; /* Shape color */
    clip-path: circle(50%); /* Initial circle shape */
    animation: transformShape 2s infinite; /* Animation */
    animation-timing-function: linear;
}


.bottom_brain {
    position: absolute;
    width:  50px;
    height: 50px;
    /* border: 2px dashed #356ba2;
    border-radius: 75px; */
    animation: scale_rotation 5s infinite linear;
    position: absolute ;
    left: 12px;
    bottom: 12px;
    opacity: 0.25;
}
.top_ai{
    animation: scale_rotation 5s infinite linear;
    position: absolute;
    width:  50px;
    height: 50px;
    left: 12px;
    top:12px;
    opacity: 0.25;

}
.top_right_workshop{
    animation: scale_rotation 5s infinite linear;
    position: absolute;
    width:  50px;
    height: 50px;
    left: 12px;
    right: 12px;
    opacity: 0.25;

}
.changeColor1 {
    animation: changeColor1 5s infinite;
    width: 100px;
    height: 100px;
} 

.moving_circle_box {
    position: relative;
}

.moving_circle {
    position: absolute;
    animation: movingUpDown 5s infinite;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background-color: #FFF;
} 


.bounce-in-top {
	animation: bounce-in-top 1.2s steps(2, end) infinite alternate-reverse both;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #356ba2;
    position: absolute;
    top : 100%;
}

.rotate-in-diag-2 {
	animation: rotate-in-diag-2 4s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
}

.rotate-in-ver {
	animation: rotate-in-ver 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
}

.rotate-in-center {
	animation: rotate-in-center 3s cubic-bezier(0.250, 0.460, 0.450, 0.940) infinite both;
}

@media (max-width: 991px){
    .horizontal2_circle{ margin-bottom: 0 !important; }
}