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

/* ============ Scroll animasyonları ============ */

.split-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.6s cubic-bezier(0.2, 0.7, 0.3, 1);
  will-change: opacity, transform;
}

.split-text.in-view span {
  opacity: 1;
  transform: translateY(0);
}

.title-fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.title-fade-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

#send-response-success , #send-response-unsuccessful{
  display: none;
}
#phoneNumber {
  padding: 8px 50px;
}
#home-banner {
  position: relative;
  top: -160px;
  bottom: 120px;
  margin-bottom: -45px;
}
#home-banner .banner-col {
  padding-top: 35px;
}
#home-banner .banner-content-inner {
  position: absolute;
  bottom: 15%;
  width: 100%;
  z-index: 2;
  left: 0;
}
#home-banner .banner-content-inner .banner-doctor-logos {
  background: #06042052 0% 0% no-repeat padding-box;
  border: 0.5px solid #FFFFFF;
  border-radius: 16px;
  padding: 21px;
}

#home-banner .banner-right-content {
  width: 100%;
  background: #06042052 0% 0% no-repeat padding-box;
  border: 0.5px solid #FFFFFF;
  border-radius: 16px;
  padding: 21px;
  gap: 15px;
  color: #fff;
  box-sizing: content-box;
}
#home-banner .banner-right-content .user-comments {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 43%;
  flex: 0 0 43%;
}
#home-banner .banner-right-content .company-links {
  width: 43%;
  flex: 0 0 43%;
  gap: 10px;
}
#home-banner .banner-right-content .company-links .item{
  gap:10px;
  color: #fff;
}
#home-banner .home-banner-outer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


#home-banner .banner-form{
  position: relative;
  z-index: 2;
  bottom: -60px;
  margin-bottom: 29px;
  margin-top: -95px;
}

#home-banner .banner-form .title{
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 15px;
}
#home-banner .banner-form .input-area input {
  width: 100%;
  padding:15px;
  border-radius: 10px;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  font-size: 16px;
}
#home-banner .banner-form .input-area input::placeholder{
  color: #fff;
  font-size: 16px;
  font-weight: 300;
}
#home-banner .banner-form .input-area input#phoneNumber {
  padding: 15px 50px;
}

#home-banner .home-form .input-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

#home-banner .home-form .input-grid .input-col:nth-child(4) {
  grid-column: span 2;
}

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

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

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

#home-banner .banner-content {
  padding-top: 150px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: end;
  align-items: end;
  height: 100%;
}

#home-banner .banner-form{
  position: relative;
  z-index: 2;
  bottom: -65px;
  margin-bottom: -60px;
}
#home-banner .banner-form .banner-form-inner {
  background: #ffffff14 0% 0% no-repeat padding-box;
  border: 2px solid #707070;
  border-radius: 28px;
  backdrop-filter: blur(25px);
  padding: 20px 30px;
}

#home-banner .banner-form .banner-form-inner .form-area {
  width: 100%;
}

#home-banner .banner-form .banner-form-inner .section-title{
  font-size: 32px;
  color: #fff;
}

/* services */

#home-services{
  position: relative;
  padding: 60px 0px 0px;
  margin-bottom: 80px;
}

#home-services .section-decor {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
#home-services .section-decor img {
  height: 100%;
}
#home-services .section-title-head{
  text-align: center;
}

#home-services .owl-theme .owl-nav {
  position: absolute;
  top: -20%;
  right: 0;
}
#home-services .services-row{
  margin-bottom: 35px;
}
#home-services .service-col{
  margin-bottom: 15px;
  padding: 10px;
}
#home-services .service-item {
  display: block;
  color: var(--color);
  background: #E2E8F0;
  padding: 20px;
  border-radius: 15px;
  transition: 0.3s ease-in;
}
#home-services .service-item:hover {
  background: #284463;
  color: #fff;
}
#home-services .service-item .image{
    border-radius: 10px;
    height: 230px;
    object-fit: cover;
}
#home-services .section-link{
  position: relative;
  z-index: 2;
}

