.sub-heading h2 {
  padding: 30px 0 20px;
  font-size: 38px;
  font-weight: 200;
  line-height: 1.25;

}
.sub-heading h2 strong {
  font-weight: 800;
  display: block;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  color: #663399;
}
  

.page-header h1.clinic {
  text-align: left;
}
.page-header h2.clinic{
  text-align: left;
  padding-bottom: 0;
}

.review-content {
    width: 100%;
    text-align: left;
  padding: 0;
}

.rating {
    display: flex;
    align-items: center;
    margin-top: 10px;
}
.stars {
    color: #f8d32a;
    font-size: 30px;
    margin-right: 10px;
}
.rating-text {
  font-size: 16px;
  color: white;
  margin: 0;
}
@media (max-width: 768px) {

  .review-content {

      text-align: center;
  }
  .rating {
      justify-content: center;
  }

  .stars {
      font-size: 25px;
  }
  .rating-text {
      font-size: 18px;
  }
}





 .cta-button {
    background: linear-gradient(45deg, #FFD700, #FFC107);
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
    box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
   margin: 20px 0 30px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #FFC107, #FFA000);
    box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.6);
}

p.faq-link    {
  font-size: 18px;
  color: #fff;
  margin-top: 20px;
}
   
p.faq-link a{
  color: #994ce5;
 }
 p.faq-link a:hover{
  color: #fff;
 }

   
   
   
.reviews-section {
    width: 90%;
    margin: auto;
    max-width: 1200px;
}


.reviews-section .arrow-buttons {
    display: flex;
    gap: 10px;
}

.reviews-section .arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.reviews-section .arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.reviews-section .reviews-container {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    padding: 10px 0; /* Added padding */
}

.reviews-section .review {
    flex: 0 0 calc(33.33% - 56px); /* Ensures 3 reviews fit within the container */
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
    min-height: 160px;
}

/* Text Styling */
.reviews-section .review p.name {
  font-size: 22px;
  font-weight: bold;
}
.reviews-section .review p.location {
  font-size: 16px;
  font-weight: bold;
}
.reviews-section .review p.date {
  font-size: 16px;
  color: #663399;
}
   
   
   
   
.reviews-section .review p.main {
  font-style: italic;
  color: #333;
}

.reviews-section .review span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-section .review {
      flex: 0 0 calc(50% - 40px); /* Show 2 reviews at a time */
  }
}

@media (max-width: 768px) {
  .reviews-section .review {
     flex: 0 0 calc(100% - 40px);
  }



  .reviews-section .arrow-buttons {
      margin-top: 10px;
  }
}

.video-wrapper {position: relative; padding-bottom: 56.25%; /* 16:9 */  padding-top: 25px;}
.video-wrapper iframe {position: absolute; top: 0; left: 0; width: 100%; height: 100%;}

   
.banner-multiple {
  width: 100%;
  display:flex;
}

.banner-multiple .image {
  width: 33.33%;
  height: auto;
  display: inline-block;

}
.banner-multiple .image img {
  display: block;
  width: 100%;
  height: auto;
}
   
.faq {
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.faq h2 {
  font-size: 1.2em;
  background-color: #e9ecef;
  padding: 10px;
  cursor: pointer;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  transition: background-color 0.5s ease;
}
.faq h2:hover {
  background-color: #d6d8db;
}
.faq h2::after {
  content: '\25BC'; /* Downward arrow */
  font-size: 1em;
  transition: transform 0.5s ease;
}
.faq p {
  padding: 10px;
  background-color: #fff;
  border: none;
  margin: 0;
  border-radius: 0 0 10px 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}
.faq.active h2::after {
  transform: rotate(180deg);
}
.faq.active p {
  max-height: 500px;
  opacity: 1;
  padding: 10px;
}
   
   
.info-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  max-width: calc(100% - 56px);
  margin: 20px auto 0;
}

.info-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  colour: #333;
}

.info-item {
  margin-bottom: 10px;;
}

.info-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;;
  colour: #444;
}

.opening-times ul {
  list-style-type: none;
  padding-left: 0;
}

.opening-times li {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid #eee;
}

