/* styles.css */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #001f3f; /* Deep sea blue */
    color: #ffffff; /* White text for contrast */
}

header {
    background: #003366; /* A darker shade of blue for the header */
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

.logo img {
    width: 100px;
}

nav {
    background-color: #003366; /* Darker shade of blue */
    padding: 10px 0;
    text-align: center;
}

nav ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline; /* Display items in a single line */
    margin: 0 15px; /* Space between items */
}

nav ul li a {
    text-decoration: none; /* Remove underline from links */
    color: #ffffff; /* White text */
    font-weight: bold; /* Bold text */
    padding: 10px 15px; /* Padding for clickable area */
    position: relative; /* Positioning for hover effect */
    transition: color 0.3s; /* Smooth color transition */
}

nav ul li a:hover {
    color: #1abc9c; /* Change text color on hover */
}

nav ul li a:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #1abc9c; /* Color of the underline */
    transition: width 0.3s, left 0.3s; /* Smooth transition for the underline */
}

nav ul li a:hover:after {
    width: 100%; /* Underline expands to full width on hover */
    left: 0; /* Position the underline correctly */
}

main {
    padding: 20px;
}

.intro {
    background: rgba(255, 255, 255, 0.1); /* Light translucent background */
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.services {
    margin-top: 20px;
}

.services ul {
    list-style-type: none; /* Remove default list styling */
    padding: 0;
}

.services li {
    background: rgba(255, 255, 255, 0.2); /* Light translucent background for list items */
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

.contact {
    text-align: center; /* Center the contact section */
    margin-top: 20px; /* Space above the section */
}

.contact form {
    text-align: center; /* Center the form elements */
    margin-top: 20px; /* Space above the form */
}

.contact label {
    display: block; /* Make the label a block element */
    margin-bottom: 10px; /* Space below the label */
    color: #ffffff; /* White text for the label */
}

.contact textarea {
    width: 80%; /* Set width of the textarea */
    padding: 10px; /* Padding inside the textarea */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #1abc9c; /* Border color */
    background-color: rgba(255, 255, 255, 0.2); /* Light translucent background */
    color: #ffffff; /* White text */
    resize: none; /* Disable resizing */
}

.contact textarea::placeholder {
    color: #ffffff; /* Placeholder text color */
    opacity: 0.7; /* Slightly transparent placeholder */
}

.contact-button {
    display: inline-block; /* Make the button behave like a block */
    background-color: #1abc9c; /* Button background color */
    color: #ffffff; /* Button text color */
    padding: 15px 25px; /* Padding for the button */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s, transform 0.3s; /* Smooth transitions for hover effects */
}

.contact-button:hover {
    background-color: #16a085; /* Darker shade on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #003366; /* Same as header */
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}