#home-services .service-item .services-content{
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#home-services .service-item .services-content .desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}
#home-services .service-item .title {
  font-weight: 600;
  font-size: 18px;
}

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

#home-services .owl-item.first-active .service-item {
    transform: scale(1.05);
    transform-origin: left center; 
    transition: transform 0.4s ease;
    z-index: 10;
}

#home-services .owl-item .service-item {
    transition: transform 0.4s ease;
}

#home-services .owl-stage-outer {
    padding-top: 15px;
    padding-bottom: 15px;
}

#home-services .owl-nav .owl-prev {
    left: -15px;
    z-index: 1000; 
}

#home-services .owl-nav .owl-next {
    right: -15px;
    z-index: 1000;
}

#home-services .owl-nav .owl-prev,
#home-services .owl-nav .owl-next {
    background: transparent;
    border: 1px solid var(--color);
    color: var(--color);
    width: 40px;
    height: 40px;
}

#home-services .owl-nav .owl-prev:hover,
#home-services .owl-nav .owl-next:hover {
    background: var(--color);
    color: var(--text-light);
    transition: 0.3s;
}

#home-services .services-decor {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10vw;
}

#home-services .treatments-grid-row {
  margin-bottom: 20px;
}

#home-services .treatments-grid-col {
  margin-bottom: 24px;
}

#home-services .treatments-grid-box {
  background: #F5F6F9;
  border-radius: 16px;
  padding: 24px;
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

#home-services .treatments-grid-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(6, 4, 32, 0.1);
  background: #fff;
}

#home-services .treatments-grid-box .box-head {
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #DADEE8;
}

#home-services .treatments-grid-box .box-title {
  font-size: 19px;
  font-weight: 600;
  background: transparent linear-gradient(78deg, #806748 0%, #B69D7B 32%, #F2DAB4 69%, #F2DAB4 100%) 0% 0% no-repeat padding-box;
  color: transparent;
  background-clip: text;
}

#home-services .treatments-grid-box .box-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: 0.3s ease-in;
}

#home-services .treatments-grid-box .box-arrow svg {
  width: 22px;
  height: 22px;
}

#home-services .treatments-grid-box a.box-arrow:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

#home-services .treatments-grid-box .box-desc {
  color: #060420;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 20px;
}

#home-services .treatments-grid-box .box-image {
  margin-top: auto;
}

#home-services .treatments-grid-box .box-image img {
  border-radius: 15px;
}
#home-services .section-btn-area {
    gap: 15px;
}

/* process (saç ekimi süreçleri) */

#home-process {
  margin-bottom: 80px;
  background: #F5F6F9;
  padding: 50px 0px 0px 0px;
}

#home-process .process-card {
}

#home-process .process-top {
  margin-bottom: 45px;
}

#home-process .process-top .section-title-head {
  margin-bottom: 30px;
}

#home-process .process-top .section-subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#home-process .process-top .section-title {
  color: var(--primary-color);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
}

#home-process .process-tab-nav {
  gap: 15px;
}

#home-process .process-tab-btn {
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  padding: 16px 15px;
  border-radius: 8px;
  cursor: pointer;
  border-left: 4px solid transparent;
  transition: 0.3s ease-in;
}

#home-process .process-tab-btn:hover {
  background: #10123A;
}

#home-process .process-tab-btn.active {
  border-left-color: var(--accent-color);
  background: #10123A;
}

#home-process .process-tab-content-area {
  height: 100%;
  display: flex;
  align-items: center;
}

#home-process .process-tab-content {
  display: none;
}

#home-process .process-tab-content.active {
  display: block;
  width: 100%;
  animation: fadeIn 0.4s ease;
}

#home-process .process-content-title {
  color: var(--primary-color);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

#home-process .process-content-desc {
  color: #060420;
  font-size: 16px;
  line-height: 1.4;
}

