.social-icon {
  margin-right: 10px; /* Space between icons */
  color: black;
}

.scroll-container {
  overflow-x: auto;
  /* Allow horizontal scrolling */
  display: flex;
  flex-wrap: nowrap;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 5px 30px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.scroll-container::-webkit-scrollbar {
  display: none;
}

/* Keep the rest of your CSS */
.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  /* Remove background color */
  color: black;
  /* Set icon color to black */
  border: none;
  padding: 10px;
  font-size: 24px;
  cursor: pointer;
  z-index: 1;
}

.left-btn {
  left: 0;
}

.right-btn {
  right: 0;
}

.hero-img {
  position: relative; /* Ensure positioning context for the shadow */
}

.shadow-circle {
  position: absolute;
  top: 57%;
  left: 49%;
  width: 50%; /* Adjust size as needed */
  height: 50%; /* Adjust size as needed */
  background: #f4fafd; /* Light shadow color */
  border-radius: 50%; /* Make it circular */
  transform: translate(-50%, -50%); /* Center the shadow */
  z-index: 0; /* Behind the image */
}

.hero-img img {
  position: relative; /* Keep the image above the shadow */
  z-index: 1; /* Ensure the image is above the shadow */
}
style > .overlay-icon {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.overlay-icon:hover {
  transform: scale(1.1); /* Slightly enlarges the icon */
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.3); /* Adds a shadow on hover */
}

/* Scrollable Container */
.scrollable-container {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
}

.scrollable-container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.scrollable-container .col-lg-4 {
  min-width: 300px; /* Adjust width as needed */
  scroll-snap-align: start;
}

/* Hide scrollbar */
.scrollable-container::-webkit-scrollbar {
  display: none;
}

/* Dot Indicators */
.dot-indicators {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  border-radius: 50%;
}

.dot.active {
  background-color: #000;
}
.underlined {
  position: relative; /* Position for the pseudo-element */
  display: inline-block; /* Ensure underline only affects the text */
}

.underlined::after {
  content: ''; /* Create an empty content for the underline */
  display: block; /* Make it a block element */
  height: 2px; /* Set the height of the underline to a lighter value */
  width: 100%; /* Full width under the text */
  background-color: rgba(252, 126, 1, 0.6); /* Use rgba for lighter color */
  position: absolute; /* Position relative to the h3 */
  bottom: -5px; /* Positioning it below the text */
  left: 0; /* Align to the left */
}
.team.section {
  position: relative; /* Keep the section relative for positioning */
  padding: 60px 0; /* Adjust padding to create space for the card */
  overflow: visible; /* Ensure overflow is visible to show the card */
}

.container .card {
  position: absolute; /* Absolute positioning to allow for overlap */
  top: -90px; /* Move the card up to create the desired effect */
  left: 50%; /* Center the card */
  transform: translateX(-50%); /* Translate to ensure centering */
  width: 900px; /* Set width to a smaller size */
  background-color: #f5f5f5; /* Card background color */
  border-radius: 15px; /* Rounded corners for the card */
  padding: 15px; /* Adjusted padding inside the card */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Shadow for depth */
  z-index: 10; /* Ensure the card is above other content */
}


.card-body h2,
.card-body p {
  margin: 0; /* Remove default margin */
}

@media (max-width: 767px) {
  /* Adjust card styling for mobile */
  .container .card {
    position: static; /* Remove absolute positioning in mobile view */
    width: 90%; /* Full width */
    margin: 20px; /* Add spacing between card and team section */
    transform: none; /* Reset transform */
  }

  .container .card .card-body {
    padding: 0px; /* Reduce padding for mobile */
  }

  .container .card .section-title h2 {
    font-size: 1.5rem; /* Adjust heading size */
  }

  .container .card .section-title p {
    font-size: 0.7rem; /* Adjust paragraph font size */
  }
}

.fac-btn {
  display: inline-block; /* Make it an inline-block for better control */
  padding: 10px 20px; /* Add padding for a comfortable click area */
  color: black; /* Text color */
  border: none; /* Remove default border */
  border-radius: 5px; /* Slightly rounded corners */
  text-align: center; /* Center the text */
  text-decoration: none; /* Remove underline */

  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transition effects */
  cursor: pointer; /* Change cursor to pointer on hover */
  border: 1px solid #fc7e01;
}

.fac-btn:hover {
  background-color: #fc7e01; /* Darken the button color on hover */
  transform: translateY(-2px); /* Slightly lift the button on hover */
  color: white; /* Text color */
}

.fac-btn:active {
  transform: translateY(1px); /* Press down effect */
}

