.about-section{
    margin-top: 100px;
}
.gray-bg {
    background-color: #f5f5f5;
}
.about-avatar{
  width: 20rem;
  height: 20rem;
  border-radius: 50%;
  background-color: #10058C;
  padding: .2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.about-avatar img {
  /* max-width: 100%; */
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* .about-avatar img {
  vertical-align: middle;
  border-style: none;
} */
/* About Me 
---------------------*/
.about-text h3 {
  font-size: 45px;
  font-weight: 700;
  margin: 0 0 6px;
}
.about-text .party-img{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  padding: 1px;
  border: 1px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.about-text .party-img img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .about-text h3 {
    font-size: 35px;
  }
}
.about-text h6 {
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .about-text h6 {
    font-size: 18px;
  }
}
.about-text p {
  font-size: 18px;
  max-width: 450px;
}
.about-text p mark {
  font-weight: 600;
  color: #20247b;
}

.about-list {
  padding-top: 10px;
}
.about-list .media {
  padding: 5px 0;
}
.about-list label {
  color: #20247b;
  font-weight: 600;
  width: 88px;
  margin: 0;
  position: relative;
}
.about-list label:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 11px;
  width: 1px;
  height: 12px;
  background: #20247b;
  -moz-transform: rotate(15deg);
  -o-transform: rotate(15deg);
  -ms-transform: rotate(15deg);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  margin: auto;
  opacity: 0.5;
}
.about-list p {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 991px) {
  .about-avatar {
    margin-top: 30px;
    border-radius:1%;
    width: 15rem;
    height: 15rem;
  }
  .about-avatar img {
    border-radius:1%;
  }
}

.about-section .counter {
  padding: 22px 20px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
}
.about-section .counter .count-data {
  margin-top: 10px;
  margin-bottom: 10px;
}
.about-section .counter .count {
  font-weight: 700;
  color: #20247b;
  margin: 0 0 5px;
}
.about-section .counter p {
  font-weight: 600;
  margin: 0;
}
mark {
    background-image: linear-gradient(rgba(252, 83, 86, 0.6), rgba(252, 83, 86, 0.6));
    background-size: 100% 3px;
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-color: transparent;
    padding: 0;
    color: currentColor;
}
/* .theme-color {
    color: #fc5356;
}
.dark-color {
    color: #20247b;
} */

/* review section */
.review-container{
    max-height: 30rem;
    overflow-y: scroll;
}
/* Styling the scrollbar */
.review-container::-webkit-scrollbar {
    width: 5px; /* Set the width of the scrollbar */
  }
  
  /* Styling the track (background of the scrollbar) */
  .review-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Light grey track */
    border-radius: 10px;
  }
  
  /* Styling the thumb (the draggable part of the scrollbar) */
  .review-container::-webkit-scrollbar-thumb {
    background: #10058C; /* Default thumb color */
    border-radius: 10px;
  }
  
  /* Hover state for the thumb */
  .review-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Darker color on hover */
  }
  
  /* Optional: Styling the scrollbar corner (for cross-axis scrollbars) */
  .review-container::-webkit-scrollbar-corner {
    background: #f1f1f1; /* Corner color */
  }
.review .rating{
    float: right;
}
/* star rating */
.review .star-rating,.rating-feedback .star-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.review .star-rating{ 
    justify-content: end;
}
.review .star,.rating-feedback .star {
    font-size: 18px;
    color: #ddd;
}
.rating-feedback .star{
    font-size: 30px;
    cursor: pointer;
}
.count-data .star{
  font-size: 25px;
}
.rating-feedback .star:hover,
.star.selected {
    color: gold;
}

/* end review section */

/* feedback submission */
.submit-feedback {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
}

.submit-feedback textarea {
    width: 100%;
    height: 100px;
    padding: 10px;
    font-size: 1em;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.submit-feedback button {
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.submit-feedback button:hover {
    background-color: #45a049;
}
/* end feedback submisson */