/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 17 Sept 2023, 01:43:25
    Author     : Rabel
*/

/* Styles for the slider container */
.slider-container {
    position: relative;
    max-width: 65%;
    margin: 0 auto;
}

/* Styles for the slider */
.slider {
    display: flex;
    overflow: hidden;
}

/* Style for each slide */
.slide {
    display: flex; /* Display content and image side by side */
    flex: 0 0 100%;
    transition: transform 0.5s ease;
}

/* Style for slide images */
.slide img {
    width: 50%; /* Set the width of the image to 50% to make it half the slide */
    height: auto;
}

/* Style for slide content (text and button) */
.slide-content {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    width: 50%; /* Set the width of the content to 50% to make it half the slide */
}

/* Style for slide headings */
.slide-content h3 {
    font-size: 24px;
    margin: 0;
}

/* Style for slide paragraphs */
.slide-content p {
    margin: 10px 0;
}

/* Style for slide buttons */
.slide-content button {
    background: #ff6600;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

/* Styles for the navigation buttons (prev and next) */
.prev-slide, .next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff6600;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 24px;
}

.prev-slide {
    left: 10px;
}

.next-slide {
    right: 10px;
}


