@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:  60px;
}

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

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

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

#home-banner .banner-content .bg-white {
  /*padding: 30px;*/
  /*border-radius: 20px;*/
  text-align:center;
}

#home-banner .banner-content {
  padding-top: 80px;
  position: relative;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.459);
}

#home-banner .banner-left-content {
  background: #ffffff80;
  padding: 25px;
  border-radius: 28px;
}

#home-banner .section-subtitle{
  font-size: 19px;
  font-weight: 500;
}

#home-banner .section-title {
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-light);
}

#home-banner .section-desc {
  color: var(--text-light);
  font-size: 24px;
  font-weight:300;
  
}
#home-banner .section-desc span{
display: inline-block;
}

#home-banner .banner-form .title{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
#home-banner .banner-form .input-area input {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  background: #ffffffa3;
}

#home-banner .banner-form .input-area input#phoneNumber {
  padding: 10px 50px;
}

#home-banner .banner-form .input-col {
  margin-bottom: 10px;
  padding: 0 5px;
}

#home-banner .banner-form .input-area.radio-area label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    gap: 10px; 
}

#home-banner .banner-form .input-area.radio-area label a{
  color: var(--title-color);
}

#home-banner .banner-form .input-area.radio-area label input {
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: #6366f1; 
    width: 20px!important;
    height: 20px!important;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    display: grid;
    place-content: center;
    transition: 0.2s all ease-in-out;
}

#home-banner .banner-form .input-area.radio-area label input:checked {
    border-color: var(--title-color);
}

#home-banner .banner-form .input-area.radio-area label input::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transform: scale(0);
    transition: 0.2s transform ease-in-out;
    box-shadow: inset 1em 1em var(--title-color);
}

#home-banner .banner-form .input-area.radio-area label input:checked::before {
    transform: scale(1);
}

#home-banner .banner-form .input-area.radio-area label:hover input {
    border-color: var(--title-color);
    background-color: #f8fafc;
}

#home-banner .banner-form .send-btn {
  width: 100%;
  background: var(--color);
  color: #fff;
  padding: 10px 15px;
  min-width: 50%;
  border-radius: 10px;
  text-transform: uppercase;
}

#home-banner .banner-content .banner-title {
  font-size: 62px;
  color: #fff;
  font-weight: 500;
  text-shadow: 4px 3px 3px #00000063;
}

#home-banner .banner-content .banner-title span{
  font-weight: 800;
}

#home-banner .banner-features-list {
    display: flex;
    flex-direction: column;
    /* gap: 5px; */
    background: #aca09b;
    display: inline-block;
    padding: 15px;
    border-radius: 15px;
}

#home-banner .banner-features-list .features-list-item {
    gap: 10px;
    font-size: 16px;
    margin-bottom:10px;
    color:#fff;
    margin-bottom:5px;
}

#after-banner {
    margin-bottom:40px;
}
#after-banner .eye-list {
    margin-top: 20px;
    gap: 8px;
    text-align: center;
}

#after-banner .eye-item {
    font-size: 18px;
    font-weight: 500;
    color: #222;
    position: relative;
    display: inline-block;
}


/* about */

#home-about{
  margin-bottom: 120px;
}

#home-about .container-large {
  padding: 0 5%;
}

#home-about .about-img{
  border-radius: 20px;
}

#home-about .about-inner{
  position: relative;
}

#home-about .about-text-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#home-about .section-btn{
  border: 1px solid #1a1a1a;
}

/* services therapy */

#home-services {
  margin-bottom: 120px;
}

#home-services .services-col {
  padding: 5px;
  margin-bottom: 15px;
}

#home-services .services-col .services-content {
 display:flex;
 flex-direction:column;
 justify-content:space-between;
 min-height: 100%;
  background: #fdeee5;
  color: #1a1a1a;
  padding: 14px;
  border-radius: 15px;
  transition: all 0.3s ease-in;
}
#home-services .services-col .services-content .content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}
#home-services .services-col .services-content:hover {
  background: #3B240E;
  color: #fff;
}

#home-services .services-col .services-content .head {
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #EA6612;
}

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

.icon svg{
  fill: #F18312;
}
.head-icon svg {
  width: 32px; 
  height: auto;
  transition: all 0.3s ease;
}

.head-icon svg path {
  fill: #333; 
}

#home-services .services-col .services-content:hover .head-icon svg path {
  fill: #ffffff !important;
}

#home-multi-section{
  margin-bottom: 120px;
}

/* center form */
#home-center-form {
  margin-bottom: -125px;
  background: #FDEEE5;
  padding: 245px 0 50px;
  position: relative;
  bottom: 125px;
}

#home-center-form .center-form-inner {
  border-radius: 25px;
  overflow: hidden;
  padding: 45px 62px;
  position: relative;
  bottom: 100px;
}

#home-center-form .center-form-inner .section-title{
  color: #fff;
  margin-bottom: 10px;
}

#home-center-form .center-form-inner #center-form-area .input-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

#home-center-form .center-form-inner #center-form-area .input-container .input-col input{
  width: 100%;
  padding: 10px;
  height: 46px;
  border-radius: 5px;
}

#home-center-form .center-form-inner #center-form-area .input-container .input-col input#center-phone{
  padding: 10px 50px;
}

