/* Reset Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: black;
}

header {
    color: black;
    background-color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    position: fixed;
    /* Add fixed positioning */
    top: 0;
    /* Align to the top of the viewport */
    width: 100%;
    /* Take up full width */
    z-index: 1000;
    /* Ensure it's above other content */
}


header h1 {
    padding-top: 0.5rem;
    font-family: "Century Gothic";
    font-size: 40px;
    margin: 0;
    margin-left: 10px;
}

nav {
    font-family: 'Century Gothic';
    margin-right: 50px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav li {
    display: inline;
    margin-left: 20px;
    margin-right: 20px;
}

nav a {
    position: relative;
    color: black;
    text-decoration: none;
    font-size: 17px;
    cursor: pointer;
    transition: color 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: black;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.footer {
    font-family: 'Arial, sans-serif';
    font-size: 18px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: black;
    padding: 1rem;
    text-align: center;
    display: none;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.3);
    /* Added box shadow */
}

.footer.show {
    display: block;
}


/* Main Content Styles */
.content {
    text-align: justify;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* .home-text {
            margin-left: 20px;
        } */

/* Add space between images and content */
.home-image {
    margin-bottom: 20px;
    margin-right: 40px;
}

.features-image {
    margin-bottom: 20px;
}

.content {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 20px;
    /* Adjust the value as needed */
}

.content {
    padding-top: 100px;
    /* Adjust the value based on the height of your header */
}


.content h2 {
    font-family: "Century Gothic";
    font-size: 30px;
    margin-bottom: 20px;
    color: black;
}

.content p {
    color: black;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

#about h2 {
    font-family: "Century Gothic";
    font-size: 40px;
    margin-bottom: 20px;
    color: black;
    margin-right: 50px;
    margin-left: 50px;
}

#about p {
    color: rgb(0, 0, 0);
    font-size: 18px;
    line-height: 1.6;
    margin-right: 50px;
    margin-left: 50px;
}

.home-info p {
    margin-left: 50px;
    margin-right: 50px;
    color: black;
    font-size: 18px;
    line-height: 1.6;
}

.content img {
    max-height: 440px;
    max-width: auto;
}

/* Images Styles */
.home-image,
.features-image {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.home-image img,
.features-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.home-image:hover img,
.features-image:hover img {
    transform: scale(1.05);
}

/* Video Container Styles */
#video-container {
    margin: 50px auto;
    margin-bottom: 120px;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

#video-container:hover {
    transform: scale(1.05);
}

#video-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}

/* Adjust the padding-top of each section to accommodate the fixed header */

#about {
    padding-top: 100px;
}