@keyframes moveRightUp {
    0% {
      transform: translate(0, 130deg);
    }
    50% {
      transform: translate(0, 105deg);
    }
    100% {
      transform: translate(0, 130deg);
    }
  }
  

/* Keyframe animasyonları */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(0,135deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.9); /* Başlangıçta biraz küçük */
    }
    100% {
        opacity: 1;
        transform: scale(1); /* Sonunda normal boyuta gelsin */
    }
}

#send-response-success , #send-response-unsuccessful{
  display: none;
}
#phoneNumber {
  padding: 8px 50px;
}
#home-banner {
  position: relative;
  overflow: hidden;
  margin-bottom: -50px;
  bottom: 135px;
}

#home-banner .home-banner-outer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#home-banner .home-banner-outer img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#home-banner .banner-decor {
  position: absolute;
  left: 0;
  top: 0;
  transform: rotate(135deg);
  animation: moveRightUp infinite 10s;
}

#home-banner .banner-content{
  padding-top: 200px;
  padding-bottom: 70px;
}

#home-banner .banner-content .banner-subtitle {
  color: var(--color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
}

#home-banner .banner-content .banner-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-light);
}

#home-banner .banner-content .banner-title p{
  font-weight: 700;
  font-size: 87px;
}

#home-banner .banner-content .banner-desc{
  color: var(--text-light);
  margin-bottom: 30px;
}

#home-banner .banner-content .banner-link {
  background: var(--color-2);
  padding: 10px 15px;
  display: inline-block;
  min-width: 235px;
  text-align: center;
  color: #fff;
  border-radius: 9px;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  margin-bottom: 30px;
}

#home-banner .banner-count{
  gap: 30px;
  margin-top: 40px;
}

#home-banner .banner-count .count-box{
  color: #fff;
  position: relative;
}

#home-banner .banner-count .count-box:last-child::after{
  display: none;
}

#home-banner .banner-count .count-box::after {
  content: "";
  width: 2px;
  background: #fff;
  height: 50%;
  display: block;
  bottom: 50%;
  position: absolute;
  right: -15px;
  transform: translateY(20px);
}

#home-banner .banner-count .count-box .count {
  font-size: 41px;
  font-weight: 700;
}

#home-banner .banner-count .count-box .title{
  font-weight: 300;
}

#home-banner .owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px
}

#home-banner .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background-color: var(--color-3);
  margin: 0
}

#home-banner .owl-dots .owl-dot.active span {
  background-color: var(--color-2);
  width: 21px;
  height: 21px
}

#home-banner .gallery-item {
    display: block;
    border: 5px solid #fff;
    border-radius: 15px;
    overflow: hidden;
}

/* form */

#home-form{
  margin-bottom: 80px;
}

#home-form .section-text{
  margin-top: 40px;
}

#home-form .section-text .section-title{
  margin-bottom: 15px;
  color: var(--color-4);
}

#home-form .section-text .section-desc{
  color: var(--color);
}


#home-form .input-area {
  margin-bottom: 20px;
}

#home-form .input-area input {
  width: 100%;
  background: var(--color-3);
  padding: 10px 15px;
  color: var(--text-color-2);
  border-radius: 10px;
  height: 50px;
}

#home-form .input-area input#phoneNumber{
  color: var(--text-color);
  padding:10px 50px;
}

#home-form .input-area input::placeholder{
  color: var(--text-color);
}

#home-form .input-area textarea::placeholder{
  color: var(--text-color);
}

#home-form .input-area textarea{
  width: 100%;
  height: 150px;
  outline: none;
  resize: none;
  background: var(--color-3);
  padding: 20px 15px;
  border-radius: 10px;
}

#home-form .input-area .send-btn {
  min-width: 250px;
  padding: 10px;
  border-radius: 10px;
  background: var(--color-2);
  color: var(--text-light);
  cursor: pointer;
  transition: 0.3s ease-in;
  border: 1px solid transparent;
}

#home-form .input-area .send-btn:hover{
  transform: scale(1.1);
}


/* services */
#home-services {
  margin-bottom: 80px;
  position: relative;
}

