/* Hero Section */


.blog-hero {
background: url('../images/home-projects/tuc-projects-ashok.jpg') center/cover no-repeat;    
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #FFFF;
    margin-bottom: 50px;
}

.blog-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    max-width: 800px;
    padding: 0 20px;
     color: #FFFF;
     z-index: 1 !important;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffff;
}

.hero-content p {
    font-size: 18px;
    color: #f0f0f0;
}

/* Single Blog Styles */
.single-blog-container {
    max-width: 900px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    box-shadow: 0px 2px 3px 2px #d2d2d2;
    padding: 2rem 3rem;

}

 .single-blog-container h3 {
    font-size: 1.6rem;
    line-height: 1.5rem;
    padding: 1rem 0;
}

.single-blog-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.single-blog-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.single-blog-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.single-blog-content h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.single-blog-content blockquote {
    border-left: 4px solid #FFBF00;
    padding-left: 15px;
    font-style: italic;
    color: #666;
    margin: 25px 0;
}

.single-blog-content a {
    color: #FFBF00;
    text-decoration: none;
}

.single-blog-content a:hover {
    text-decoration: underline;
}
