@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700");

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Poppins" !important;
  cursor: default;
}
body{
  background-color: var(--secondary);
}
.owl-dots {
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
:root {
  --golden: #FF9A00 !important;
  --lightgolden: #f3dfba !important;
  --primary: #001F3F;
  --secondary: #f1f7fd;
  --btn: #2E314B;
}

a {
  text-decoration: none;
  color: black;
}
h1,h2,h4{
  color: #2E314B;
}
h3{
  color: var(--golden);
  /* text-shadow: 1px 1px #000; */
}
.banner-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at center, #ecfcf1c6, #eebe65);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .banner {
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
   */

.banner-content .btxt {
  font-size: 45px;
}

.custom-iframe {
  width: 90%;
  height: 400px;
}

.pattern-img {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.pattern-overlay-color {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(at center, #f3dfba, #f3dfba);
  /* display: flex;
    justify-content: center;
    align-items: center; */
}

.pulse-button {
  -webkit-animation: pulse 1.5s infinite ease-in-out;
  animation: pulse 1.5s infinite ease-in-out;
}

.pulse-button2 {
  -webkit-animation: pulse2 1.5s infinite ease-in-out;
  animation: pulse2 1.5s infinite ease-in-out;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 10px 10px rgba(245, 211, 148, 0.8);
    /* Brighter and larger shadow */
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
    /* Shadow fades out */
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 10px 10px rgba(245, 211, 148, 0.8);
    /* Brighter and larger shadow */
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(191, 142, 50, 0);
    /* Shadow fades out */
  }
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 #f3dfba;
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}

@media (max-width: 1440px) {
  .btxt {
    font-size: 38px !important;
  }

  .imgg {
    margin-top: 39px;
  }
}

@media (min-width: 1024px) {
  .imgg {
    margin-top: 39px;
  }
}

.btn {
  background-color: var(--golden);
  color: var(--primary);
  border: solid 2px var(--primary);
  font-weight: 600;
  transition: box-shadow 0.5s;
}

.btn:hover {
  background-color: #fff;
  color: var(--primary);
  font-weight: 600;
  border: solid 2px var(--golden);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.5);
  /* Add shadow on hover */
}

.counter-number::after {
  content: "+";
  margin-left: 5px;
}

.counter-one::after {
  content: "M+";
  margin-left: 5px;
}

.static-rating {
  display: inline-block;
}

.static-rating .star {
  display: inline-block;
  font-size: 24px;
  color: #ffd700;
  /* Yellow color */
  margin-right: 5px;
}

.static-rating .star:last-child {
  margin-right: 0;
}

.input-group {
  border: none;
  /* Remove borders */
}

.input-group-prepend {
  margin-right: -1px;
  /* Adjust spacing */
}

.input-group-text {
  background-color: #fff;
  /* Set background color to transparent */
  border-right: none;
  /* Remove right border */
}

.form-control {
  border-left: none;
  /* Remove left border */
}

.input-group-text {
  border-right: 0px;
  /* background: #fff; */
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.form-control:focus {
  box-shadow: none;
}

.counter .counter-number {
  font-size: 25px;
  font-weight: 600;
}

.card-img-top {
  transition: transform 0.3s ease;
  /* Add smooth transition */
}

.card:hover .counter .counter-number {
  color: #f3dfba;
}

.text-justify {
  text-align: justify;
}

.contactmedia a {
  height: 40px;
  width: 40px;
  margin: 5px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  cursor: pointer;
  transition-duration: 0.4s;
  color: black;
}

.contactmedia a:hover {
  box-shadow: 0px 2px 15px 2px #fff;
}

.accordion-header.b {
  color: #fff;
}

.accordion-header button b {
  color: #000;
}

.accordion-button:not(.collapsed) {
  background-color: white;
}

.accordion-button {
  border: 2px solid #eee;
  border-radius: 10px !important;
  margin: 10px 0px;
  /* margin-bottom: 6px !important; */
}

.accordion-button:focus {
  color: black;
  border: 1px solid #eee;
  box-shadow: none !important;
}

#contact-button {
  position: fixed;
  bottom: 1px;
  z-index: 1000;
  width: 100%;
}

#contact-button {
  display: none;
  width: 100%;
  background-color: #1f2238;
  color: white;
}

