/* Container for the button */
.button-container {
    display: flex;
    justify-content: flex-start; /* Moves the button slightly to the left */
    align-items: center;
    width: 100%;
    padding: 10px;
}


/* Button Styling */
.slide-in-left {
    align-items: center;
    background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    box-sizing: border-box;
    color: #ffffff;
    display: flex;
    font-size: 18px;
    justify-content: center;
    line-height: 1em;
    max-width: 100%;
    min-width: 140px;
    padding: 3px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    left: -10px; /* Adjusts the button slightly to the left */
}

/* Button Inner Span */
.slide-in-left span {
    background-color: rgb(5, 6, 45);
    padding: 16px 24px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    transition: 300ms;
}

.slide-in-left:hover span {
    background: none;
}

.slide-in-left:active {
    transform: scale(0.9);
}

/* Animation for sliding in from left */
@keyframes slideInLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Adds spacing between items */
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px; /* Adds spacing between icon and text */
}

.contact-item i {
    font-size: 20px; /* Adjust icon size */
    color: white; /* Adjust color if needed */
    min-width: 25px; /* Ensures icons are aligned */
    text-align: center;
}

.contact-text {
    margin: 0;
    flex: 1;
    white-space: normal;
    max-width: 100%;
    line-height: 1.5;
}


