/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    background-color: #e6f7ff; /* Light blue background */
    color: #333; /* Dark text color for contrast */
}

/* Header */
header {
    background-color: #004a87; /* Dark blue header color */
    padding: 20px 0;
    color: white;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header .logo img {
    max-width: 150px;
}

nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline-block;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
}

nav ul li a:hover {
    text-decoration: underline;
}

/* Added CSS for Login Button */
.btn-login {
    background-color: #ff4d4d; /* Red color for login button */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
}

.btn-login:hover {
    background-color: #e60000; /* Darker red on hover */
    color:white;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1200x600') no-repeat center center;
    background-size: cover;
    color: #004a87; /* Match the navbar color */
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #004a87; /* Match navbar color */
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #004a87; /* Match navbar color */
}

.hero .btn {
    background-color: #00aaff;
    padding: 15px 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
}

.hero .btn:hover {
    background-color: #007c91;
}

/* Info Section */
.info-section {
    background-color: #ffffff;
    padding: 50px 0;
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.info-section p {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
}

.features {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.feature-item {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    text-align: center;
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: #004a87; /* Dark blue footer */
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icon {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    font-weight: 600;
}

footer .social-icon:hover {
    text-decoration: underline;
}

/* Added CSS for Login Button */
.btn-login {
    background-color: #ff4d4d; /* Red color for login button */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none; /* Make sure it's not underlined */
    color: white; /* White text color */
}

/* Login Button with Dark Blue and Light Blue Hover */
.btn-login {
    background-color: #004a87; /* Dark blue */
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none; /* Ensure the text is not underlined */
    color: white; /* White text */
}

.btn-login:hover {
    background-color: #00aaff; /* Light blue hover effect */
}
