body {
    font-family: 'Roboto', sans-serif;
    background-color: #f2f2f2;
    padding: 20px;
    margin: 0;
    /* Remove default margin */
    color: #333;
    /* Set the default text color */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    /* Use the bold weight for headings */
    color: #333;
    /* Set the heading text color */
}

/* Header */
header {
    background-color: #f7931A;
    /* Set header background color */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    color: #fff;
    /* Set header text color */
}

.logo img {
    width: 200px;
    animation: fadeIn 1s ease-in-out;
    /* Logo reveal animation */
}

nav a {
    color: #fff;
    /* Set navigation link text color */
    text-decoration: none;
    padding: 10px 15px;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

nav a:hover {
    background-color: #f2c082;
    /* Set navigation link hover background color */
}

/* Sections */
section {
    background-color: #fff;
    /* Set section background color */
    padding: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.5s ease-in-out;
    /* Content fade in animation */
    color: #333;
    /* Set section text color */
}

.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    size: 2px;
}

section h2 {
    font-size: 28px;
    /* Increase heading font size for better emphasis */
    margin-bottom: 20px;
    /* Increase margin for better spacing */
}

section p {
    line-height: 1.6;
    /* Increase line height for better readability */
}

/* Call to Action */
button[type="submit"] {
    background-color: #333;
    /* Set button background color */
    color: #fff;
    /* Set button text color */
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    animation: pulse 1s infinite ease-in-out;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #f7931A;
    /* Set footer background color */
    color: #fff;
    /* Set footer text color */
}

/* Animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}
/* Slider */
.slider {
    overflow: hidden;
    width: 70vw;
    /* Set width to 100% of viewport width */
    margin: 0 auto;
    /* Center the slider horizontally */
    max-width: 800px;
    /* Set a maximum width for the slider */
    height: 300px;
    /* Set the height of the slider */
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
    /* Ensure the slides take up the full height of the slider */
}

.slides img {
    width: 100%;
    /* Set width to 100% of slide width */
    height: 100%;
    /* Set height to 100% of slide height */
    object-fit: cover;
    /* Maintain aspect ratio and cover entire slide */
}

/* Navigation buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 18px;
}

.next {
    right: 0;
}

/* Hide next button initially */
.next.hidden {
    display: none;
}

/* Hide prev button initially */
.prev.hidden {
    display: none;
}