body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevent scrollbars from appearing */
}

.slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    transition: left 1s ease-in-out;
}

.slide.active {
    left: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.text-content {
    position: absolute;
    color: #fff;
    text-align: center;
    z-index: 1;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.heading {
    font-size: 2.5em;
    margin: 0;
}

.subheading {
    font-size: 1.5em;
    margin: 0;
}

.text {
    font-size: 1.2em;
    margin: 20px 0;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
}

.prev, .next {
   position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 9px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1em;
    z-index: 2;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}
