* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}
.blog-details-content h2.section-title{
    font-size: 3rem;
}
/* .blog-details-content{
    padding-top: 2%;
} */
.blog-details-content-layout{
    width: 90%;
    margin: 0 5%;
}
.blog-details-content-layout p{
    font-family: Poppins, "sans-serif";
    font-size: 1rem;
    margin: 0 auto 30px;
    color: rgb(22, 22, 22);
}
.blog-details-place-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Overlay effect */
    transition: background 0.3s ease;
}

.blog-details-place-image {
    background-image: url(../images//site/blog-details/blog-details-kerala.jpg);
    margin: 0 5%;
    width: 90%;
    height: 20rem;
    border-radius: 10px;
    margin-bottom: 30px;
    display: block;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.blog-image-text {
    position: relative;
    z-index: 2; /* Ensures the text appears above the overlay */
    text-align: center;
}
.blog-image-text h2{
    font-family: Nunito, "sans-serif";
    font-size: 3rem;
    color: #ffffff;
    z-index: 3;
    /* margin-bottom: 2%; */
}
.blog-image-text h3{
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    color: #ffffff;
    text-align: center;
    z-index: 1;
}
.blog-details-place-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Keep the overlay effect */
    z-index: 1; /* Ensure it's behind the text */
}
.blog-details-place-image:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.3);
}