#home-process .process-content-image {
  border-radius: 16px;
  overflow: hidden;
}

#home-process .process-content-image img {
  width: 100%;
  border-radius: 16px;
}

#home-process .process-features-bar {
  background: var(--primary-color);
  padding: 30px 0px;
}

#home-process .process-feature-col {
}

#home-process .process-feature-item {
  gap: 15px;
  height: 100%;
}

#home-process .process-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ffffff66;
  display: flex;
  align-items: center;
  justify-content: center;
}

#home-process .process-feature-icon img {
  width: 24px;
  height: 24px;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#home-process .process-feature-text {
  color: var(--text-light);
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
}

/* treatments */
#home-multi-section{
  position: relative;
}
#home-multi-section .treatments-decor{
  position: absolute;
  top: -10px;
}
#home-treatments {
  margin-bottom: 75px;
  padding: 75px 0 0;
  position: relative;
}
#home-treatments .section-title-head{
  text-align: center;
  margin-bottom: 35px;
}
.treatments-track-outer {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.treatments-track {
    display: flex;
    gap: 20px;
    align-items: stretch;
    transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.treatment-slide {
    flex: 0 0 calc((100% - 40% - 3 * 20px) / 3);
    transition: flex-basis 0.75s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.treatment-slide.active {
    flex-basis: 40%;
}

#home-treatments .treatment-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: 308px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    overflow: hidden;
}

#home-treatments .treatment-image {
    width: 0;
    opacity: 0;
    overflow: hidden;
    flex-shrink: 0;
    height: 100%;
    transition: width 0.75s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

#home-treatments .treatment-slide.active .treatment-image {
    width: 216px;
    opacity: 1;
}

#home-treatments .treatment-image img {
  width: 216px;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

#home-treatments .treatment-content {
  flex: 1;
  min-width: 0;
  color: #060420;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

#home-treatments .treatment-content .title {
    font-size: 18px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    font-weight: 500;
}

#home-treatments .treatment-content .desc {
    /* margin-bottom: 15px; */
    color: var(--color);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 7;
    overflow: hidden;
    font-size: 16px;
}
#home-treatments .treatment-link {
    color: #fff;
}

.treatments-dots {
  position: relative;
  z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.treatments-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(4, 23, 33, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.treatments-dot.active {
    background: #041721;
    transform: scale(1.4);
}

/* about */

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

#home-about .section-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#home-about .about-image{
  border-radius: 15px;
  overflow: hidden;
  padding: 0 15px;
}

#home-about .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

#home-about .about-content {
  display: flex;
  flex-direction: column;
}

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

#home-about .about-subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#home-about .about-title {
  color: var(--primary-color);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

#home-about .about-desc {
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 30px;
}

#home-about .about-progress-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 35px;
}

#home-about .progress-item .progress-head {
  gap: 15px;
  margin-bottom: 8px;
}

#home-about .progress-item .progress-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}

#home-about .progress-item .progress-value {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}

#home-about .progress-item .progress-line {
  width: 100%;
  height: 10px;
  border-radius: 10px;
  background: #7C86A8;
  overflow: hidden;
}

#home-about .progress-item .progress-line-inner {
  display: block;
  height: 100%;
  border-radius: 10px;
  background: var(--accent-color);
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

#home-about .about-btn {
  padding: 15px 55px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  background-color: var(--primary-color);
  border-radius: 8px;
  width: max-content;
  text-align: center;
  transition: 0.3s ease-in;
}

#home-about .about-btn:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
}

/* before after gallery */

#home-before-after {
  margin-bottom: 80px;
}
#home-before-after .section-title-head {
  text-align: center;
}
#home-before-after .ba-carousel-outer {
  width: 100%;
  overflow: hidden;
  position: relative;
}

#home-before-after .ba-carousel-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

#home-before-after .ba-slide {
  flex: 0 0 calc((100% - 2 * 20px) / 3);
  min-width: 0;
}

