        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }

        .marquee-container {
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee-content {
            display: inline-flex;
            animation: marquee 25s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .project-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .project-card {
            perspective: 1000px;
        }

        .project-card-inner {
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }

        .project-card:hover .project-card-inner {
            transform: translateY(-10px) scale(1.02);
        }

        .cursor {
            position: fixed;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: white;
            pointer-events: none;
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            z-index: 9999;
            transition: transform 0.1s ease;
        }

        .cursor-ring {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 50%;
            pointer-events: none;
            transform: translate(-50%, -50%);
            z-index: 9998;
            transition:
                width 0.2s ease,
                height 0.2s ease,
                border-color 0.2s ease,
                transform 0.15s ease;
        }

        .cursor-ring.active {
            width: 60px;
            height: 60px;
            border-color: rgba(234, 16, 230, 0.8);
        }

        .cursor-ring.click {
            border-color: rgba(139, 92, 246, 1);
            animation: click 0.3s ease;
        }

        @keyframes click {
            0% {
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                transform: translate(-50%, -50%) scale(0.8);
            }

            100% {
                transform: translate(-50%, -50%) scale(1);
            }
        }

        .nav-item {
            position: relative;
        }

        .nav-item:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: currentColor;
            bottom: -5px;
            left: 0;
            transition: width 0.3s ease;
        }

        .nav-item:hover:after {
            width: 100%;
        }

        .mobile-menu {
            transform: translateX(100%);
            transition: transform 0.3s ease;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .gradient-text {
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        input,
        textarea {
            background-color: rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        input:focus,
        textarea:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.5);
            background-color: rgba(255, 255, 255, 0.1);
        }

        .stats-item {
            transition: transform 0.3s ease;
        }

        .stats-item:hover {
            transform: translateY(-5px);
        }

        @media (hover: none) {
            .cursor {
                display: none;
            }
        }
        

        /* Loader Styles */
.card {
  --bg-color: #111;
  background-color: var(--bg-color);
  padding: 1rem 2rem;
  border-radius: 1.25rem;
}
.loader {
  color: rgb(124, 124, 124);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 25px;
  height: 40px;
  padding: 10px 10px;
  display: flex;
  border-radius: 8px;
}

.words {
  overflow: hidden;
  position: relative;
}
.words::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    var(--bg-color) 10%,
    transparent 30%,
    transparent 70%,
    var(--bg-color) 90%
  );
  z-index: 20;
}

.word {
  display: block;
  height: 100%;
  padding-left: 6px;
  color: #956afa;
  animation: spin_4991 4s infinite;
}

@keyframes spin_4991 {
  10% { transform: translateY(-102%); }
  25% { transform: translateY(-100%); }
  35% { transform: translateY(-202%); }
  50% { transform: translateY(-200%); }
  60% { transform: translateY(-302%); }
  75% { transform: translateY(-300%); }
  85% { transform: translateY(-402%); }
  100% { transform: translateY(-400%); }
}

/* Loader */
.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.ball {
  --size: 16px;
  width: var(--size);
  height: var(--size);
  border-radius: 11px;
  margin: 0 10px;
  animation: 2s bounce ease infinite;
}
.blue { background-color: #4285f5; }
.red { background-color: #ea4436; animation-delay: 0.25s; }
.yellow { background-color: #fbbd06; animation-delay: 0.5s; }
.green { background-color: #34a952; animation-delay: 0.75s; }

@keyframes bounce {
  50% { transform: translateY(25px); }
}
