/* Base Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #0048BA;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
}

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

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Smooth animation on link hover */
nav ul li a:hover {
    color: #ffd700;
}

.hero {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    background-color: #0048BA;
    color: white;
    border-radius: 20px;
    margin: 20px;
}

.hero .content h1 {
    font-size: 48px;
}

.hero .content button {
    background-color: #00c853;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Button hover animation */
.hero .content button:hover {
    background-color: #008c3a;
    transform: scale(1.05);
}

.hero .hero-image {
    width: 50%;
    background-image: url('hero-image.jpeg'); /* Replace with actual image */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 50px;
    background-color: #fff;
    border-radius: 20px;
    margin: 20px;
}

/* Rounded blocks with smooth effects */
.feature {
    width: 30%;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background-color: #e3f2fd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Effect on feature cards on hover */
.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #0048BA;
    color: white;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

/* Effect on footer hover */
footer:hover {
    background-color: #003080;
}

/* Transitions for all elements */
* {
    transition: all 0.3s ease;
}
