@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.marquee-container {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
}

.logo-slide {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

.animate-marquee2 {
  animation: marquee 30s linear infinite;
  animation-delay: 15s;
  position: absolute;
  top: 0;
}

/* Add hover effect for logos */
.logo-slide img {
  transition: transform 0.3s ease;
}

.logo-slide img:hover {
  transform: scale(1.1);
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee {
    display: flex;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    min-width: 100%;
    padding: 0 1rem;
}

.marquee-content img {
    transition: transform 0.3s ease;
}

.marquee-content img:hover {
    transform: scale(1.1);
    cursor: pointer;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Hero Section Styles */
.geometric-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(20, 184, 166, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.geometric-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(20, 184, 166, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 30% 100%);
}

.text-gradient {
    background-size: 200% 200%;
    animation: gradient 4s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.floating-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(20, 184, 166, 0.1));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite;
    top: 10%;
    left: 10%;
}

.floating-shape-2 {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(20, 184, 166, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    animation: float 12s ease-in-out infinite;
    top: 60%;
    right: 10%;
}

.floating-shape-3 {
    position: absolute;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
    animation: float 10s ease-in-out infinite;
    bottom: 20%;
    left: 20%;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(15px, 15px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.cyber-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.animate-gradient {
    background-size: 200% auto;
    animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced floating shapes */
.floating-shape,
.floating-shape-2,
.floating-shape-3 {
    filter: blur(40px);
    opacity: 0.5;
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.data-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

.data-streams {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.data-stream {
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(59, 130, 246, 0),
        rgba(59, 130, 246, 0.5),
        rgba(59, 130, 246, 0));
    animation: streamFlow 3s linear infinite;
    opacity: 0;
}

@keyframes gridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

@keyframes streamFlow {
    0% { 
        transform: translateY(-100%);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(100%);
        opacity: 0;
    }
}

/* Add these new geometric overlay styles */
.geometric-overlay {
    position: absolute;
    inset: 0;
    overflow: hidden;
    mix-blend-mode: overlay;
}

.geometric-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(0, 191, 255, 0.15), rgba(20, 184, 166, 0.15));
    animation: shapeFloat 20s ease-in-out infinite;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -100px;
    border-radius: 100px;
    transform: rotate(45deg);
}

.shape-2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    left: -100px;
    border-radius: 100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 86px;
    animation-delay: -10s;
    background: linear-gradient(225deg, rgba(0, 191, 255, 0.1), rgba(20, 184, 166, 0.1));
}

.hexagon-grid {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 20V40L30 55L5 40V20L30 5Z' fill='none' stroke='rgba(0, 191, 255, 0.1)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    opacity: 0.5;
    animation: gridFloat 30s linear infinite;
}

.circuit-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 191, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(20, 184, 166, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: circuitMove 20s linear infinite;
}

@keyframes shapeFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(-20px, 20px) rotate(-5deg); }
    75% { transform: translate(-20px, -20px) rotate(5deg); }
}

@keyframes gridFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-60px) rotate(1deg); }
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Blob Animation Styles */
.blob-animation {
    position: absolute;
    inset: 0;
    filter: blur(50px);
    mix-blend-mode: overlay;
    z-index: 1;
}

.blob {
    position: absolute;
    background: linear-gradient(180deg, rgba(0, 191, 255, 0.2) 0%, rgba(20, 184, 166, 0.2) 100%);
    border-radius: 100%;
    animation: blobFloat 20s ease-in-out infinite;
    transform-origin: center center;
}

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

.blob-2 {
    width: 300px;
    height: 300px;
    right: -50px;
    top: 30%;
    animation-delay: -5s;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
}

.blob-3 {
    width: 200px;
    height: 200px;
    left: 30%;
    bottom: 20%;
    animation-delay: -10s;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.2) 0%, rgba(0, 191, 255, 0.2) 100%);
}

@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -50px) scale(1.1) rotate(5deg);
    }
    50% {
        transform: translate(0, 50px) scale(0.9) rotate(-5deg);
    }
    75% {
        transform: translate(-50px, -25px) scale(1.05) rotate(3deg);
    }
}

/* Enhanced text effects */
.hero-text-glow {
    text-shadow: 0 0 30px rgba(0, 191, 255, 0.3);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Enhanced geometric designs */
.geometric-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.geometric-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.1);
    animation: pulseCircle 4s ease-in-out infinite;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: -1s;
}

.hexagon {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(20, 184, 166, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    animation: rotateHex 20s linear infinite;
}

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

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