.one-link-text{
flex-grow:1;
}

.one-link-card{
display: flex;
flex-direction: column;
}


.google-review{
 float: right;
text-align: right;
}

.review-heading {
    padding: 0 20px;
}

.city-list a::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23035B87'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 6px;
    vertical-align: middle;
}

.city-location::before{
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23 23' fill='%23035B87'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5S10.62 6.5 12 6.5s2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.city-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* 1 column by default */
  row-gap: 10px;
  font-size: 18px;
  font-weight: bold;
  font-family: Garamond;
}

/* Small Mobile (>=320px) */
@media (min-width: 376px) {
  .city-list {
      grid-template-columns: repeat(2, 1fr); /* 2 columns */
  }
}

/* Standard Mobile (>=680px) */
@media (min-width: 768px) {
  .city-list {
      grid-template-columns: repeat(3, 1fr); /* 3 columns */
  }
}

/* Tablets (>=769px) */
@media (min-width: 1024px) {
  .city-list {
      grid-template-columns: repeat(4, 1fr); /* 4 columns */
  }
}

/* Laptops & Larger Screens (>=1025px) */
@media (min-width: 1200px) {
  .city-list {
      grid-template-columns: repeat(5, 1fr); /* 5 columns */
  }
}

.text-center{
text-align:center;
width: 90%;
margin-left: auto;
margin-right: auto;
}
.review-widget {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0px;
    justify-content: center;
  }
  
  body.page-id-2 .review-widget {
    padding: 20px !important; /* Keep original padding on page ID 2 */
}
  
.review-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 100%; /* Full width by default */
  flex: 1 1 100%;
  box-sizing: border-box;
  text-align: left;
  margin-bottom: 10px;
}
  .review-card h3 {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px; 
  }
  .review-card a:hover{

    text-decoration: underline;
  }
  
  .review-card .date {
    font-size: 14px;
    color: #474646;
    margin-bottom: 10px;
    margin-left: 50px;
    margin-top: -16px;
  }
  
  .review-card .stars {
    color: #f5b301;
    font-size: 16px;
  }
  
  .review-card .review-text {
    font-size: 17px;
    margin-bottom: 10px;
  }
  
  .review-card .show-more {
    font-size: 16px;
    
  }
  
  .review-card .hidden {
    display: none;
  }
  
  
  /* Tablet view (481px and up) */
@media (min-width: 481px) {
  .review-card {
      flex: 1 1 calc(50% - 20px);
  }
}

/* Desktop view (769px and up) */
@media (min-width: 769px) {
  .review-card {
      flex: 1 1 calc(25% - 20px);
      max-width: 300px;
  }
}

@media (min-width: 971px) {
  .review-card {
      flex: 1 1 calc(25% - 20px);
      max-width: 300px;
  }

}

@media (min-width: 769px) and (max-width: 970px) {
  .review-card {
      flex: 1 1 calc(33% - 20px);
      max-width: 300px;
  }
}


  .review-header {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between profile icon and text */
}

/* Circular Profile Icon */
.profile-icon {
    width: 40px;
    height: 40px;
    background-color: #0a5ca8; /* Dark blue */
    color: white;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
}

.profile-icon1{
  background-color: #00897B;
}
.profile-icon2{
  background-color: #455A64;
}
.profile-icon3{
  background-color: #689F38;
}
.profile-icon4{
  background-color:#5D4037;
}
.profile-icon5{
  background-color: #512DA8;
}
.profile-icon6{
  background-color: #BF360C;
}

.review-card h3::after {
  content: ""; /* Required for pseudo-elements */
  display: inline-block;
  width: 16px; /* Adjust size */
  height: 16px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-3 0 262 262" preserveAspectRatio="xMidYMid"><path d="M255.878 133.451c0-10.734-.871-18.567-2.756-26.69H130.55v48.448h71.947c-1.45 12.04-9.283 30.172-26.69 42.356l-.244 1.622 38.755 30.023 2.685.268c24.659-22.774 38.875-56.282 38.875-96.027" fill="%234285F4"/><path d="M130.55 261.1c35.248 0 64.839-11.605 86.453-31.622l-41.196-31.913c-11.024 7.688-25.82 13.055-45.257 13.055-34.523 0-63.824-22.773-74.269-54.25l-1.531.13-40.298 31.187-.527 1.465C35.393 231.798 79.49 261.1 130.55 261.1" fill="%2334A853"/><path d="M56.281 156.37c-2.756-8.123-4.351-16.827-4.351-25.82 0-8.994 1.595-17.697 4.206-25.82l-.073-1.73L15.26 71.312l-1.335.635C5.077 89.644 0 109.517 0 130.55s5.077 40.905 13.925 58.602l42.356-32.782" fill="%23FBBC05"/><path d="M130.55 50.479c24.514 0 41.05 10.589 50.479 19.438l36.844-35.974C195.245 12.91 165.798 0 130.55 0 79.49 0 35.393 29.301 13.925 71.947l42.211 32.783c10.59-31.477 39.891-54.251 74.414-54.251" fill="%23EB4335"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px; /* Space between text and icon */
  vertical-align: middle;
}