@keyframes moveRightUp {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -10px);
    }
    100% {
      transform: translate(0, 0); 
    }
  }
  

/* Keyframe animasyonları */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    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: 10px 50px!important;
}
#home-slider {
  position: relative;
  bottom: 160px;
  margin-bottom: -80px;
  background-size: cover;
  background-position: bottom;
}
#home-slider::before {
  content: "";
  width: 40%;
  height: 80%;
  background: transparent radial-gradient(closest-side at 50% 50%, #CABEAA 0%, #A49882 100%) 0% 0% no-repeat padding-box;
  position: absolute;
  right: 0%;
  bottom: 5%;
  border-radius: 50%;
}
#home-slider .silder-inner {
  padding-top: 150px;
}
#home-slider .slider-item {
  padding-top: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-slider .slider-item .slider-text-area {
  padding: 15px 0;
}
#home-slider .slider-item .slider-text-area .slider-title {
  font-size: 48px;
  font-weight: bold;
  color: #3D3D3D;
  margin-bottom: 10px;
}
#home-slider .slider-item .slider-text-area .slider-text {
  font-size: 18px;
  color: #3D3D3D;
	display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#home-slider .slider-item .slider-text-area .slider-btns {
  margin-top: 30px;
  gap: 20px;
  display: flex;
  flex-wrap: wrap;
}
#home-slider .slider-item .slider-text-area .slider-btns .slider-btn {
  display: block;
  color: #fff;
  font-size: 18px;
  padding: 6px 16px;
  border: 2px solid;
  min-width: 140px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
  text-align: center;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#home-slider .slider-item .slider-text-area .slider-btns .btn-first {
  background: var(--button-gradient);
  border: #fff;
}
#home-slider .slider-item .slider-text-area .slider-btns .btn-first:hover {
  background-color: #fff;
  color: #000;
}
#home-slider .slider-item .slider-text-area .slider-btns .btn-second {
    background-color: #fff;
    border-color: var(--color);
    color: var(--color-2);
}
#home-slider .slider-item .slider-text-area .slider-btns .btn-second:hover {
  background-color: var(--color);
  color: #fff;
}
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-title,
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-text,
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-btns {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-title {
  animation-name: fadeInDown;
  animation-delay: 0.3s;
}
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-text {
  animation-name: fadeInDown;
  animation-delay: 0.6s;
}
#home-slider .swiper-slide-active .slider-item .slider-text-area .slider-btns {
  animation-delay: 0.9s;
  animation-name: fadeInUp;
  margin-bottom: 30px;
}
#home-slider .swiper-slide-active .slider-item .slider-img-wrapper .slider-img {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeIn;
	object-fit:cover;
	object-position:bottom;
}

#home-slider .slider-navs button {
  background: transparent;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  border-radius: 6px;
  opacity: 0.5;
  border: 1px solid #615B5B;
  width: 50px;
  height: 50px;
  border-radius: 9px;
  cursor: pointer;
}
#home-slider .slider-navs button svg {
  width: 25px;
  height: 25px;
  color: #615B5B;
}
#home-slider .slider-navs button:hover {
  opacity: 1;
}
#home-slider .slider-navs .swiper-btn-prev {
  left: 2%;
}
#home-slider .slider-navs .swiper-btn-next {
  right: 2%;
}

/* home about */

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

#home-about .about-video-area{
  position: relative;
}

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

#home-about .about-video-area .yt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-15px, 0px);
}

#home-about .section-desc {
  margin-bottom: 20px;
}

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

#home-services .section-title-head::after {
  width: 55%;
}

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

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

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

#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: #585858;
}

#home-services .services-col .icon svg {
  color: #585858;
}

/* consultation */

#home-consultation{
  margin-bottom: 80px;
}
#home-consultation .section-title-head::after {
  left: unset;
  right: -16%;
}

#home-consultation .section-number::after{
  height: 33%;
}

#home-consultation .section-content {
  position: relative;
  margin-bottom: 0px;
  bottom: 50px;
  z-index: 2;
}

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

#home-consultation .form-area .input-area .form-in {
  background: #edeae3;
  width: 100%;
  padding: 10px 20px;
  border-radius: 10px;
  height: 51px;
}

#home-consultation .form-area .input-area .form-in::placeholder{
  color: #A49882;
}

#home-consultation .form-area .input-area .file-input-button span{
  color: #A49882;
}

#home-consultation .form-area .input-area .file-input-button {
  height: 51px;
  display: block;
  background: #edeae3;
  padding: 15px 20px;
  border-radius: 10px;
}

#home-consultation .form-area .radio-area label {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
  align-items: center;
}

#home-consultation .radio-input {
  appearance: none;
  -webkit-appearance: none;
  width: 38px;
  height: 20px;
  border: 2px solid #555;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

#home-consultation .radio-input:checked {
  border-color: #615B5B;
}

