
:where([class^="ri-"])::before {
    content: "\f3c2";
}

/* Animation styles */
.hero-content {
    opacity: 0;
    animation: fadeInUp 1.5s ease-out 0.2s forwards;
}

.hero-title {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.4s forwards;
}

.hero-subtitle {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.8s forwards;
}

.hero-buttons {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.2s forwards;
}

.hero-tags {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 1.6s forwards;
}

.typewriter {
    border-right: 3px solid #8B5CF6;
    animation: typewriter 2s steps(40, end) 1s, blink 0.75s step-end infinite;
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
}

.scroll-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.scroll-slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(30px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes typewriter {
    from {
    width: 0;
    }

    to {
    width: 100%;
    }
}

@keyframes blink {

    from,
    to {
    border-color: transparent;
    }

    50% {
    border-color: #8B5CF6;
    }
}

/* Background animation shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(124, 58, 237, 0.1));
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 80%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 70%;
    animation-delay: -10s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 80%;
    left: 20%;
    animation-delay: -15s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 60%;
    animation-delay: -3s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 45%;
    animation-delay: -8s;
}

@keyframes float {

    0%,
    100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
    opacity: 0.3;
    }

    25% {
    transform: translateY(-30px) translateX(20px) rotate(90deg);
    opacity: 0.6;
    }

    50% {
    transform: translateY(-10px) translateX(-15px) rotate(180deg);
    opacity: 0.4;
    }

    75% {
    transform: translateY(-40px) translateX(10px) rotate(270deg);
    opacity: 0.5;
    }
}

/* Staggered animation delays */
.scroll-fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-slide-up:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-slide-up:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-slide-up:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-slide-up:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-slide-up:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-slide-up:nth-child(6) {
    transition-delay: 0.6s;
}

body #toolbar-administration {
  display: none !important;
}

