.typing-section {
    margin-top: -50px;
    padding: 0px;
    border-radius: 15px;
    
    text-align: center;
    height: 150px
}

.typing-effect-1 .typing-text {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.typing-effect-1 .cursor {
    background: linear-gradient(45deg, #FF416C, #FF4B2B);
    width: 4px;
    height: 1.2em;
    display: inline-block;
    margin-left: 5px;
    animation: blink1 0.8s infinite;
}

@keyframes blink1 {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-effect-2 .typing-text {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    color: #333;
    border-right: 3px solid #28a745;
    padding-right: 10px;
    animation: blink2 0.7s step-end infinite;
}

@keyframes blink2 {
    from, to { border-color: transparent; }
    50% { border-color: #28a745; }
}

.typing-effect-3 {
    position: relative;
    display: inline-block;
}

.typing-effect-3 .typing-text {
    font-size: 1.8rem;
    margin-top: 45px;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(255, 0, 255, 0.3);
}

.typing-effect-3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
       clip-path: polygon(50% 100%, 0 0, 100% 0);
}

 @media (max-width: 992px) {
     .typing-effect-3 .typing-text {
        font-size: 1rem;
        }

 }
.typing-effect-4 {
    display: inline-flex;
    align-items: center;
}

.typing-effect-4 .typing-text {
    font-size: 1.6rem;
    color: #6f42c1;
    font-weight: 600;
}

.typing-effect-4 .cursor {
    width: 8px;
    height: 8px;
    background: #6f42c1;
    border-radius: 50%;
    margin-left: 5px;
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.typing-effect-5 .typing-text {
    font-size: 2rem;
    color: transparent;
    background: linear-gradient(90deg, #fd79a8, #e17055, #0984e3);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.typing-effect-5 .typing-text::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, transparent, #0984e3, transparent);
    animation: scan 2s infinite;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}