.col-md-3 {
  display: flex;
  flex-direction: column; /* Stack items vertically */
  justify-content: space-between; /* Space out items within the column */
  align-items: center; /* Center items horizontally */
  height: 100%; /* Ensure the column takes up the full height */
}

.service-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.limited-edition {
  position: absolute;
  top: 5px;
  background-color: #fc7e01; /* Background color for the label */
  color: white; /* Text color */
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px; /* Adjust font size as needed */
  z-index: 10; /* Ensure it appears on top of the image */
}

.product-description {
  display: block; /* Ensures it's a block-level element for centering */
  text-align: center; /* Center the text */
  font-size: 12px;
  color: darkgrey;
  margin-top: -40px;
}
.rating {
  text-align: center; /* Center the stars */
}
.star {
  color: orange;
  font-size: 10px;
}
.book-btn {
  display: inline-block;
  padding: 5px 15px;
  color: white;
  background-color: #fc7e01;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}

.book-btn:hover {
  background-color: #d43f00; /* Hover effect */
  transform: scale(1.05); /* Slight zoom effect */
  color: white;
}

.col-lg-4 {
  position: relative;
}

.dash-container {
  position: absolute;
  top: -130px; /* Adjusts the position from the top */
  left: 80px; /* Adjusts the position from the left */
  display: flex;
  gap: 6px; /* Space between each dash */
}

@media (max-width: 768px) {
  .dash-container {
    position: relative; /* Use relative positioning for mobile */
    display: flex;
    gap: 6px;
    top: 0; /* Adjust to remove the top margin */
    left: 0; /* Adjust to remove the left margin */
    flex-wrap: wrap; /* Allows the items to wrap if necessary */
    justify-content: center; /* Centers the items horizontally */
    margin-top: 20px; /* Optional margin to separate from other content */
  }
}
.dash {
  width: 15px; /* Width of each dash */
  height: 3px; /* Height of each dash */
}

.dash.orange {
  background-color: #fc7e01;
}

.dash.grey {
  background-color: grey;
}
#stats {
  background-color: #f2f7f7;
  position: relative;
  padding-bottom: 30px; /* Adjust the space between the content and the line */
}

#stats::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%; /* Adjust width as needed */
  height: 2px; /* Line thickness */
  background-color: black;
}
/* Card positioning and style */
.bottom-card-wrapper {
  position: absolute;
  bottom: -50px; /* Move card half outside FAQ section */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10; /* Ensure it’s above the contact section */
  width: 50%;
}

.bottom-card {
  background-color: #fc7e01;
  padding: 15px 20px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
}

.start-text {
  font-size: 1.2rem;
  padding-right: 10px;
}

.social-icons {
  display: flex;
}

.social-icon {
  font-size: 1.2rem;
  color: #fff;
}

.contact-us {
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  padding-left: 10px;
}
.button-container {
  background-color: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-us {
  font-weight: bold;
  color: #000;
  margin-right: 10px;
  text-decoration: none;
}

.contact-us:hover {
  color: #00474c; /* Optional hover color */
}

.social-icons {
  display: flex;
}

.social-icon {
  color: #000;
  font-size: 1.2rem;
}

.social-icon:hover {
  color: #fc7e01; /* Optional icon hover color */
}

/* Responsive adjustments for mobile view */
@media (max-width: 768px) {
  .bottom-card-wrapper {
    position: relative;
    bottom: 0;
    width: 100%;
    transform: none;
    margin-top: 20px;
    left: 0;
  }

  .bottom-card {
    padding: 10px 15px;
    width: 100%; /* Ensure full width on mobile */
    box-shadow: none;
  }

  .start-text {
    font-size: 0.8rem;
  }

  .contact-us {
    font-size: 0.9rem; /* Smaller font for mobile */
  }

  .social-icons {
    justify-content: center;
    width: 30%;
  }

  .social-icon {
    font-size: 1.5rem;
    margin: 0 10px;
  }

  .quality-teachings {
    flex-direction: column; /* Stack the quality teaching items on top */
    gap: 10px;
    margin-top: 20px;
  }

  .quality-teaching {
    font-size: 12px; /* Smaller text size for mobile */
  }
}
/* Default style */
.overlay-container {
  position: absolute;
  right: 30px;
  bottom: 100px;
}

/* Adjust for mobile view */
@media (max-width: 768px) {
  .overlay-container {
    bottom: 20px; /* or any other value that works better on mobile */
    right: -1px;
    bottom: 10px;
  }
}
/* Default style for desktop */
.responsive-img {
  max-height: 200px;
  width: auto;
}

/* Adjust for mobile view */
@media (max-width: 768px) {
  .responsive-img {
    max-height: 150px;
  }
}

p {
  color: grey;
}
