.blog-card-image img {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    margin-top: 20px;
}

.blog-details-text h1 {
    font-size: 40px;
    font-weight: bold;
}

.blog-details-text h2 {
    font-size: 35px;
    font-weight: bold;
}

.blog-details-text h3 {
    font-size: 30px;
    font-weight: bold;
}

.blog-details-text h4 {
    font-size: 25px;
    font-weight: bold;
}

.blog-details-text h5 {
    font-size: 20px;
    font-weight: bold;
}

.blog-details-text h6 {
    font-size: 16px;
    font-weight: bold;
}

.blog-detailstext {
    display: flex;
    padding-right: 20px;
}

.blog-detailstext i {
    color: rgb(15, 15, 14);
    font-size: 30px;
    border-right: 3px solid black;
    height: 60px;
    text-align: center;
    padding-right: 22px;
    padding-top: 10px;
    margin-right: 12px;
}

.blog-details-text {
    margin: -70px 30px 0;
    background: #fff;
    z-index: 2;
    position: relative;
    padding: 22px 20px 0;
    border-radius: 15px;
}

.blog-details-text p {
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 18px;
    margin-top: 20px;
}

.post-share-option {
    position: relative;
    display: flex;
    background: #ebf7f6;
    padding: 30px;
    margin: 25px 0 91px;
    border-radius: 10px;
    justify-content: space-between;
}

ul.social-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.post-share-option:after {
    display: none;
}

.fab::before {
    color: #099389;
    font-size: 25px;
}

.post-share-option h4 {
    margin-bottom: 0;
}

.comment {
    display: grid;
    grid-template-columns: 7% 80%;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 25px;
}

figure.thumb-box img {
    box-shadow: 2px 1px 4px 1px #099389;
    border-radius: 100%;
}

.group-title {
    margin-bottom: 30px;
}

a.reply-btn {
    color: #099389;
    font-weight: bold;
}

.review-section {
    width: 100%;
    margin: 50px auto;
    background: #eaf7f8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.review-section h2 {
    text-align: left;
}

.image-comment img {
    width: 150px;
    border-radius: 50% !important;
}

.comment1,
.thank-you {
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;

}

.main-comment-image {
    display: flex;
}

.stars {
    display: flex;
    justify-content: flex-start;
}

.stars input {
    display: none;
}

.stars label {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
}

.stars input:checked~label,
.stars input:checked~label~label {
    color: #ccc;
}

.stars input:checked+label,
.stars input:checked+label~label {
    color: gold;
}

.stars input:not(:checked)+label:hover,
.stars input:not(:checked)+label:hover~label {
    color: gold;
}

.static span {
    font-size: 24px;
    color: gold;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-form input {
    padding: 10px !important;
    border: 1px solid #ccc !important;
    border-radius: 5px !important;
}

.review-form button {
    padding: 10px;
    background: #009688;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.review-form button:hover {
    background: #00796b;
}

.thank-you {
    background: #b2dfdb;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

@media screen and (max-width: 768px) {
    .review-section{
display: none;
    }
    .blog-details-text {
        margin: 0;
        padding: 20px 0;

    }

    .blog-details-text p {
        line-height: 1.5;
        font-size: 15px;
    }

    .blog-details-text h2 {
        font-size: 18px;
    }

    .blog-details-text h3 {
        font-size: 20px;
    }

    .blog-details-text p {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .post-share-option {
        padding: 12px;
        margin: 2px 0 40px;
        align-items: center;
        flex-direction: column;
        gap: 20px;

    }

    .post-share-option h4 {
        font-size: 18px;
    }

    figure.thumb-box {
        max-width: 95px;
        margin: 0 auto;
    }

    .comment {
        grid-template-columns: 15% 80%;
    }
}