#typing-container {
    display: inline-flex;
    align-items: center;
}

/* Typing text styles */
#typing-text {
    font-size: 33px;
    font-weight: bold;
    color: #00bcd4;
    font-family: "Poppins", sans-serif;
    white-space: nowrap;
    overflow: hidden;
}

/* Typing cursor styles */
#cursor {
    font-size: 33px;
    /* font-weight: bold; */
    color: #00bcd4;
    margin-left: 2px; /* Adjust spacing between text and cursor */
    animation: typingCursor 0.7s infinite;
}

@keyframes typingCursor {
    50% {
        opacity: 0;
    }
}

/* Blinking cursor after typing */
.blink {
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    50% {
        opacity: 0.3;
    }
}
/* Floating Note */
.floating-note {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: #222;
    color: white;
    padding: 10px 15px;
    font-size: 14px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.5s ease-in-out;
}

.floating-note button {
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    margin: top -15px; ;
}

.floating-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    text-decoration: none;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Instagram Icon */
.floating-icons .ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Message Icon */
.floating-icons .msg {
    background: #28a745;
}

/* Hover Effects */
.floating-icons a:hover {
    transform: scale(1.2);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}

/* Fade-in Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
#typing-containeer {
    display: inline-flex;
    align-items: center;
}

/* Typing text styles */
#typing-texet {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
}

/* Typing cursor styles */
#cursoer {
    font-size: 15px;
  
    /* color: #00bcd4; */
    margin-left: 2px; /* Adjust spacing between text and cursor */
    animation: typingCursor 0.7s infinite;
}

@keyframes typingCursor {
    50% {
        opacity: 0;
    }
}

/* Blinking cursor after typing */
.blink {
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    50% {
        opacity: 0.3;
    }
}