#home-services .right-decor {
  position: absolute;
  right: 0;
  z-index: 0;
  animation: slideX2 5s ease-in-out infinite;
}

#home-services .section-title-area {
  text-align: center;
  margin-bottom: 45px;
}

#home-services .services-col {
  margin-bottom: 25px;
}

#home-services .services-col .services-content-area {
  display: block;
  background: var(--color-3);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

#home-services .services-col .services-image {
  border-radius: 10px;
}

#home-services .services-col  .services-title {
  color: var(--color-4);
  font-size: 20px;
  margin:10px 0px;
  font-weight: 600;
}

#home-services .services-col  .services-desc{
  color: var(--text-color);
}

#home-services .services-btn-group {
  margin-top: 35px;
}

#home-services .services-btn-group .services-btn-area{
  gap: 20px;
}

#home-services .services-btn-group .services-btn-area .services-btn{
  background: var(--color-4);
  padding: 10px;
  border-radius: 5px;
  min-width: 224px;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

#home-services .services-btn-group .services-btn-area .services-btn:nth-child(2){
  background: var(--color-2);
}

/* patient gallery */

#home-patient-gallery {
  background: linear-gradient(3deg, #D1E0F6 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

#home-patient-gallery .patient-decor {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  animation: slideX 5s ease-in-out infinite;
}

#home-patient-gallery .section-title-head{
  margin-bottom: 50px;
  text-align: center;
}

#home-patient-gallery .section-title{
  margin-bottom: 15px;
}

#home-patient-gallery .section-desc{
  color: var(--text-color);
}

#home-patient-gallery .owl-dots {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px
}

#home-patient-gallery .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background-color: var(--color);
  margin: 0
}

#home-patient-gallery .owl-dots .owl-dot.active span {
  background-color: var(--color-2);
  width: 21px;
  height: 21px
}

/* hair comes back */

#home-hair-comes-back{
  position: relative;
  background: transparent linear-gradient(87deg, #1A2237 0%, #1B2338 100%) 0% 0% no-repeat padding-box;;
  min-height: 240px;
}

#home-hair-comes-back .comes-decor {
  position: absolute;
  bottom: 0;
}

#home-hair-comes-back .hair-comes-back-inner {
  padding-top: 50px;
}

#home-hair-comes-back .section-title{
  color: var(--text-light);
  margin-bottom: 10px;
  text-shadow: -2px -2px 0 #707070, 2px -2px 0 #707070, -2px 2px 0 #707070, 2px 2px 0 #707070;
  font-weight: 600;
}

#home-hair-comes-back .section-desc{
  color: #fff;
  font-weight: 700;
}

#home-hair-comes-back .comes-link {
  background: #193F76;
  color: #fff;
  padding: 10px;
  display: block;
  text-align: center;
  border-radius: 6px;
}

/* videos */
#home-videos {
  background: linear-gradient(180deg, #D1E0F6 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  padding: 75px 0;
}
#home-videos .section-title-head{
  text-align: center;
  margin-bottom: 35px;
}
#home-videos .section-title-head .section-title{
  margin-bottom: 15px;
}
#home-videos .section-title-head .section-desc{
  color: var(--text-color);
}
#home-videos .video-area {
  overflow: hidden;
  height: 550px;
}
#home-videos .videos-slider-area {
  overflow: hidden;
}
#home-videos .videos-slider-area .swiper-slide .vide-box {
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #005550;
}
#home-videos .videos-slider-area .swiper-slide a {
  display: block;
  position: relative;
  overflow: hidden;
}
#home-videos .videos-slider-area .swiper-slide a .video-image {
  border-radius: 20px;
}
#home-videos .videos-slider-area .swiper-slide a .yt-icon {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-35px, 35px);
}
#home-videos .videos-slider-area .swiper-slide.swiper-slide-active a::after {
  opacity: 0;
}
#home-videos .videos-slider-area .swiper-pagination {
  position: unset;
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
#home-videos .videos-slider-area .swiper-pagination .swiper-pagination-bullet {
  background: #005550;
  width: 16px;
  height: 16px;
  margin: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition-property: all;
  -moz-transition-property: all;
  -o-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
#home-videos .videos-slider-area .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color);
  width: 48px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