#home-before-after .ba-slide a {
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

#home-before-after .ba-slide img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.ba-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.ba-carousel-dots .ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(4, 23, 33, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.ba-carousel-dots .ba-dot.active {
  width: 26px;
  border-radius: 5px;
  background: var(--accent-color);
}

#home-before-after .section-btn-area {
  gap: 20px;
  margin-top: 40px;
}

.section-btn-dark {
  padding: 12px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-light);
  background-color: var(--primary-color);
  width: max-content;
  text-align: center;
  border-radius: 6px;
  transition: 0.3s ease-in;
  display: block;
  white-space: nowrap;
}

.section-btn-dark:hover {
  background-color: var(--accent-color);
  color: var(--text-light);
  transform: scale(1.1);
}

/* why hair in istanbul */

#home-why {
  margin-bottom: 100px;
}

#home-why .why-title {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
}

#home-why .why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

#home-why .why-item {
  position: relative;
}

#home-why .why-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 13px;
  bottom: -37px;
  width: 1px;
  background: var(--primary-color);
  opacity: 0.3;
  z-index: 1;
}

#home-why .why-item-head {
  gap: 10px;
  margin-bottom: 6px;
  position: relative;
  z-index: 2;
}

#home-why .why-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-color);
  position: relative;
  z-index: 2;
}

#home-why .why-item-title {
  color: var(--primary-color);
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
}

#home-why .why-item-desc {
  color: var(--text-color);
  font-size: 15px;
  line-height: 24px;
  padding-left: 17px;
}

#home-why .why-gallery {
  position: relative;
  height: 300px;
  margin: 0 auto;
  max-width: 320px;
}

#home-why .why-gallery-item {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 15px 30px rgba(6, 4, 32, 0.12);
  transition: transform 0.35s ease;
}

#home-why .why-gallery-item:hover {
  transform: scale(1.08);
  z-index: 2;
}

#home-why .why-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#home-why .why-gallery-item-1 {
  width: 140px;
  height: 140px;
  top: 0;
  right: 30px;
  z-index: 3;
}

#home-why .why-gallery-item-2 {
  width: 130px;
  height: 130px;
  top: 110px;
  right: 130px;
  z-index: 2;
}

#home-why .why-gallery-item-3 {
  width: 180px;
  height: 180px;
  top: 220px;
  right: 50px;
}

/* free hair analysis (laptop + form) */

#home-analysis {
  position: relative;
  margin-bottom: 100px;
}

#home-analysis .analysis-wrap {
}

#home-analysis .analysis-laptop-image {
  flex: 0 0 auto;
  width: 50%;
  /* max-width: 55%; */
  position: absolute;
  z-index: 2;
  margin-right: 0%;
  pointer-events: none;
  left: -10%;
  top: -10%;
}

#home-analysis .analysis-laptop-image img {
  width: 100%;
  height: auto;
  display: block;
}

#home-analysis .analysis-card {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  background: var(--primary-color);
  border-radius: 24px;
  padding: 3% 6% 5% 30%;
}

#home-analysis .analysis-title {
  color: var(--text-light);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 25px;
}

#home-analysis .analysis-title .accent {
  color: var(--accent-color);
}

#home-analysis .analysis-input-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

#home-analysis .analysis-input-col input.form-in {
  width: 100%;
  height: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 8px;
  background: var(--text-light);
  color: var(--primary-color);
  font-size: 15px;
  font-family: inherit;
}
#home-analysis .analysis-input-col input#home-analysis-phone {
    padding: 16px 50px;
}
#home-analysis .analysis-input-col input.form-in::placeholder {
  color: #8C8FA0;
}

#home-analysis .analysis-send-btn {
  width: 100%;
  height: 100%;
  min-height: 54px;
  border: none;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--text-light);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s ease-in;
}

#home-analysis .analysis-send-btn:hover {
  filter: brightness(1.1);
}

