.section {
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cybersec-section {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(85px);
    transition: opacity 1s ease, transform 1s ease;
}

.cybersec-section.in-view {
    opacity: 1;
    transform: translateY(0);
}

.cybersec-content {
    height: auto;
    width: 700px;
}

#cyber-section {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#websec-section {
    display: flex;
    text-align: right;
    justify-content: center;
    align-items: center;
}

#va-section {
    display: flex;
    text-align: justify;
    justify-content: center;
    align-items: center;
}

#pt-section {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

#internalsec-section {
    display: flex;
    text-align: right;
    justify-content: center;
    align-items: center;
}

#appsec-section {
    display: flex;
    text-align: justify;
    justify-content: center;
    align-items: center;
}

#apisec-section {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.learn-more-button {
    background: transparent;
    color: white;
    border-color: white;

}

.learn-more-button {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    background-color: transparent;
    color: white;
    border-color: white;
    cursor: pointer;
}

.learn-more-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.learn-more-button:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.learn-more-button span {
    position: relative;
    z-index: 1;
}