/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header */
header {
    background-color: #464646;
    padding: 10px 0;
}

footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: grey;
color: white;
text-align: center;
}

header nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; /* Ensures items are spaced out horizontally */
    align-items: center; /* Vertically center the items */
    padding: 0 20px;
}

/* Logo and Company Name */
.logo-menu-container {
    display: flex; /* Use flexbox to align logo and menu on the same line */
    justify-content: space-between; /* Ensure space between logo and menu */
    width: 100%; /* Make sure it takes up full width */
    align-items: center; /* Align items vertically in the center */
}

.content-capability-container {
    display: flex; /* Use flexbox to align logo and menu on the same line */
    justify-content: space-between; /* Ensure space between logo and menu */
    width: 100%; /* Make sure it takes up full width */
    align-items: center; /* Align items vertically in the center */
}

.capability-container {
    display: flex;
    align-items: center;
}


.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 40px;
    width: 40px;
    margin-right: 10px;
}

.company-name {
    color: #ffcc00;
    font-size: 20px;
    font-weight: 700;
}

.company-caption {
    color: #fff;
    font-size: 15px;
    font-weight: 100;
}

/* Navigation Menu */
.menu {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu li {
    margin: 0 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 1000;
    font-size: 16px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover, nav a.active {
    background-color: #ffcc00;
    color: black;
/*      background-color: #000; */
/*    color: black; */
}

/* Sliding Multi-Image Banner Section */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.slider {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 600px;
    transition: transform 0.5s ease-in-out;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dots-container {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: rgba(255, 255, 255, 1);
}

/* Main Content */
main {
    padding: 40px;
    text-align: center;
    background-color: #f4f4f4;
}

/* Responsive Design */
@media (max-width: 568px) {
    header nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .menu {
        flex-direction: column;
        width: 100%;
    }

    .menu li {
        margin: 10px 0;
    }

    .carousel-slide img {
        height: 40vh;
    }
}