*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f5f5f5;
    color:#333;
    line-height:1.8;
}

/* Blog Container */
.blog-container{
    max-width:1000px;
    height:auto;
	min-height:auto;
    margin:50px auto;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* Title */
.blog-title{
    font-size:36px;
    margin-bottom:10px;
    color:#222;
}

/* Meta */
.blog-meta{
    color:#777;
    margin-bottom:20px;
    font-size:14px;
}

/* Featured Image */
.blog-image{
    width:100%;
    border-radius:8px;
    margin-bottom:25px;
}

/* Content */
.blog-content p{
    margin-bottom:20px;
    text-align:justify;
}

.blog-content h2{
    margin-top:30px;
    margin-bottom:15px;
    color:#0d6efd;
}

.blog-content ul{
    padding-left:25px;
    margin-bottom:20px;
}

.blog-content li{
    margin-bottom:8px;
}

.blog-content blockquote{
    border-left:4px solid #0d6efd;
    background:#f8f9fa;
    padding:15px;
    margin:20px 0;
    font-style:italic;
}

/* Tags */
.tags{
    margin-top:30px;
}

.tags a{
    display:inline-block;
    background:#0d6efd;
    color:#fff;
    text-decoration:none;
    padding:8px 15px;
    border-radius:20px;
    margin:5px;
    font-size:14px;
}

/* Related Blogs */
.related-posts{
    margin-top:40px;
}

.related-posts h3{
    margin-bottom:20px;
}

.related-grid{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}

.related-card{
    width:300px;
	height:500px;
    border:1px solid #ddd;
    border-radius:8px;
    overflow:hidden;
    background:#fff;
	}

.related-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.related-card h4{
    padding:15px;
}

.related-card a{
    display:block;
    background:#0d6efd;
    color:#fff;
    text-align:center;
    padding:10px;
    text-decoration:none;
}

/* Responsive */
@media(max-width:768px){

    .blog-title{
        font-size:28px;
    }

    .related-grid{
        flex-direction:column;
    }

    .related-card{
        width:100%;
    }

}
.related-card-content{
    height:180px;
    padding:15px;
    display:flex;
    flex-direction:column;
	
}
.reviews{
    padding:50px 0;
    background:white;
    overflow:hidden;
}

.reviews h2{
    text-align:center;
    margin-bottom:30px;
    color: #5c9f24 ;
}

.scroll-wrapper{
    overflow:hidden;
    position:relative;
    width:100%;
}

.scroll-content{
    display:flex;
    gap:20px;
    width:max-content;
    animation:scrollLeft 25s linear infinite;
}

.review-card{
    width:300px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 10px rgba(92, 159, 36);
    flex-shrink:0;
}

.review-card h4{
    margin-top:15px;
}

.review-card span{
    color:gray;
}

.scroll-content:hover{
    animation-play-state:paused;
}

@keyframes scrollLeft{
    from{
        transform:translateX(100%);
    }

    to{
        transform:translateX(-100%);
    }
}

