/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: url('hero-background.jpg') no-repeat center center/cover;
    background-size: 300% 100%; /* Enlarges the background for animation */
    animation: moveBackground 60s linear infinite; /* Animates background movement */
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

@keyframes moveBackground {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

.hero h1, .hero p {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent background for text */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #004aad;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #001f4d;
    transform: scale(1.1);
}

/* Features Section */
.features {
    display: flex;
    justify-content: space-around;
    padding: 60px 20px;
    text-align: center;
    background: #f4f4f4;
}

.feature {
    flex: 1;
    margin: 0 15px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature i {
    color: #004aad;
    margin-bottom: 10px;
}

.feature h2 {
    color: #004aad;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
    font-size: 1.1em;
}

/* About Section */
.about {
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    color: #004aad;
    margin-bottom: 20px;
}

/* Contact Section */
.contact {
    padding: 40px 20px;
    background: #f4f4f4;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: auto;
}

.contact input, .contact textarea {
    width: 90%;
    max-width: 400px;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact button {
    background-color: #004aad;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #001f4d;
}

/* Footer */
footer {
    background-color: #001f4d;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

footer h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

footer p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

footer .newsletter {
    margin: 20px 0;
}

footer .newsletter input {
    padding: 10px;
    font-size: 1em;
    border-radius: 5px;
    border: none;
    margin-right: 10px;
}

footer .newsletter button {
    padding: 10px 20px;
    background-color: #004aad;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

footer .social-icons a {
    margin: 0 10px;
    color: white;
    font-size: 1.5em;
}

footer .footer-nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}