.service .card:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* whatsaap button  */
.call-buton .cc-calto-action-ripple {
  z-index: 99999;
  position: fixed;
  right: 2rem;
  bottom: 3rem;
  width: 3rem;
  height: 3rem;
  padding: 1rem;
  border-radius: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  -webkit-animation: 0.6s linear infinite cc-calto-action-ripple;
  animation: 0.6s linear infinite cc-calto-action-ripple;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.call-buton .cc-calto-action-ripple i {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 2.2rem;
}

@-webkit-keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

@keyframes cc-calto-action-ripple {
  0% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.2), 0 0 0 5px rgba(37, 211, 102, 0.2),
      0 0 0 10px rgba(37, 211, 102, 0.2);
  }

  100% {
    -webkit-box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2),
      0 0 0 5px rgba(37, 211, 102, 0.2), 0 0 0 10px rgba(37, 211, 102, 0.2),
      0 0 0 20px rgba(37, 211, 102, 0);
  }
}

/* Mobile */
@media only screen and (max-width: 768px) {
  #contact-button {
    display: block;
  }

  .modal-sm {
    max-width: 400px !important;
  }
}

@media only screen and (max-width: 768px) {
  .custom-iframe {
    width: 100%;
    height: 200px;
    /* This will maintain the aspect ratio */
  }

  .col-sm-12.pl-0 img {
    width: 100%;
    /* Set image width to 100% for mobile devices */
    height: auto;
    /* Ensure aspect ratio is maintained */
  }
}

.vido {
  height: auto;
  width: auto;
  border-radius: 15px;
}

.vido iframe {
  border-radius: 15px;
}

.celebvideo .slick-next,
.slick-prev {
  display: none !important;
}

.our-services-box {
  padding: 10px;
  margin-bottom: 30px;
  width: 400px;
  min-height: 400px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.our-services-box:hover .our-services-content p.overlay-label {
  background-color: var(--golden) !important; /* red background on hover */
  transition: background-color 0.3s ease-in-out;
}


.point {
  margin: 0px 1px;
  /* padding: 0px 2px; */
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.207);
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #000;
}

@media only screen and (max-width: 576px) {
  .point {
    margin: 0px;
  }

  .point h5 {
    font-size: 12px;
  }

  .point img {
    width: 30px;
    height: 30px;
  }

  .banner-content h2 {
    font-size: 16px;
  }

  .banner-content h4 {
    font-size: 14px;
  }

  .banner-content p {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .celeb-content {
    font-size: 22px;
    /* Smaller size for mobile */
  }
}

@media only screen and (max-width: 768px) {
  .lower-footer {
    padding-bottom: 5px !important;
    /* Ensure there's enough space for the contact button */
  }
}

.banner-slider .slick-dots li button:before {
  color: #f3dfba !important;
}

.slick-list button {
  display: none;
}

.figcaption-style {
  background-image: linear-gradient(
    0deg,
    #1a1a1a 0%,
    rgba(26, 26, 26, 1) 10%,
    rgba(26, 26, 26, 0.79) 30%,
    transparent 100%
  );
  bottom: 0;
  width: 300px;
  font-size: 22px;
  padding: 10px 0;
  position: relative;
  /* Ensure the ::before is positioned relative to the figcaption */
}

.figcaption-style2 {
  margin-left: 15px !important;
  display: flex;
  border-left: 4px solid #f3dfba;
}

/* Hide figcaption by default */
.figcap {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-image: linear-gradient(
    0deg,
    #1a1a1a 0%,
    rgba(26, 26, 26, 1) -10%,
    rgba(26, 26, 26, 0.79) 90%,
    transparent 100%
  );
  bottom: -10px;
  width: 100%;
  font-size: 18px;
}

/* Show figcaption on hover */
.slide:hover .figcap {
  display: block;
  opacity: 1;
}

@media only screen and (max-width: 576px) {
  .banner-content2 {
    text-align: center !important;
  }

  /* .banner {
        height: 50vh !important;
    } */
}

.image-container {
  /* width: 100vw; */
  height: 90vh;
  background-size: contain;
  background-position: center;
  /* background-repeat: no-repeat; */
}

@media (max-width: 767px) {
  /* Hide the banner section on mobile devices */
  #banner {
    display: none;
  }
}

@media (min-width: 768px) {
  /* Hide the section on screens wider than 767px (i.e., desktop devices) */
  #mobile-banner {
    display: none;
  }
}

