    
    .blogs {
        position: relative; 
        text-align: center;
        background-color: #327fc7; 
        background-image: url('../Images/bg2.jpg');
        background-size: cover;
        background-position: center;
        width: 100vw;
        height: 60vh;
        margin-top: 60px;
        color: white;
        padding: 60px 20px;
        box-sizing: border-box;
        border: none;
        border-bottom-right-radius: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1;
    }
    
    .blogs::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.377); 
        border-bottom-right-radius: 100px;
        z-index: -1; 
    }
.blogs h1 {
    font-size: 2.5em; 
    margin-bottom: 20px;
    color: #f7f6f4; 

}
.blogs p {
    font-size: 1.2em; 
    line-height: 1.5; 
    color: #e8f7f7; 
}
@media screen and (max-width: 600px){
    .blogs {
        border: none;
        border-bottom-right-radius: 0;
        height: 50%;
    }
    .blogs h1 {
        font-size: 1.5em;
       border: none;
       text-align: left;
    }
    .blogs p{
        font-size: 1em;
        text-align: justify;
    }
}
.hero {
    text-align: center;
    padding: 40px 20px;
    background: url('') no-repeat center center/cover; 
    background-size: 100%;
    color: #000000; 
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
}

.blog-posts {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; /* Space between cards */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.post-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.post-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 12px;
}

.post-card h2 {
    font-size: 18px;
    margin: 8px 0;
}

.post-card p {
    font-size: 14px;
    color: #666;
}

.post-card .read-more {
    display: inline-block;
    margin-top: 8px;
    color: #2685c5;
    text-decoration: none;
}

.post-card .read-more {
    display: inline-block;
    margin: 10px 0;
    padding: 8px 16px;
    background-color: #346e6b; 
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
}

.post-card .read-more:hover {
    background-color: #2685c5;
}

/* Load More button styling */
#load-more {
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #00abbb;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1em;
    transition: background-color 0.2s;
}

#load-more:hover {
    background-color: #2685c5;
}


.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a {
    margin: 0 10px;
    text-decoration: none;
    color: #007BFF;
}

.news-section {
    padding: 40px 20px;
    background-color: #fff;
}

.news-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #000000;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* News Item */
.news-item {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    align-items: center;
}
.news-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}


.news-thumbnail {
    width: 150px;
    height: 100px;
    object-fit: cover;
}


.news-details {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-details h3 {
    font-size: 1.4rem;
    margin: 0 0 10px;
}

.news-details p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 0 10px;
}

.news-date {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 5px;
    display: block;
}

.read-more2 {
    font-size: 0.9rem;
    text-decoration: none;
    color: #327fc7;
    font-weight: bold;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.read-more:hover {
    border-color: #327fc7;
}

@media (max-width: 768px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-thumbnail {
        width: 100%;
        height: auto;
    }

    .news-details {
        padding: 20px;
    }
    .blog-posts{
        min-width: 150px;
    }
}
#contact-us {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00abbb; 
    color: white; 
    text-align: center;
    border-radius: 5px;
    border:none;
    border-right:4px solid #00abbb;
    border-bottom:4px solid #00abbb;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    height: 80px;
    width: 200px;
    margin-top: 20px; 
    font-size: 1.5em;
}

#contact-us:hover {
    background-color: #327fc7; 
}
.con{
    display: flex;
    display: flex;
    justify-content: center; 
    align-items: center; 
    flex-direction: column;
    margin-bottom: 20px;
}
