/* Reset and Global Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: linear-gradient(to bottom, #f0f9ff, #cfe7ff);
    color: #333;
}

header {
    background-color: #0044cc;
    padding: 15px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    height: 50px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

nav ul li a.active, nav ul li a:hover {
    background-color: #0056e6;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    gap: 30px;
}

.hero-text {
    flex: 1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
}

.btn-primary {
    background-color: #22aaff;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1b8edb;
}

.features {
    text-align: center;
    padding: 50px 20px;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.feature {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    text-align: center;
}

.feature img {
    height: 80px;
    margin-bottom: 15px;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 50px;
}

footer a {
    color: #22aaff;
    text-decoration: none;
}

a {
    text-decoration: none;
    color: #22aaff; /* Optional: Set your preferred color */
    font-weight: bold;
}

a:hover {
    text-decoration: underline; /* Optional: Add underline only on hover */
}
