.review-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.review {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    width: calc(25% - 20px);
    /* Adjust width to fit four reviews in a row */
    box-sizing: border-box;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    margin: 0;
    font-size: 1.2em;
    font-weight: bold;
}

.rating {
    color: #FFD700;
    font-size: 1em;
}

.rating span {
    margin-right: 2px;
}

.review-date {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #777;
}

.review-text {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

.review-form-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}



.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 2em;
    color: #ccc;
    cursor: pointer;
    transition: color 0.3s;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
    color: #FFD700;
}

.rating {
    color: #FFD700;
    font-size: 1em;
}

.rating span {
    margin-right: 2px;
}

.review-date {
    margin: 5px 0 0;
    font-size: 0.9em;
    color: #777;
}

.review-text {
    font-size: 1em;
    color: #333;
    line-height: 1.5;
}

.social-icon2 {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
}

.social-icon2:hover {
    opacity: 0.7;
}

.details-facebbok {
    background: #3B5998;
    color: white;
}

.details-linkdin {
    background: #007bb5;
    color: white;
}

.details-youtube {
    background: #bb0000;
    color: white;
}

.details-instagram {
    background: #125688;
    color: white;
}

.fa-globe {
    background: #125688;
    color: white;
}
