/* Let's Connect Section Styles */
.lets-connect-container {
    padding: 32px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: linear-gradient(to bottom,#00F6A7, #101010);;
}

.lets-connect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lets-connect-title {
    font-size: 42px;
    font-weight: bold;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.lets-connect-button-container {
    margin-top: 20px;
}

.hover-button {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    border: 2px solid #00F6A7;
    color: #00F6A7;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    overflow: hidden;
    transition: color 0.3s ease;
    border-radius: 8px;
    cursor: pointer;
}

.hover-button-text {
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.hover-button-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00F6A7;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

.hover-button:hover .hover-button-background {
    transform: translateX(0);
}

.hover-button:hover .hover-button-text {
    color: #121212;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .lets-connect-title {
        font-size: 28px;
    }
    
    .hover-button {
        padding: 12px 24px;
        font-size: 16px;
    }
}