#home-analysis #send-response-success,
#home-analysis #send-response-unsuccessful {
  display: none;
  margin-top: 15px;
  color: var(--text-light);
}

/* videos */

#home-videos {
  margin-bottom: 100px;
}

#home-videos .section-subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#home-videos .section-title {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
}

#home-videos .video-desc {
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

#home-videos .section-btn-area {
  gap: 15px;
}

#home-videos .video-carousel-outer {
  width: 100%;
  overflow: hidden;
}

#home-videos .video-carousel-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

#home-videos .video-slide {
  flex: 0 0 calc((100% - 20px) / 2);
  min-width: 0;
}

#home-videos .video-thumb {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.35s ease;
}

#home-videos .video-thumb:hover {
  box-shadow: 0 20px 35px rgba(6, 4, 32, 0.18);
}

#home-videos .video-thumb img {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

#home-videos .video-thumb:hover img {
  transform: scale(1.05);
}

#home-videos .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease-in;
}

#home-videos .video-play-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14px;
  border-color: transparent transparent transparent var(--primary-color);
  margin-left: 4px;
}

#home-videos .video-thumb:hover .video-play-btn {
  background: var(--accent-color);
}

#home-videos .video-thumb:hover .video-play-btn::before {
  border-color: transparent transparent transparent #fff;
}

#home-videos .owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

#home-videos .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(4, 23, 33, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

#home-videos .owl-dots .owl-dot.active {
  width: 26px;
  border-radius: 5px;
  background: var(--accent-color);
}

/* reviews (sizden gelenler) */

#home-reviews {
  margin-bottom: 100px;
}

#home-reviews .reviews-box {
  background: #F5F6F9;
  border-radius: 24px;
  padding: 50px;
}
#home-reviews .reviews-carousel-outer {
    position: relative;
    /* overflow: hidden; */
    /* padding-left: 40px; */
    padding-top: 10px;
    padding-bottom: 10px;
}
#home-reviews .review-ghost {
  position: absolute;
  top: 14px;
  bottom: 6px;
  right: 30px;
  left: -18px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(6, 4, 32, 0.06);
  overflow: hidden;
  z-index: 1;
}

#home-reviews .review-ghost-2 {
  top: 24px;
  bottom: 16px;
  right: 50px;
  left: -34px;
  opacity: 0.6;
  z-index: 0;
}

#home-reviews .review-ghost-1 {
  opacity: 0.85;
  z-index: 1;
}

#home-reviews .review-ghost-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

#home-reviews .review-ghost-lines span {
  display: block;
  height: 8px;
  border-radius: 5px;
  background: #E7E9F0;
  margin-bottom: 9px;
}

#home-reviews .review-ghost-lines span:nth-child(1) { width: 92%; }
#home-reviews .review-ghost-lines span:nth-child(2) { width: 100%; }
#home-reviews .review-ghost-lines span:nth-child(3) { width: 96%; }
#home-reviews .review-ghost-lines span:nth-child(4) { width: 88%; }
#home-reviews .review-ghost-lines span:nth-child(5) { width: 55%; }

#home-reviews .reviews-carousel {
  position: relative;
  z-index: 2;
}

#home-reviews .reviews-carousel .owl-stage-outer {
  border-radius: 20px;
}

#home-reviews .review-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(6, 4, 32, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#home-reviews .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(6, 4, 32, 0.14);
}

#home-reviews .review-card-head {
  gap: 10px;
  margin-bottom: 12px;
}

#home-reviews .review-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-color);
  overflow: hidden;
}

#home-reviews .review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#home-reviews .review-date {
  flex: 1;
  color: #9598A8;
  font-size: 13px;
  padding: 0 10px;
}

#home-reviews .review-platform-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}

#home-reviews .review-platform-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#home-reviews .review-text {
  color: var(--text-color);
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  line-clamp: 6;
  overflow: hidden;
}

#home-reviews .review-card-footer {
  gap: 10px;
}