.red-line {
  text-decoration: line-through red;
  text-decoration-thickness: 4px;
}

#contact-button {
  position: fixed;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
}

#contact-button p {
  display: none;
  width: 100%;
  height: 50px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #f3dfba;
  color: white;
}

@media only screen and (max-width: 768px) {
  #contact-button p {
    display: block;
  }

  .choose-sec .choose-card {
    font-size: 20px !important;
  }
}

.video-gallery {
  position: relative;
}

.card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.card:hover a {
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
  .card iframe {
    width: 100%;
    height: 220px;
  }
}

.bordered {
  border: 2px solid #000;
  /* You can adjust the color and thickness */
  border-radius: 5px;
  /* Optional: Add rounded corners */
}

.card iframe {
  border-radius: 10px;
}

.heading {
  display: flex;
  align-items: center;
  justify-content: center;
}

.heading::before,
.heading::after {
  content: "";
  border-top: 2px solid #000;
  width: 25%;
}

.heading::before {
  margin-right: 50px;
  /* Adjust the space between the line and the heading */
}

.heading::after {
  margin-left: 50px;
  /* Adjust the space between the line and the heading */
}

/* Hide the pseudo-elements on mobile view */
@media (max-width: 767.98px) {
  .heading::before,
  .heading::after {
    display: none;
  }

  .heading {
    font-size: 26px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .txtblow {
    display: block;
  }

  .headd {
    font-size: 22px;
  }
}

.transition-transform {
  transition: transform 0.3s ease;
}

.hover\:scale-105:hover {
  transform: scale(1.05);
}
.our-services-box {
  background-color: #ffffff; /* Light background */
  border-radius: 20px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Shadow */
  transition: transform 0.3s, box-shadow 0.3s; /* Animation on hover */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* This will ensure all boxes are of the same height */
  min-height: 415px;
}

.our-services-box:hover {
  transform: translateY(-5px); /* Lift effect on hover */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.our-services-content {
  padding: 10px; /* Space inside the content */
  flex: 1; /* Ensures that the boxes take up the same height */
}

.service-description {
  color: #333;
  transition: color 0.3s ease;
}

.our-services-content:hover .service-description {
  color: #f3dfba; /* Change color on hover */
}

#choose {
  background-image: url("images/");
  background-size: cover;
  background-position: center;
}

@media (max-width: 768px) {
  #choose {
    background-image: none !important; /* Use !important to enforce the rule */
  }
}

@media (max-width: 767px) {
  h2.text-center {
    color: #000000 !important;
  }
}

@media (max-width: 767px) {
  .vido {
    height: auto;
    width: auto;
    border-radius: 15px;
  }
}
/************** brands  *******/
.brands {
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

#brand-carousel .owl-dots {
  display: none !important;
}
/********* trusted by  *******/
.info-card {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px 15px 40px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 175px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content {
  flex-grow: 1;
}

.info-card h2 {
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--primary);
  transition: color 0.3s;
}

.info-card p {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
  transition: color 0.3s;
}

.info-card .underline {
  height: 4px;
  width: 60px;
  background-color: var(--primary);
  border-radius: 3px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: background-color 0.3s;
}

.number {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
  transition: color 0.3s;
}

.unit {
  font-size: 1rem;
  color: #444;
}

.info-card:hover {
  background-color: var(--primary);
}

.info-card:hover h2,
.info-card:hover p,
.info-card:hover .number,
.info-card:hover .unit {
  color: #fff !important;
}

.info-card:hover .underline {
  background-color: #fff !important;
}

/* Responsive */
@media (max-width: 575.98px) {
  .info-card {
    padding: 20px 10px 35px;
  }
  .info-card h2 {
    font-size: 1.5rem;
  }
  .info-card p {
    font-size: 0.9rem;
  }
}
/**************** Advanced Treatment **************/
.collapse-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding-top 0.4s ease;
}

.collapse-content.show {
  padding-top: 10px;
  max-height: 200px; /* Adjust height for your content */
}

.collapse-card {
  cursor: pointer;
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}
/****************** review *******************/
.carousel-box {
    position: relative;
    max-width: 1000px;
    margin: auto;
}