#home-consultation .radio-input:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #615B5B;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#home-consultation .form-area .form-button {
  display: block;
  width: 100%;
  padding: 15px;
  height: 51px;
  background: transparent linear-gradient(36deg, #A49883 0%, #CABEAA 100%) 0% 0% no-repeat padding-box;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

/* idea dental */
#home-idea-dental{
  margin-bottom: 80px;
}
#home-idea-dental .section-title {
  width: 100%;
  font-size: 275px;
  text-align: center;
  color: #CABEAA;
}

#home-idea-dental .section-title span {
  color: #c3c3c4;
}

#home-idea-dental .idea-inner {
  background: linear-gradient(to bottom, #EEEAE3 0%, #FFFFFF 100%);  position: relative;
  z-index: 2;
  bottom: 105px;
  margin-bottom: -105px;
}

#home-idea-dental .idea-inner .idea-inner-content {
  padding: 50px 0;
  position: relative;
}

#home-idea-dental .idea-inner .idea-inner-content .idea-col {
}
#home-idea-dental .idea-inner .idea-inner-content .idea-item-3 , #home-idea-dental .idea-inner .idea-inner-content .idea-item-4{
  padding-top: 200px!important;
}

#home-idea-dental .idea-inner .idea-inner-content .idea-col .idea-box .title {
  color: #A49882;
  font-weight: 500;
  margin-bottom: 5px;
}

#home-idea-dental .idea-inner .idea-dental-image {
    position: absolute;
    top: 0;
    transform: translate(95%,-25%);
    width: 515px;
}

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

#home-before-after .section-title-head::after {
  left: unset;
  right: -15%;
}

#home-before-after .before-slider-area {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

#home-before-after .swiper-slide {
  width: 500px !important;
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}
#home-before-after .swiper-wrapper {
    padding: 30px 0;
}
#home-before-after .swiper-slide-active{
  transform: scale(1.10)!important;
}
#home-before-after .ba-gallery-image {
  height: 477px;
  object-fit: cover;
  width: 100%;
  border-radius: 30px;
}

#home-before-after .before-slider-area .swiper-pagination .swiper-pagination-bullet {
  background: #ccc;
  width: 12px;
  height: 12px;
  opacity: 1;
}

#home-before-after .before-slider-area .swiper-pagination .swiper-pagination-bullet-active {
  background: #005550;
  width: 40px;
  border-radius: 6px;
}

@media (max-width: 991px) {
  #home-before-after .swiper-slide {
    width: 350px !important;
  }
  #home-before-after .ba-gallery-image {
    height: 350px;
  }
}

@media (max-width: 575px) {
  #home-before-after .swiper-slide {
    width: 260px !important;
  }
  #home-before-after .ba-gallery-image {
    height: 300px;
  }
}

/* Before-After Navigation Buttons */
#home-before-after .ba-navigation {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

#home-before-after .ba-navigation button {
  background: transparent;
  border: 2px solid #A49883;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}

#home-before-after .ba-navigation button svg {
  width: 24px;
  height: 24px;
  color: #615B5B;
}

#home-before-after .ba-navigation button:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(164, 152, 131, 0.3);
}

/* home doctors */
#home-doctors{
  margin-bottom: 80px;
}
#home-doctors .section-title-head::after {
  content: "";
  width: 50%;
  position: absolute;
  left: -15%;
  background: #CABFAA;
  height: 2px;
  top: 40%;
}
#home-doctors .doctor-image {
  margin-bottom: 25px;
  overflow: hidden;
  border-radius: 25px;
}
#home-doctors .doctor-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #000;
}
#home-doctors .doctor-content .doctor-name {
  color: #A49882;
  font-size: 22px;
  font-weight: 600;
}
#home-doctors .doctor-content .doctor-branch {
  color: #A49882;
  font-style: italic;
  font-weight: 500;
}
#home-doctors .doctor-content .doctor-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
/* home videos */
#home-videos{
  margin-bottom: 80px;
}
#home-videos .section-title-head::after {
  content: "";
  width: 65%;
  position: absolute;
  left: unset;
  right: -15%;
  background: #CABFAA;
  height: 2px;
  top: 40%;
}
#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;
  border: 1px solid #fff;
  -webkit-border-radius: 36px;
  -moz-border-radius: 36px;
  -ms-border-radius: 36px;
  border-radius: 36px;
}

#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-yt-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-30px, -20px);
}
#home-videos .section-btn-area {
  width: 100%;
  margin-top: 40px;
}

.video-box .video-image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  -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);
  -webkit-border-radius: 24px;
  -moz-border-radius: 24px;
  -ms-border-radius: 24px;
  border-radius: 24px;
}

/* clinic */

#home-our-clinic{
  margin-bottom: 80px;
}
#home-our-clinic  .clinic-row {
  row-gap: 24px;
}
#home-our-clinic  .clinic-content img {
  object-fit: cover;
  height: 100%;
  border-radius: 8px;
}

/* blog */
#home-blog{
  margin-bottom: 80px;
}
#home-blog .section-title-head::after{
  left: unset;
  right: -15%;
}
#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 .services-content{
  background: var(--color-3);
  padding: 15px;
  display: block;
  border-radius: 20px;
}

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

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