#home-videos .videos-slider-area .video-swiper {
  height: 550px;
}
#home-videos .services-btn-group .services-btn-area{
  gap: 20px;
}

#home-videos .services-btn-group .services-btn-area .services-btn{
  background: var(--color-4);
  padding: 10px;
  border-radius: 5px;
  min-width: 224px;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

#home-videos .services-btn-group .services-btn-area .services-btn:nth-child(2){
  background: var(--color-2);
}

/* faq area */

#home-faq-area {
  position: relative;
  margin-bottom: 80px;
  background-color: var(--color);
  padding: 75px 0;
}

#home-faq-area .section-title-head{
  padding: 0px 15px;
}

#home-faq-area .section-title-head .section-title{
  color: var(--text-light);
}

#home-faq-area .accord-tab-nav {
  width: 100%;
  background: #F4F6FB;
}

#home-faq-area .accord-tab-nav .tab-nav-item {
  width: 100%;
  text-align: center;
  padding: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: var(--color);
}

#home-faq-area .faq-row{
  margin-top: 35px;
}

#home-faq-area .accord-tab-nav .tab-nav-item:hover{
  background: var(--color);
  color: #fff;
}

#home-faq-area .accord-tab-nav .tab-nav-item.active {
  background: var(--color-2);
  color: #fff;
  transform: scale(1.01);
}


#home-faq-area .ba-tab-content {
  position: relative;
  overflow: hidden;
}

#home-faq-area .tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#home-faq-area .tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeIn 0.6s ease;
}

#home-faq-area .tab-pane .faq-list-area {
  max-height: 265px;
  padding-right: 20px;
  overflow-y: auto;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


#home-faq-area .faq-list-area .faq-item.collapsed-item {
  margin-bottom: 20px
}
#home-faq-area .faq-list-area .faq-item {
  border-bottom: 1px solid #fff;
}
#home-faq-area .faq-list-area .faq-item .item-top {
  padding: 15px 50px 15px 20px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid var(--color);
}

#home-faq-area .faq-list-area .faq-item .item-top .item-title {
  color: var(--text-light);
  font-size: 18px;
  font-weight: 600;
}

#home-faq-area .faq-list-area .faq-item .item-top::before {
  content: ' ';
  position: absolute;
  right: 25px;
  top: 33%;
  border: 3px solid var(--text-light);
  border-radius: 20px;
  height: 25px;
  transition: all 0.3s;
  transform-origin: center;
  transform: rotate(90deg);
}

#home-faq-area .faq-list-area .faq-item .item-top::after {
  content: ' ';
  position: absolute;
  right: 25px;
  top: 33%;
  border: 3px solid var(--text-light);
  border-radius: 20px;
  height: 25px;
  transition: all 0.3s;
  transform-origin: center;
}

#home-faq-area .faq-list-area .faq-item.collapsed-item.opened .item-top::before {
  transform: rotate(180deg);
}

#home-faq-area .faq-list-area .faq-item.collapsed-item.opened .item-top::after {
  transform: rotate(90deg);
}

#home-faq-area .faq-list-area .faq-item .item-bottom {
  padding: 0 20px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  border-radius: 15px;
  height: 0;
  overflow: hidden;
  -moz-transition: all .3s;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s
}

#home-faq-area .faq-list-area .faq-item .item-bottom .item-text {
  font-size: 18px;
  color: var(--text-light);
}

#home-faq-area .faq-list-area .faq-item.opened .item-bottom {
  margin-top: 15px;
  padding: 15px 20px;
  height: max-content
}

#home-faq-area .faq-list-area::-webkit-scrollbar {
    width: 8px
}

#home-faq-area .faq-list-area::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px
}

#home-faq-area .faq-list-area::-webkit-scrollbar-thumb {
    background-color:var(--color);
    border-radius: 4px
}

#home-faq-area .faq-list-area::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

#home-faq-area .faq-decor {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  animation: slideX2 5s ease-in-out infinite;
  z-index:1;
}

/* collage */

#home-collage{
  margin-bottom: 80px;
}

/* comments */
#home-comments{
  margin-bottom: 80px;
}