.social-media {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.social-media a {
  text-decoration: none;
  font-size: clamp(1rem, 5vw, 1.5rem);
  color: #555;
  display: inline-block;
  transition: color .3s ease;
}
.social-media a:hover {
  color: #663399;
}


.tel-desktop {
	color: #4d4d4d;
	font-size: 20px;
	font-weight: 500;
	display: inline
}
.tel-desktop i {
	margin-right: 20px
}
  
span.reveal {
	cursor: pointer;
	text-decoration: underline
}
  
a.tel-mobile {
  display:none;
}
  
 a.tel-mobile span.reveal {
padding: 10px 20px;
  text-decoration: none;
  background-color: #464646;
  color: #fff;
  border-radius: 5px;
}
a:hover.tel-mobile span.reveal {  
  background-color: #994CE5;
  transition: 0.5s;
}
  
  
@media (max-width: 768px) {
  .tel-desktop {
		display: none
	}
  a.tel-mobile {
    display:contents;
  }
   a.tel-mobile span.reveal {
     width: 100%;
     padding: 10px 0;
     display: block;
     margin: 0 auto;
     text-align: center;
  }
  .info-section {
    background-color: #fff;
    padding: 0;
    border-radius: 10;
    box-shadow: 0 0;
    max-width: 100%;
    margin: 20px auto 0;
  }
  .social-media {
    gap: 0.5rem;
  }
  .social-media a {
    font-size: 1.5rem;
  }
  
    
}
   


   

 .map-container {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}





.expert {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 60ch;
  margin: 0 auto;
}
.expert img {
  width: 7rem;
  height: 7rem;
  border-radius: 9999px;
  flex-shrink: 0;
}
.expert-details h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.expert-details p {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}


.staff-section {
 background: #000;
}

.staff-section h2,
.staff-section p
{
 color: #fff;
}

.staff-section p.large {
 font-size: 26px;
}
   
   
   
   .staff-section .staff {
      background-color: #111;
      box-sizing: border-box;
      padding: 20px;
      border-radius: 8px;
  }
  .staff-section .staff img {
      max-width: 100%;
      height: auto;
      border-radius: 4px;
  }
  .staff-section .staff h3 {
      margin: 10px 0 0;
      color: #fff;
  }
  .staff-section .staff p.subtitle {
    font-size: 16px;
    color: #994ce5;
  }
   .staff-section a.more{
    font-size: 12px;
    color: #994ce5;
   }
   .staff-section a:hover.more{
    color: #fff;
   }
   
   
 
   
   
   
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}


.tab-button {
   border: 1px solid #663399;
  background: #fff;
  color: #000;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.tab-button.active, .tab-button:hover {
   background-color: #663399;
  color: #fff;
}
   



.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.treatment-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  padding: 20px;
  border-top: 1px solid #ddd;
}

.treatment-item .item-info p {
  margin: 0;
  font-size: 1.1em;
}

.treatment-item a.treatment-link {
  padding: 5px 10px;
  background-color: #ffffff;
  color: #585858;
  border: 1px solid #BCBCBC;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display:block;
  width: 180px;
  text-align: center;
}

.treatment-item a.treatment-link:hover {
  background-color: #585858;
  color: #fff;
}
.treatment-item .price-select {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.treatment-item .price-select p {
  margin: 0;
  font-size: 20px;
}

.treatment-item .select-btn {
  padding: 10px 15px;
  background-color: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
}

.treatment-item .select-btn:hover {
  background-color: #218838;
}

@media (max-width: 600px) {
  .tabs {
    flex-direction: column;
    align-items: center;
  }

  .item {
    flex-direction: column;
    align-items: flex-start;
  }
  .treatment-item .item-info {
    width: 100%;
  }

  .treatment-item .price-select {
    width: 100%;
    justify-content:center;
  }
  
  .treatment-item {
    padding: 20px;
    text-align: center;
  }
  .treatment-item a.treatment-link {
    margin: 10px auto;
  }

  .treatment-item .select-btn {
    margin: 10px auto;
  }

  
  

  
}



/* Marquee container */
.marquee { position: relative; overflow-x: auto; overflow-y: hidden; width: 100%; margin: 1.5rem 0; scrollbar-width: none; background-color: #fff; }
.marquee::-webkit-scrollbar { display: none; }

/* Inner wrapper for scrolling */
.marquee__inner { display: flex; white-space: nowrap; align-items: flex-start; }

/* Each review card */
.marquee__item {
  flex: 0 0 300px; width: 300px; background: #fff; border: 1px solid #ddd; border-radius: 8px;
  padding: 1rem; margin-right: 1.5rem; font-size: 1rem; color: #333; line-height: 1.4;
  box-sizing: border-box; white-space: normal; position: relative;
}

/* Star rating styling */
.stars { color: #f5a623; margin-bottom: 0.5rem; }

/* Read more button */
.read-more { display: inline-block; margin-top: 0.5rem; color: #007BFF; cursor: pointer; font-weight: 500; }



   
  
.marquee__item p.name {
  font-size: 22px;
  font-weight: bold;
}
.marquee__item p.location {
  font-size: 16px;
  font-weight: bold;
}
.marquee__item p.date {
  font-size: 16px;
  color: #663399;
}
   
.marquee__item p.review-text {
  font-style: italic;
  color: #333;
  font-size: 16px;
}

.marquee__item span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}
  
  
  
/* Responsive adjustments */
@media (max-width: 1024px) { 
  .marquee__item { flex: 0 0 250px; width: 250px; margin-right: 1rem; } 
  .marquee__item {
    flex: 0 0 250px;
    width: 250px;
    margin-right: 1rem;
  }
}
@media (max-width: 768px) { 
  .marquee__item { flex: 0 0 80%; width: 80%; margin-right: 1rem; } 
  .marquee__item {
    flex: 0 0 80%;
    width: 80%;
    margin-right: 1rem;
  }
}