body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #333;
    padding: 20px 0;
    position: relative;
    color: white; /* Change text color to white */
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.logo {
    width: 128px;
    height: 128px; 
    margin-right: auto; 
}

.header-text {
    text-align: center;
    flex-grow: 1; /* Allows the header text to occupy the central space */
    color: white; /* Ensure the text is white */
}

.header-text h1 {
    margin: 0;
    font-size: 2.5em; /* Adjust as needed */
}

.header-text .lead {
    font-size: 1.2em; /* Adjust font size for lead text */
}

.header-nav {
    display: flex;
    gap: 10px; /* Adds space between the buttons */
    margin-left: auto; /* Pushes the nav buttons to the far right */
}

.header-nav a {
    text-decoration: none;
    color: white;
    background-color: #555;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.header-nav a:hover {
    background-color: #777;
}


#about, #services, #contact, #product-showcase {
    margin-bottom: 30px;
}

.flashing-text {
    animation: flash 2s infinite;
    color: #66ff00; /* Optional: Set the color to red or any other color you prefer */
}

@keyframes flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}

.product-showcase {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    display: flex;
    align-items: center;
}

.product-container-wrapper {
    width: 100%;
    overflow: hidden;
}

.product-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.product-container img {
    width: 30%;
    height: auto;
    margin: 0 1%;
    border-radius: 5px;
    flex-shrink: 0;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2em;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
    outline: none;
    border-radius: 5px;
}

.left-btn {
    left: 0;
}

.right-btn {
    right: 0;
}

.scroll-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
    position: relative;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
