/* blog cards footer */
#blog-card-footer-1 {
    margin-top: 3px;
}
#blog-card-footer-2 {
    margin-top: 30px;
}
#blog-card-footer-6 {
    margin-top: 15px;
}
#blog-card-footer-3 {
    margin-top: 30px;
}
#blog-card-footer-4 {
    margin-top: 15px;
}
#blog-card-footer-5 {
    margin-top: 15px;
}
/* blog details page */
.justify-text {
    text-align: justify;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
    padding: 10px;
}
#lead-para {
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
    color: #333;
    margin: 0 auto;
    max-width: 100%;
    padding: 0 10px;
    margin-top: 10px;
}
@media (max-width: 768px) {
    #lead-para {
        font-size: 16px;
        line-height: 1.4;
        text-align: left;
        padding: 0 5px;
    }
}
#lead-para a {
    color: blue;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
#lead-para a:hover {
    color: darkblue;
}
.blogs-grid{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 30px;
}
.blog-card{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px #0000001a;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
}
/* Hover Effect */
.blog-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px #00000029;
    background-color: #f5f5f5;
}
#blog-header {
    font-family: initial;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 40px;
    padding: 15px;
    color: purple;
    margin-top: 10px;

}
.blog-content{
    padding: 15px;
}
.blog-title{
    color: #4a4a4a;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0px 0px 0px 10px;
}
.blog-author-date{
    color: #6e6e6e;
    font-size: 1.3rem;
    font-weight: 300;
}
.blog-image{
    height: 200px;
    object-fit: fill;
    width: 100%;
}
.blog-footer {
    text-align: center;
}
#intro-text {
    text-align: center;
    padding: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0px;
}
#blog-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto ;
    border-radius: 8px;
}
#sub-heading {
    font-weight: bold;
    font-size: 2rem;
    padding: 2px ;
    border-radius: 5px;
}
.blogs-grid{
    padding-top: 0px;
}
#visit-button {
    margin-top: 10px;
    background-color: #5d89bc;
    color: white;
    padding: 12px 23px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 30px;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}
