body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-image: linear-gradient(rgb(0 1 0), #291b22bf);
}

header {
    padding: 0;
    text-align: center;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x600/1a3c5e/ffffff?text=Industrial+Banner') center/cover;
    color: white;
    text-align: center;
}

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

.services-rotator {
    max-width: 800px;
    margin: auto;
    text-align: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.rotator-slide {
    display: none;
    text-align: center;
    min-height: 300px;
}

    .rotator-slide.active {
        display: block;
        animation: fadeIn 0.5s;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services h3 {
    color: #1a3c5e;
    margin-bottom: 1rem;
}

.services ul {
    list-style: none;
}

.services li {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.carousel {
    max-width: 1000px;
    margin: 2rem auto;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

    .carousel-slide img {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.about {
    color: white;
    text-align: center;
}

    .about p {
        text-align: justify;
        padding: 0 200px;
    }

.owners {
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-bottom: 1rem;
}

.owner {
    border-radius: 0px;
    box-shadow: 0 0 0px rgba(0,0,0,0.1);
}

.contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}
.owner p {
    text-align: center;
}

    .contact h2 {
        text-align: center;
        margin-bottom: 2rem;
        color: white;
        border-top: dashed 1px #ddd;
        padding-top: 1rem;
    }

form {
    display: grid;
    gap: 1rem;
}

input, textarea {
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

button {
    background: #1a3c5e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
}

    button:hover {
        background: #0f2440;
    }

.map {
    margin: 2rem 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .carousel-slide img {
        height: 200px;
    }

    .owners {
        flex-direction: column;
    }

    .about p {
        text-align: justify;
        padding: 10px;
    }
}

.footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.5);
    color: white;
}
