.home-section {
    height: 100vh;
    margin-top: 0px;
    background: url('../images/new-slider.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    text-align: start;
}

.second-section {
    position: relative;
    height: 100vh;
    background: url('../images/fiv.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: end;
    overflow: hidden;
}

.second-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.second-section>* {
    position: relative;
    z-index: 2;
}

.third-section {
    position: relative;
    height: 100vh;
    background: url('../images/sec1.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    overflow: hidden;
}

.third-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.third-section>* {
    position: relative;
    z-index: 2;
}

.fourth-section {
    position: relative;
    height: 100vh;
    background: url('../images/thr1.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: end;
    overflow: hidden;
}

.fourth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.fourth-section>* {
    position: relative;
    z-index: 2;
}

.fifth-section {
    position: relative;
    height: 100vh;
    background: url('../images/fou1.jpg') no-repeat center center/cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    overflow: hidden;
}

.fifth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.fifth-section>* {
    position: relative;
    z-index: 2;
}

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

@media (max-width: 768px) {
    .home-section h1 {
        font-size: 2rem;
    }

    .home-section p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .home-section h1 {
        font-size: 1.5rem;
    }

    .home-section p {
        font-size: 0.9rem;
    }
}