#home-center-form .center-form-inner #center-form-area .input-container .input-area button {
  background: var(--bg-color);
  width: 100%;
  height: 46px;
  color: #fff;
  border-radius: 5px;
}

/* experience */

#home-experience {
  background: #fdeee5;
}

#home-experience .experience-col .content {
  background: #fff;
  padding: 33px 23px;
  gap: 15px;
  border-radius: 20px;
}

#home-experience .experience-col .content .title {
  color: #4F2E0F;
  font-weight: 600;
  font-size: 26px;
}

#home-experience .row {
  position: relative;
  margin-bottom: 60px; 
}

#home-experience .row:last-child {
  margin-bottom: 0;
}

#home-experience .experience-col {
  position: relative;
  z-index: 2;
}

#home-experience .row:not(.justify-content-end)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%; 
  width: 50%; 
  height: calc(100% + 60px); 
  border-top: 2px dashed #EA6612;
  border-right: 2px dashed #EA6612; 
  z-index: 1;
  pointer-events: none;
}

#home-experience .row.justify-content-end::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 50%; 
  width: 50%; 
  height: calc(100% + 60px); 
  border-top: 2px dashed #EA6612; 
  border-left: 2px dashed #EA6612;
  z-index: 1;
  pointer-events: none;
}
#home-experience .row:nth-child(2)::after {
  width: 98% !important;
  right: 0%;
}
#home-experience .row:last-child::after {
  display: none;
}

@media (max-width: 991px) {
  #home-experience .row::after,
  #home-experience .row.justify-content-end::after {
    display: none;
  }
  #home-experience .row {
    margin-bottom: 30px;
  }
}

/* treatments */

#home-treatments {
  background: #fdeee5;
  padding: 80px 0;
}

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

#home-treatments .treatments-row{
  margin-bottom: 35px;
}

#home-treatments .treatments-col {
  margin-bottom: 30px;
}

#home-treatments .treatments-content {
    display:flex;
    flex-direction:column;
    min-height:100%;
}

#home-treatments .treatments-content .head {
    flex:1;
  background: var(--title-color);
  color: #fff;
  padding: 15px 20px;
  border-radius: 7px;
  margin-bottom: 10px;
}

#home-treatments .treatments-content .head .title {
  font-weight: 700;
  font-size: 24px;
}

#home-treatments .treatments-content .image img{
  border-radius: 20px;
}

/* videos */

#home-videos {
  position: relative;
  bottom: 10px;
  margin-bottom: -10px;
}
#home-videos .section-title-head{
  text-align: center;
  margin-bottom: 35px;
}
#home-videos .item{
  position: relative;
}

#home-videos .item .play-btn{
  position: absolute;
  width: 30px;
  bottom: 50%;
  left: 50%;
  transform: translate(-15px, 30px);
}

#home-videos .item .image{
  border-radius: 20px;
}
#home-videos .owl-dots {
  margin-top:15px;
  margin-bottom:15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

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

#home-videos .section-btn-container{
  margin-top: 35px;
}

#home-videos .section-btn {
  border: 1px solid #3B240E;
  align-items: center;
  display: flex;
}

#home-videos .section-btn-2{
  display: flex;
  align-items: center;
  gap: 10px;
}

/* faq */

#home-faq {
  margin-bottom: 120px;
}

#home-faq .faq-inner{
  background: #fef5ec;
  padding: 20px;
  border-radius: 20px;
}

#home-faq .faq-inner .faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--bg-color);
  overflow: hidden
}

#home-faq .faq-inner .faq-item:last-child {
  margin-bottom: 0px;
  border: none;
}

#home-faq .faq-inner .faq-item .item-top {
  padding: 15px 0 15px 0;
  gap: 10px;
  background-color: transparent;
  position: relative;
  cursor: pointer;
}
#home-faq .faq-inner .faq-item .item-top .item-number {
  background: var(--bg-color);
  color: #fff;
  width: 61px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  border-radius: 10px;
}
#home-faq .faq-inner .faq-item .item-top .item-title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

#home-faq .faq-inner .faq-item .item-bottom {
    padding: 12px 0px 0px 0px;
    height: 0;
    overflow: hidden;
    -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(.4,0,.2,1);
    -moz-transition-timing-function: cubic-bezier(.4,0,.2,1);
    -o-transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-timing-function: cubic-bezier(.4,0,.2,1)
}

#home-faq .faq-inner .faq-item .item-bottom .item-text {
    font-size: 18px;
    color: #000;
}

#home-faq .faq-inner .faq-item.opened .item-bottom {
    padding: 12px 24px 24px;
    height: max-content;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeIn;
    animation-delay: 0.1s
}

/* blog */
#home-blog{
  margin-bottom: 120px;
  position: relative;
}
#home-blog .section-title-area {
  text-align: center;
  margin-bottom: 35px;
}
#home-blog .blog-grid{
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 15px;
}

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

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

#home-blog .blog-col .services-content{
  display: block;
}

#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(--title-color);
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

#home-blog .blog-col .blog-content .blog-desc {
  color: var(--title-color);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 16px;
}
.hover-blog:hover{
  transform: scale(1.1);
  transition: 0.3s ease-in;
}