/* Reset default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.8;
    background-color: #f4f4f4; /* Very light gray */
    color: #333;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #003366; /* Navy blue */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    border-bottom: 4px solid #002244; /* Darker navy blue accent */
}

header h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

header p {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.hero {
    background-image: url('path/to/your/image.jpg'); /* Replace with your background image */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    padding: 100px 20px;
    background-blur: 10px; /* Optional blur effect */
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.hero p {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #004080; /* Darker navy blue */
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn:hover {
    background-color: #00264d; /* Even darker navy blue */
    transform: translateY(-2px); /* Subtle lift effect */
}

.features {
    background-color: #ffffff; /* Clean white for contrast */
    padding: 50px 20px;
    text-align: center;
    border-bottom: 2px solid #e0e0e0; /* Subtle border for separation */
}

.features h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #003366; /* Navy blue */
}

.features ul {
    list-style-type: none;
    padding: 0;
}

.features ul li {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features ul li i {
    margin-right: 10px;
    color: #003366; /* Navy blue for icons */
}

.contact {
    background-color: #003366; /* Navy blue */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contact h3 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff; /* Form background */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    background-color: #f9f9f9; /* Light gray for inputs */
}

.contact button {
    display: block;
    background-color: #004080; /* Darker navy blue */
    color: #fff;
    border: none;
    padding: 14px 24px;
    margin-top: 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact button:hover {
    background-color: #00264d; /* Even darker navy blue */
    transform: translateY(-2px); /* Subtle lift effect */
}

footer {
    background-color: #002244; /* Darker navy blue */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Under Construction Message */
.under-construction {
    background-color: #004080; /* Soft navy blue */
    color: #fff;
    text-align: center;
    padding: 20px 20px;
    font-size: 1.4rem;
    border-bottom: 4px solid #003366; /* Slightly darker navy blue for emphasis */
}

/* Navbar background change on scroll */
header.scrolled {
    background-color: #00264d; /* Even darker navy blue */
    transition: background-color 0.3s ease;
}
