/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa; /* Light gray-blue */
    color: #333;
}

/* Navigation Bar Styling */
.navbar {
    background-color: white; /* Set navbar background to white */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    text-decoration: none;
    color: black; /* Change the text color to black for visibility */
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #007bff; /* Change hover color to blue */
}

/* Logo Styling */
.logo {
    height: 50px; /* Adjust logo size as needed */
}


/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2980b9, #6dd5fa); /* Soft blue gradient */
    color: #ffffff; /* White text for contrast */
    text-align: center;
    padding: 100px 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    text-transform: uppercase;
    background: linear-gradient(45deg, #ffffff, #d0eaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.3rem;
    margin-top: 15px;
    font-weight: 500;
    color: #f0f0f0; /* Light grayish */
}

/* Buttons */
.btn {
    display: inline-block;
    background: #3498db;
    padding: 12px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn:hover {
    background: #2980b9;
}

/* Blog Section */
.blog-container {
    padding: 50px 10%;
    text-align: center;
}

.blog-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

.blog-card img {
    max-width: 100%;
    border-radius: 10px;
}

.blog-card h3 {
    margin-top: 15px;
    font-size: 20px;
}

.blog-card p {
    font-size: 14px;
    color: #666;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
    margin-top: 30px;
}
