#body {
    background-color: #000;
    color: #fff;
}


.counter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.counter-box {
    flex: 1 1 200px;
    max-width: 200px;
}

.counter-box .count {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    transition: transform 0.4s ease;
}

.counter-box:hover .count {
    transform: scale(1.1);
}

.main-content {
    height: auto;
    width: 700px;
    justify-content: center;
}

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

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

.web-content {
    margin-top: -200px;
    position: absolute;
    text-align: center;
}

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

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

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

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

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

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

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

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

.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;
}