
/* Header Styling */
.site-header {
    background-color: #333;
    color: yellow;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between; /* Pushes company name to left, links to right */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-name {
    font-size: 1.5em;
    font-weight: bold;
}

.app-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.app-links a:hover {
    background-color: #555;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
}

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
    overflow: hidden; /* Ensures images don't spill out during transition */
}

.mySlides {
    display: none; /* Hide all slides by default */
    position: relative;
}

.mySlides img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Text overlay on images (optional) */
.text-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    font-size: 18px;
    text-align: center;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 3.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

/* Content below the slider */
.content-container {
    padding: 20px;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
}

p {
    color: #666;
    line-height: 1.6;
}