#home-comments .section-title-head{
  text-align: center;
  margin-bottom: 25px;
}

#home-comments .comments-head-row {
  margin-bottom: 25px;
}

#home-comments .comments-head-col {
  padding: 10px;
}

#home-comments .comments-head-content {
  color: #fff;
  gap: 20px;
  background: 1E2029;
  border: 1px solid #938984;
  border-radius: 9px;
  padding: 10px;
}

#home-comments .comments-head-content .comments-rate{
  margin-bottom: 5px;
}

#home-comments .comments-head-content .desc {
  font-size: 12px;
  font-style: italic;
  font-weight: 300;
}

#home-comments .comments-box {
  background: var(--color-3);
  padding: 26px;
  border-radius: 20px;
}

#home-comments .comments-box .comments-head-area{
  margin-bottom: 15px;
}

#home-comments .comments-box .comments-title {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
}

#home-comments .comments-box .comments-content {
  color: var(--text-color);
  max-height: 250px;
  padding-right: 5px;
  overflow-y: auto;
  margin-bottom: 15px;
}

#home-comments .comments-box .comments-content::-webkit-scrollbar {
  width: 8px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-thumb {
  background-color:var(--color-3);
  border-radius: 4px
}

#home-comments .comments-box .comments-content::-webkit-scrollbar-thumb:hover {
  background-color: #555
}

#home-comments .owl-carousel{
  margin-bottom: 25px;
}

#home-comments .owl-dots {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px
}

#home-comments .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  background-color: #6383B3;
  margin: 0
}

#home-comments .owl-dots .owl-dot.active span {
  background-color: var(--text-color);
  width: 19px;
  height: 19px
}

#home-comments .comments-stars img {
  width: 120px !important;
}

/* center form */
#home-center-form{
  margin-bottom: 80px;
}
#home-center-form .input-area{
  margin-bottom: 15px;
}

#home-center-form .input-area input {
  width: 100%;
  background: var(--color-3);
  padding: 10px 15px;
  color: var(--text-color-2);
  border-radius: 10px;
  height: 50px;
}

#home-center-form .input-area input#phoneNumber{
  color: var(--text-color);
}

#home-center-form .input-area input::placeholder{
  color: var(--text-color);
}

#home-center-form .input-area textarea::placeholder{
  color: var(--text-color);
}

#home-center-form .input-area textarea{
  width: 100%;
  height: 150px;
  outline: none;
  resize: none;
  background: var(--color-3);
  padding: 20px 15px;
  border-radius: 10px;
}

#home-center-form .input-area label {
  width: 100%;
  border: 1px solid #D1E0F6;
  padding: 15px 26px;
  color: var(--text-color);
  font-weight: 500;
  font-size: 20px;
  border-radius: 9px;
  text-align: center;
  cursor: pointer;
  display: block;
}

#home-center-form .input-area .send-btn {
  min-width: 250px;
  padding: 10px;
  border-radius: 10px;
  background: var(--color-2);
  color: var(--text-light);
  cursor: pointer;
  transition: 0.3s ease-in;
  border: 1px solid transparent;
}

#home-center-form .input-area .send-btn:hover{
  transform: scale(1.1);
}

/* blog */
#home-blog{
  margin-bottom: 80px;
}
#home-blog .section-title-area {
  text-align: center;
  margin-bottom: 35px;
}

#home-blog .section-title-area .section-title{
  color: var(--color);
  font-size: 36px;
  margin-bottom: 15px;
}

#home-blog .section-title-area .section-desc{
  color: var(--bg-color);
  font-size: 18px;
}

#home-blog .blog-col{
  margin-bottom: 25px;
}

#home-blog .blog-col .blog-content{
  gap: 15px;
}

#home-blog .blog-col .blog-content .blog-image{
  border-radius: 20px;
}

#home-blog .blog-col .blog-content .blog-title {
  color: var(--text-color);
  margin-top: 10px;
  font-size: 17px;
  font-weight: 600;
}

#home-blog .blog-col .blog-content .blog-desc {
  color: var(--text-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}

#home-blog .blog-col .services-content {
  padding: 10px;
  display: block;
  background: var(--color-3);
  border-radius: 10px;
}
