.main {
  width: 100%;
  height: 100%;
}

body {
  padding: 0px;
  background-color: white;
  color: black;
  font-size: 25px;
}

.dark-mode {
  background-color: black;
  color: white;
}

.header {
  width: 100%;
  height: 40px;

  display: flex;
}

.head {
  width: 25%;
  height: 100%;
  display: flex;
}

.minus {

  border-radius: 50%;
  margin-left: 30px;
  text-align: center;
  margin-top: 05px;
  width: 30px;
  height: 30px;
  background-color: gray;
  font-weight: bold;
  color: white;
}

.head button {
  width: 70px;
  font-size: 14px;
  height: 90%;
  margin-top: 02px;
  border: none;
  background-color: sienna;
  font-weight: bold;
  color: white;
  border-radius: 10px;
}

.minus a {
  text-decoration: none;
  color: black;
}

.head a i {
  margin-left: 30px;
  margin-top: 03px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  padding-top: 07px;
  background-color: #ff9933;
  color: black;
}


.head a i:hover {
  margin-left: 30px;
  margin-top: 03px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-align: center;
  padding-top: 07px;
  background-color: black;
  color: white;
}


.head a {
  text-decoration: none;
  color: black;
}







.navbar {
  background-color: lightgrey;
  height: 60px;
}

.navbar-brand {

  color: #007bff;
  margin-left: 50px;
  font-size: 25px;
}
.navbar-brand span {
  margin-left: 60px;
}




.navbar img {
  height: 60px;

}

.navbar-nav .nav-link {
  color: #495057;
  padding: 0.5rem 1rem;
  margin-left: 20px;
}

.carousel-item img {
  height: 450px;
  object-fit: cover;
  width: 100%;
}

.section {
  width: 100%;
  height: 520px;
  background-color: grey;
  padding-top: 30px;
}

.about {
  width: 95%;
  height: 450px;
  margin-left: 02%;
  margin-top: 0px;
  display: flex;
  background-color: white;
  border-radius: 10px;
}

.about2 {
  width: 50%;
  height: 100%;
  animation: slideInLeft 1s ease-in-out forwards;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}


.about2 h2 {
  font-size: 20px;
  margin-left: 40px;
  margin-top: 20px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}

.about2 h1 {
  margin-left: 40px;
  font-size: 30px;
  margin-top: 20px;
}


.about2 p {
  text-align: justify;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15px;
  font-size: 18px;
}

.about2 img {
  width: 100%;
  height: 100%;
  padding: 20px;
}


.tretment {
  width: 100%;
  height: 300px;
  display: flex;
}

.treat {
  width: 33.3%;
  height: 100%;
  text-decoration: none;
  background-color: lightgray;
  margin-top: 15px;
  animation: slideInLeft 2s ease-in-out forwards;
}

.treat img {
  height: 220px;
  width: 95%;
  margin-left: 05px;
}


.treat a {
  text-decoration: none;
}

.treat h1 {
  text-align: center;
  font-size: 20px;
  text-decoration: none;
  color: black;
  margin-top: 22px;
}

.testimonials {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(img/testi.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(1px);
  /* Adjust the blur intensity as needed */
  z-index: -1;
  /* Ensures the blurred image stays behind the content */
}

.testimonials h1 {
  position: relative;
  text-align: center;
  color: white;
  padding-top: 50px;
  z-index: 1;
  /* Ensures the content stays above the blurred background */
}



.testimonial-slider {
  width: 50%;
  margin: 50px auto;
  padding: 20px;
  margin-top: 120px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  text-align: center;
  opacity: 0;
  color: white;
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}



.testimonial.active {
  display: block;
  opacity: 1;
  transform: scale(1.05);
}

.review {
  font-size: 25px;
  color: white;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: bold;
  font-family: Arial, Helvetica, sans-serif;
}

.reviewer {
  font-size: 25px;
  font-weight: bold;
  color: white;
}

.time {
  font-size: 14px;
  color: white;
}

.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.controls span {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  user-select: none;
}

.controls span:hover {
  color: #007BFF;
}



.contact {
  width: 100%;
  height: 500px;
  display: flex;

  padding: 0;
}

.contact2 {
  width: 50%;
  height: 100%;
}

.ifram {
  width: 100%;
  height: 400px;
  margin-top: 80px;
}


.background {
  display: flex;
  min-height: 100vh;
}

.container {
  flex: 0 1 700px;
  margin: auto;
  padding: 10px;
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}

.screen:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  z-index: -1;
}

.screen-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.screen-header-left {
  margin-right: auto;
}

.screen-header-button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}

.screen-header-button.close {
  background: #ed1c6f;
}

.screen-header-button.maximize {
  background: #e8e925;
}

.screen-header-button.minimize {
  background: #74c54f;
}

.screen-header-right {
  display: flex;
}

.screen-header-ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}

.screen-body {
  display: flex;
}

.screen-body-item {
  flex: 1;
  padding: 50px;
}

.screen-body-item.left {
  display: flex;
  flex-direction: column;
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #ea1d6f;
  font-size: 26px;
}

.app-title:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #ea1d6f;
}

.app-contact {
  margin-top: auto;
  font-size: 8px;
  color: #888;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  transition: border-color .2s;
}

.app-form-control::placeholder {
  color: #666;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #ea1d6f;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #b9134f;
}

.credits {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  color: #ffa4bd;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: normal;
}

.credits-link {
  display: flex;
  align-items: center;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

.dribbble {
  width: 20px;
  height: 20px;
  margin: 0 5px;
}







.footer {
  width: 100%;
  height: 450px;
  display: flex;
  margin-top: 30px;

}


.foot {
  width: 25%;
  height: 100%;
  margin-top: 40px;
}

.foot h1 {
  text-align: center;
  font-size: 25px;
}

.foot p a {
  margin-left: 100px;
  text-decoration: none;
  color: black;
}

.foot p {
  margin-left: 10px;
  margin-top: 10px;
}

.disclamer {
  width: 100%;
  height: 70px;
  background-color: #3e3e3e;
  padding-top: 10px;
  color: white;
  padding-left: 20px;
  margin-top: 20px;
}

.youtubes {
  width: 80%;
  height: 115px;
  margin-left: 30px;
  margin-top: 13px;
}

.thumbnail {
  position: relative;
  width: 480px;
  height: 100px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s;
}

.thumbnail .play-button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.thumbnail .play-button::before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-left: 30px solid #333;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
}


.photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  padding: 10px;
}

.photos img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.photos img:hover {
  transform: scale(1.05);
}

.whatsapp {
  width: 180px;
  height: 180px;
  position: fixed;
  left: -10px;
  /* Adjust left or right as needed */
  top: 68%;
  /* Adjust the top position */
  z-index: 1000;
  /* Ensure it's on top of other elements */
}

.whatsapp img {
  width: 100%;
  height: 100%;
}



.calls {
  width: 150px;
  height: 150px;
  position: fixed;
  left: 88%;
  /* Adjust left or right as needed */
  top: 77%;
  /* Adjust the top position */
  z-index: 1000;
  /* Ensure it's on top of other elements */
}

.calls img {
  width: 100%;
  height: 100%;
}

.googles{
  width: 180px;
  height: 80px;
  margin-left: 100px;
}

.googles img {
  width: 100%;
  height: 100%;
}