/* Reset some default styles */
body,
h1,
h2,
h3,
p,
ul,
li,
form,
input,
textarea,
button {
    margin: 0;
    padding: 0;
    font-family: Arial black;
}

#about p,
#services p,
#contact p {
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

/* Global styles */
body {
    background-color: #f8f8f8;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background-color: #333;
    padding: 30px;
}

nav {
    text-align: center;
}

nav ul {
    list-style: none;
    display: inline-block;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin-right: 10px;
}

nav ul li a {
    text-decoration: none;
    padding: 5px 10px;
    font-size: 24px;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    color: #fff;
}

nav ul li a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #fff;
}

nav ul li a:hover:before {
    visibility: visible;
    transform: scaleX(1);
}

/* Home Section */
.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 250px;
    color: #fff;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}


.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #333;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    opacity: 0.2;
    transition: width 0.3s ease;
}

.cta-button:hover:before {
    width: 100%;
}

/* Services Section */
.service {
    margin-bottom: 40px;
}

.service img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.service h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service p {
    font-size: 16px;
    line-height: 1.5;
}

/* Contact Section */
form {
    margin-top: 40px;
}

#benefitsLI{
    font-family: sans-serif;
    font-size: 20px;
    line-height: 1.5;
}
form input,
form textarea {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

form button {
    padding: 12px 20px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

form button:hover {
    background-color: #555;
}

/* Footer */
footer {
    background-color: #333;
    padding: 20px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

h2 {
    font-size: 40px;
}

/* ...existing styles... */

.hero {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 250px;
    color: #fff;
}

.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: transform 2s ease-in-out, opacity 2s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
    transform: translateX(0%);
}

.slide.previous {
    transform: translateX(-100%);
    z-index: -1;
}

.slide.next {
    transform: translateX(100%);
    z-index: -1;
}

@keyframes slideshow-animation {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@media screen and (max-width: 500px) {
    body {
        width: 130%;
    }

    #welcomeTo {
        font-size: 80px;
        position: relative;
        left: -200px;
        top: -150px;
    }

    nav ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* Display items vertically */
        align-items: center;
        /* Center items horizontally */
        position: relative;
        width: 100%;
    }

    nav ul li {
        margin-bottom: 50px;
        /* Add spacing between items */
        width: 100%;
    }

    nav ul li a {
        display: block;
        /* Make each item a block-level element */
        font-size: 50px;
        width: 100%;
    }

    header {
        width: 1w;
        padding: 0;
        position: relative;
    }

    #sub {
        display: none;
    }

    #gaq {
        position: relative;
        right: 180px;
        width: 300px;
        font-size: 56px;
        top: 30px;
        border-radius: 40px;
    }

/* Custom styles for the contact form */
#contact form input,
#contact form textarea {
    width: 100%;
    height: 100px; /* Adjust the value to increase the height */
    padding: 10px;
    margin-bottom: 20px;
    font-size: 16px;
}

#contact form button {
    padding: 80px 190px;
    font-size: 20px;
    border-radius: 20px; /* Adjust the value to make the button more rounded */
}


}