.n2-ss-animated-heading-i-text{color:#fff!important;}
/*
.animation-container {
  position: fixed;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 10px;
  z-index: 1;
  background: #111111;
}

.animation-container span {
  position: fixed;
  color: whitesmoke;
  display: block;
  font-size: 18px;
  font-family: 'Helvetica';
  text-shadow: 0 0 1px white;
  user-select: none;
  pointer-events: none;
  cursor: default;
  z-index: 1;
  opacity: 0;
  top: 0;
  will-change: transform, opacity;
  animation-timing-function: ease-out;
  animation-name: move;
}

@keyframes move {
  0% {
    opacity: 0;
    top: 100%;
  }
  25% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: none;
  }
}
*/

#animation-container {
            position: relative;
            height: 400px;
            background: linear-gradient(to bottom, #3498db, #2c3e50);
            overflow: hidden;
            border: 3px solid #2980b9;
            border-radius: 10px;
            margin: 20px;
        }
        
        .animated-element {
            position: absolute;
            white-space: nowrap;
            color: white;
            animation-name: moveLeft;
            animation-timing-function: linear;
            will-change: transform, opacity;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
            padding: 8px 15px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        .animated-element:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.1);
            z-index: 100;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
@keyframes moveLeft {
            0% {
                transform: translateX(0);
                opacity: 0.8;
            }
            100% {
                transform: translateX(-100%);
                opacity: 0;
            }
        }		
		
		
/*.content {
            padding: 30px;
            background: #ecf0f1;
        }
        
        .content h2 {
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }
        
        .feature {
            flex: 1;
            min-width: 250px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
        }
        
        .feature h3 {
            color: #2980b9;
            margin-bottom: 15px;
        }
        
        .controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            background: #34495e;
        }
        
        button {
            padding: 12px 25px;
            border: none;
            border-radius: 50px;
            background: #3498db;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        
        button:hover {
            background: #2980b9;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
        
        .stats {
            text-align: center;
            padding: 15px;
            background: #2c3e50;
            color: white;
            font-size: 1.1rem;
        }		*/