.owl-carousel .review .item {
    max-width: 250px;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-box {
    background-color: #fff !important;
    border: 1px solid #ddd !important;
    padding: 20px !important;
    text-align: center !important; 
    min-height: 220px !important; 
    height: auto !important; 
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: space-between !important; /* Adjust spacing for a neat layout */
    border-radius: 10px !important;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}


.profile-pic {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    display: inline-block;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
}

.profile-header b {
    font-size: 16px;
    color: #333;
}

.verified-icon {
    width: 16px !important; /* Explicit width */
    height: 16px !important; /* Explicit height */
    display: inline-block; /* Ensures it respects the dimensions */
    object-fit: contain; /* Maintains the aspect ratio */
    margin-left: 5px; /* Space between the name and icon */
    vertical-align: middle; /* Aligns with the text baseline */
}

.stars {
    color: gold;
    font-size: 18px; /* Adjust size of stars */
    display: flex;
    justify-content: center; /* Center stars horizontally */
}

.testimonial-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    text-align: center;
}

.nav-left,
.nav-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #555;
    cursor: pointer;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%; /* Ensures the button is circular */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 50px; /* Fixed width to make it circular */
    height: 50px; /* Fixed height to make it circular */
    display: flex;
    justify-content: center; /* Center the icon horizontally */
    align-items: center; /* Center the icon vertically */
}

.nav-left:hover,
.nav-right:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.nav-left {
    left: -65px;
}
.nav-right {
    right: -65px;
}

@media (max-width: 600px) {
    .nav-left,
    .nav-right {
        display: none;
    }
}
.accordion-body {
  background-color: var(--primary) !important;
  color: #fff !important;
  border-radius: 10px;
}
/************ Video **************/
.video-thumb {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 12px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px !important;
  height: 50px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

@media (min-width: 768px) {
  .video-thumb {
    height: 300px;
  }
}

@media (min-width: 992px) {
  .video-thumb {
    height: 350px;
  }
}
/**************** Doctor ***************/
.doctor-card-clean {
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* default no shadow */
}

.shadow-hover:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
}

.doctor-img {
  transition: transform 0.3s ease;
}

.shadow-hover:hover .doctor-img {
  transform: scale(1.05);
}

.doctor-points li {
  margin-bottom: 0.6rem;
  font-size: 15.5px;
  color: #333;
}
/*************** Contact Button ****************/
/* Base button style already defined for .cc-calto-action-ripple stays the same */

/* WhatsApp button positions */
.whatsapp-btn .cc-calto-action-ripple {
  left: 2rem;
  right: auto;
  background-color: #28a745;
}

/* Call button positions */
.call-btn .cc-calto-action-ripple {
  right: 2rem;
  left: auto;
  background-color: #dc3545;
}

/* Desktop override: move both to right side stacked vertically */
@media(min-width: 768px) {
  .whatsapp-btn .cc-calto-action-ripple {
    left: auto;
    right: 2rem;
    bottom: 6rem; /* stack higher up */
    margin-bottom: 20px;
  }

  .call-btn .cc-calto-action-ripple {
    right: 2rem;
    bottom: 3rem;
  }
}
/**************** Review ******************/
  .shadow-effect {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    border: 1px solid #ECECEC;
    box-shadow: 0 19px 38px rgba(0, 0, 0, 0.10), 0 15px 12px rgba(0, 0, 0, 0.02);
  }

  #customers-testimonials .shadow-effect p {
    font-size: 17px;
    line-height: 1.5;
    margin: 0 0 17px 0;
    font-weight: 300;
  }

  #customers-testimonials .item {
    text-align: center;
    /* padding: 50px; */
    margin-bottom: 10px;
    opacity: .2;
    -webkit-transform: scale3d(0.8, 0.8, 1);
    transform: scale3d(0.8, 0.8, 1);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }

  #customers-testimonials .owl-item.active.center .item {
    opacity: 1;
    -webkit-transform: scale3d(1.0, 1.0, 1);
    transform: scale3d(1.0, 1.0, 1);
  }

  .owl-carousel .owl-item img {
    transform-style: preserve-3d;
  }

  .static-rating {
    display: inline-block;
  }

  .static-rating .star {
    display: inline-block;
    font-size: 20px;
    color: #FFD700;
    /* Yellow color */
    margin-right: 5px;
  }

  .static-rating .star:last-child {
    margin-right: 0;
  }