﻿body {
    margin: 0;
    padding: 0;
    background-color: #E0E1DD;
    color: #0D1B2A;
    color: black;
    font-size: 20px;
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.7;
    scroll-behavior: smooth;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: #0D1B2A;
    color: #E0E1DD;
    padding: 20px 0;
    text-align: center;
}

.logo {
    max-width: 150px;
}

/* Navigation */
nav ul {
    padding: 0;
    list-style: none;
    text-align: center;
    background: #1B263B;
    padding: 10px 0;
}

    nav ul li {
        display: inline;
        margin: 0 15px;
    }

        nav ul li a {
            color: #E0E1DD;
            text-decoration: none;
            font-size: 18px;
        }

/* Carousel */
.carousel {
    position: relative;
    max-width: 800px;
    margin: 20px auto;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-img {
    width: 100%;
    height: 800px; /* or whatever fits your layout */
    object-fit: cover; /* crops nicely while preserving aspect ratio */
    flex-shrink: 0;
    display: none;
    border-radius: 10px;
}

    .carousel-img.active {
        display: block;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1B263B;
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
}

    .carousel-btn.left {
        left: 10px;
    }

    .carousel-btn.right {
        right: 10px;
    }

    .carousel-btn:hover {
        background-color: #415A77;
    }

/* Carousel END */


/* Sections */
.section {
    padding: 40px 0;
    text-align: center;
    background: #E0E1DD;
    margin: 20px 0;
}

h2 {
    color: #1B263B;
}

/* Services */
.service {
    background: #778DA9;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
    color: #E0E1DD;
}

    .service img {
        width: 50px;
        height: auto;
    }

/* Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    form input, form textarea {
        width: 80%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #415A77;
        border-radius: 5px;
        background: #E0E1DD;
        color: #0D1B2A;
    }

button {
    background: #415A77;
    color: #E0E1DD;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

    button:hover {
        background: #1B263B;
    }

/* Footer */
footer {
    background: #0D1B2A;
    color: #E0E1DD;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}
