body {
    background-color: #f7f1eb;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
header {
    background: rgb(91, 165, 91);
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky; top: 0;

    /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}
.logo {
    font-size: 20px;
    font-weight: bold;
    color: #EFEFE8FF;
    padding-right: 190px;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    font-weight: bold;
}
nav ul li {
    display: inline;

}
nav ul li a {
    text-decoration: none;
    color: #EFEFE8FF;
    /* font-weight: bold; */

}
nav ul li  :hover {
    color:black;
}
.container {
    text-align: center;
    padding: 50px 20px;
}
h1 {
    font-size: 36px;
    font-weight: bold;
}
.blogs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    background: #121212;
    padding: 40px;
}
.blog-card {
    width: 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}
.blog-card:hover {
    transform: scale(1.05);
}
.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.blog-content {
    padding: 15px;
    text-align: left;
}
.blog-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}
.blog-meta {
    font-size: 14px;
    color: gray;
    margin-top: 10px;
}
.read-more {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}
/* ...existing code... */

.blog-card {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #fff;
}

.blog-card img {
    width: 100%;
    height: auto;
}

.blog-content {
    padding: 15px;
}

.blog-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.blog-meta {
    color: #777;
    margin-bottom: 15px;
}

.read-more {
    color: rgb(192, 8, 8);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-content-full {
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 20px;
}

.blog-content-full img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.blog-content-full h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.blog-content-full p {
    margin-bottom: 20px;
}

.blog-content-full a {
    color: #007bff;
    text-decoration: none;
}

.blog-content-full a:hover {
    text-decoration: underline;
}

/* ...existing code... */
footer {
    background: rgb(73, 190, 73);
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    transition: background 0.3s ease-in-out;
}

.footer-section {
    max-width: 300px;
    text-align: left;
    margin: 30px;
    transition: transform 0.3s ease-in-out;
}

.footer-section:hover {
    transform: translateY(-5px);
}

.footer-section h2 {
    margin-bottom: 10px;
    color: green;
    transition: color 0.3s ease-in-out;
}

.footer-section h2:hover {
    color: rgb(189, 80, 80);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin: 5px 0;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.footer-section ul li a:hover {
    color: rgb(204, 80, 80);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.address {
    font-style: normal;
    color: #333;
    transition: color 0.3s ease-in-out;
}

.address:hover {
    color: #007BFF;
}