#home-reviews .review-stars {
  display: flex;
  gap: 3px;
  color: #FFB800;
}

#home-reviews .review-stars svg {
  width: 14px;
  height: 14px;
}

#home-reviews .review-more-link {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  white-space: nowrap;
}

#home-reviews .reviews-content {
  padding-left: 20px;
}

#home-reviews .reviews-head {
  margin-bottom: 8px;
}

#home-reviews .reviews-head .section-subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
}

#home-reviews .reviews-nav {
  gap: 10px;
}

#home-reviews .reviews-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in;
}

#home-reviews .reviews-arrow svg {
  width: 16px;
  height: 16px;
}

#home-reviews .reviews-arrow:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

#home-reviews .reviews-content .section-title {
  color: var(--primary-color);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

#home-reviews .reviews-desc {
  color: var(--text-color);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

#home-reviews .reviews-badges {
  gap: 25px;
  flex-wrap: wrap;
}

#home-reviews .review-badge {
  gap: 10px;
  background: #fff;
  padding: 15px;
  border-radius: 20px;
}

#home-reviews .review-badge-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

#home-reviews .review-badge-rate {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

#home-reviews .review-badge-stars {
  display: flex;
  gap: 2px;
  color: #FFB800;
}

#home-reviews .review-badge-stars svg {
  width: 13px;
  height: 13px;
}

#home-reviews .owl-item {
    transition: all 0.4s ease-in-out;
    position: relative;
    margin-bottom: 25px;
}

/* 1. aktif kart: en sağda, yığının en üstünde */
#home-reviews .owl-item.active:not(.cloned) {
    transform: translate(-50%, 0) scale(.85);
    z-index: 2;
    opacity: 1;

}

/* 2. aktif kart: ortada, birincinin altında */
#home-reviews .owl-item.active+.owl-item.active {
    transform: translate(-50%, 0px) scale(.95);
    z-index: 20;
    opacity: .95;
    position: relative;
    z-index: 5;
}

/* 3. aktif kart: solda, ikincinin altında */
#home-reviews .owl-item.active+.owl-item.active+.owl-item.active {
    transform: translate(-53%, 0px) scale(1.05);
    z-index: 10;
    opacity: .9;
    position: relative;
    z-index: 10;
}

#home-reviews .owl-item:not(.active),#home-reviews .owl-item.cloned {
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}

#home-reviews .owl-carousel .owl-stage-outer {
  overflow: hidden;
  padding: 20px 0;
}

#home-reviews .owl-nav {
  position: absolute;
  right: -3%;
  display: flex;
  flex-direction: column;
  bottom: 50%;
  z-index: 10;
  transform: translate(10px, 35px);
  gap: 5px;
}

#home-reviews .owl-nav button {
    background: var(--title-color);
    color: #fff;
    padding: 5px!important;
    border-radius: 50%
}


/* experience branch */

#home-experience-branch{
  margin-bottom: 80px;
}

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

#home-experience-branch .table-box {
  background: #50657F;
  padding: 30px 15px;
  border-radius: 11px;
}

#home-experience-branch .table-box .list-item {
  gap: 10px;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

#home-experience-branch .table-box .list-item svg{
  fill: #fff;
  width: 24px;
  height: 24px;
}

#home-experience-branch .experience-col{
  margin-bottom: 25px;
  padding: 5px;
}

#home-experience-branch .experience-box {
  background: #50657F;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #fff;
  border-radius: 15px;
  height:100%;
}

#home-experience-branch .experience-box .icon {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}

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

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

#home-faq .faq-image{
  border-radius: 20px;
}

#home-faq .faq-list-area .faq-item {
  margin-bottom: 24px;
  background-color: #F1F4F8;
  border-radius: 10px;
  overflow: hidden;
}
#home-faq .faq-list-area .faq-item .item-top {
  padding: 8px 48px 8px 10px;
  position: relative;
  cursor: pointer;
}
#home-faq .faq-list-area .faq-item .item-top .item-title {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color);
}
#home-faq .faq-list-area .faq-item .item-top .item-title .faq-number {
  background: #50657F;
  border-radius: 10px;
  font-size: 40px;
  font-weight: 700;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  color: #fff;
}
#home-faq .faq-list-area .faq-item .item-top::before,
#home-faq .faq-list-area .faq-item .item-top::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  background-color: var(--color);
  right: 20px;
  -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-faq .faq-list-area .faq-item .item-top::before {
  transform: rotate(90deg);
}
#home-faq .faq-list-area .faq-item .item-bottom {
  padding: 0 24px;
  height: 0;
  overflow: hidden;
  color: var(--color);
  -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-faq .faq-list-area .faq-item .item-bottom .item-text {
  font-size: 16px;
}
#home-faq .faq-list-area .faq-item.opened .item-top::before {
  transform: none;
}
#home-faq .faq-list-area .faq-item.opened .item-bottom {
  padding: 12px 12px 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;
}

/* instagram */

#home-instagram{
  margin-bottom: 240px;
}

#home-instagram .section-title-head{
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 35px;
}

#home-instagram .instagram-col{
    padding:5px;
    margin-bottom:25px;
}

#home-instagram .instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); 
    justify-content: center; 
    place-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

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

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

/* blog */

#home-blog{
  margin-bottom: 200px;
}

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

#home-blog .section-subtitle {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

#home-blog .section-title {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: 700;
}

#home-blog .blog-list {
  margin-top: 40px;
}

#home-blog .blog-row-item {
  padding: 30px 0;
  border-bottom: 1px solid #E5E7EE;
  transition: transform 0.3s ease;
}

#home-blog .blog-row-item:hover {
  transform: translateX(6px);
}

#home-blog .blog-row-item:first-child {
  padding-top: 0;
}

#home-blog .blog-row-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

#home-blog .blog-item-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

#home-blog .blog-item-desc {
  color: var(--text-color);
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

#home-blog .blog-item-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-in;
}

#home-blog .blog-item-arrow svg {
  width: 18px;
  height: 18px;
  transform: rotate(-45deg);
}

#home-blog .blog-item-arrow:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

#home-blog .blog-item-image {
  border-radius: 15px;
  overflow: hidden;
}

#home-blog .blog-item-image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Genel kolon yapısı ve alt boşluk */
#home-blog .blog-row .blog-col {
    border: 4px solid #f3f3f3;
    padding: 0px;
}

#home-blog .blog-row .blog-col:nth-child(odd) {
    border-top: none;
    border-left: none;
}

#home-blog .blog-row .blog-col:nth-child(even) {
    border-right: none;
    border-bottom: 4px solid #f3f3f3;
}

#home-blog .blog-row .blog-col:nth-child(2) {
    border-top: none;
}

#home-blog .blog-row .blog-col:nth-child(5) {
    border-bottom: none;
}
#home-blog .blog-row .blog-col:nth-child(even):last-child {
    border-bottom: none;
}
#home-blog .blog-row .blog-col:nth-child(odd) {
    border-top: 4px solid #f3f3f3;
    border-left: none;
}
#home-blog .blog-row .blog-col:nth-child(odd):first-child {
    border-top: none;
    border-left: none;
}
#home-blog .blog-row .blog-col:nth-child(odd) 
#home-blog .blog-row .services-content {
  padding: 20px 20px 20px 30px;
  display: block;
  display: block;
}

#home-blog .blog-row .services-content .blog-content {
  gap: 10px;
	padding:20px;
}

#home-blog .blog-row .services-content .blog-content .blog-text {
  color: var(--color);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

#home-blog .blog-row .services-content .blog-content .blog-text .blog-title {
  font-size: 20px;
  font-weight: 700;
}

#home-blog .blog-row .services-content .blog-content .blog-text .blog-desc {
  font-size: 16px;
}

/* certificates */

#home-certificates .section-title-head {
    text-align: center;
}