.slider-viewport {
  width: 100%;
  height: 95vh;
  position: relative;
  background: #eee;
  overflow: hidden;
}

/* --- SLIDE GENEL --- */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.slide .btn-genel{
  width: 250px;
}

/* Slayt aktif olduğunda görünür yap */
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.slide .container {
  display: flex;
}

/* --- YERLEŞİM DÜZENİ --- */
.slide.mode-img-left .container {
  flex-direction: row;
  text-align: left;
  justify-content: end;
}
.slide.mode-img-right .container {
  text-align: left;
}

.col-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0;
  height: 100%;
}

.col-image img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
}

.col-text {
  flex: 1;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  will-change: transform;
  transition: transform 0.1s linear;
  margin-top: 140px;
  left: 120px;
  position: relative;
}

.col-text.sira2 {
  left: 0px;
}

/* Yazı stilleri (Varsayılan olarak gizli - opacity: 0) */
.bg-number {
  position: absolute;
  top: 50%;
  left: 0px;
  font-size: 250px;
  color: #ffffff33;
  z-index: -1;
  opacity: 0;
  line-height: 0;
  font-family: var(--font-lora);
}

.slide.mode-img-left .bg-number {
  left: -130px;
}

.slide.mode-img-right .bg-number {
  right: -70px;
  left: auto;
}

.col-text .text1 {
  font-size: 60px;
  font-weight: 200;
  margin-bottom: 15px;
  opacity: 0;
  color: rgb(62, 62, 62);

}
.col-text .text2 {
  font-weight: 600;
  font-size:50px;
  margin: 0 0 20px;
  color: var(--renk1);
  line-height: 1;
  opacity: 0;
}
.col-text p {
  color:#ffffffa7;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0;
  font-weight: 400;
  font-size: 17px;
  font-family: var(--font-lora);
  max-width: 723px;
}

.btn-group22 {
  opacity: 0;
}

/* =========================================
   ANIMASYON YÖNETİMİ (Püf Noktası Burası)
   ========================================= */

/* --- GİRİŞ (ENTRANCE) --- */
/* Sadece .active varken çalışır */

.slide.active .col-image img {
  animation: enterUp 1s ease-out forwards 0s;
}
.slide.active .bg-number {
  animation: fadeIn 1s ease-out forwards 0.2s;
}
.slide.active .text1 {
  animation: enterUp 0.8s ease-out forwards 0.4s;
}
.slide.active .text2 {
  animation: enterUp 0.8s ease-out forwards 0.6s;
}
.slide.active p {
  animation: enterUp 0.8s ease-out forwards 0.8s;
}
.slide.active .btn-group22 {
  animation: enterUp 0.8s ease-out forwards 1s;
}

/* --- ÇIKIŞ (EXIT) --- */
/* Hem .active hem .exiting sınıfı varsa çalışır.
   Bu kurallar yukarıdakileri EZER (Override eder).
   Böylece elemanlar sıfırlanmadan direkt animasyona girer. */

.slide.active.exiting .btn-group22 {
  animation: exitDown 0.5s ease-in forwards 0s;
}
.slide.active.exiting p {
  animation: exitDown 0.5s ease-in forwards 0.1s;
}
.slide.active.exiting .text1 {
  animation: exitDown 0.5s ease-in forwards 0.2s;
}
.slide.active.exiting .text2 {
  animation: exitDown 0.5s ease-in forwards 0.3s;
}
.slide.active.exiting .bg-number {
  animation: fadeOut 0.5s ease-in forwards 0.3s;
}
.slide.active.exiting .col-image img {
  animation: exitDown 0.5s ease-in forwards 0.4s;
}

/* --- KEYFRAMES --- */
/* Giriş: Aşağıdan yukarı ve opaklaşarak */
@keyframes enterUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Çıkış: Olduğu yerden (0px) aşağıya doğru (40px) ve kaybolarak */
@keyframes exitDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(40px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Dots */
.nav-dots2 {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  z-index: 20;
}
.dot2 {
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 2px solid #fff;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}
.dot2.active {
  background: #3CB7A8;
  border-color: #3CB7A8;
}

@media (max-width: 1200px) {
  .col-text .text1 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .col-text .text2 {
    font-size: 33px;
    margin-bottom: 10px;
  }

  .col-text p {
    font-size: 11px;
  }

  .bg-number {
    font-size: 100px;
  }

  .slide.mode-img-left .bg-number {
    left: -50px;
  }

  .slide.mode-img-right .bg-number {
    right: 90px;
  }

  .slide .btn-group22 {
    display: flex;
  }
  .btn-group22 .btn {
    padding: 6px 0px !important;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1;
    display: inline-flex;
    align-items: center;
  }

  .col-text {
    margin-top: 20%;
    left: 120px;
    padding-right: 120px;
  }

  .nav-dots {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 20;
  }

  .col-text {
    max-width: 70%;
  }
}

@media (max-width: 400px) {
  .slide.mode-img-left .col-image img {
    object-position: -150px 50%;
  }
  .col-text {
    max-width:100%;
  }

  .slide.mode-img-right .col-image img {
    object-position: -310px center;
  }

  .col-text .text1 {
    font-size: 12px;
  }
  .col-text .text2 {
    font-size: 22px;
  }
  .col-text p {
    font-size: 8px;
  }
  .slider-viewport {
    height: 41vh;
  }
}

/**/


.kurumsal {
    width: 100%;
    padding: 0 0 30px;
    position: relative
}

.kurumsalbg {
    width: 100%;
    height: 590px;
    background: url('../images/bg2.jpg') center top;
    background-size: cover!important;
    position: absolute;
    top: 140px
}

.kurumsal::before {
    position: absolute;
    top: 0;
    width: 100%;
    height: 250px;
    background: linear-gradient(180deg,rgba(255,255,255,0) 0,#fff 100%);
    content: '';
    z-index: 9
}

.kurumsal .container {
    max-width: 1200px !important
}

.kurumsal .left-content h1 {
    font-size: 60px;
    font-weight: 700;
    color: #31b07c;
    line-height: 1
}

.kurumsal .world {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    left: 0;
    z-index: 9;
    position: relative
}

.kurumsal-alt {
    width: 100%;
    height: auto;
    margin-top: 80px
}

.kurumsal .kurumsal-resim {
    width: 500px;
    height: 400px;
    position: absolute;
    right: 0;
    bottom: -10px
}

.kurumsal .kurumsal-ic .liste {
    width: auto;
    height: auto;
    display: inline-block;
    color: #094539;
    position: absolute;
    top: 0;
    max-width: 260px;
    z-index: 99
}

.kurumsal .kurumsal-ic .liste .liste-ic {
    border: 1px solid #fff;
    padding: 18px;
    border-radius: 8px;
    background: var(--renk2);
    position: relative;
    z-index: 9
}

.kurumsal .kurumsal-ic .liste .numara {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding-bottom: 4px
}

.kurumsal .kurumsal-ic .liste .numara .sayi {
    font-size: 45px;
    font-weight: 700;
    line-height: 1
}

.kurumsal .kurumsal-ic .liste .baslik {
    font-size: 21px;
    font-weight: 700;
    display: block;
    line-height: 1.3;
    color: white;
}

.kurumsal .kurumsal-ic .liste small {
    display: block;
    margin-top: 15px;
    margin-bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4
}

.kurumsal .kurumsal-ic .liste.liste2 .numara .sayi,.kurumsal .kurumsal-ic .liste.liste2 small,.sozlerimiz .btn-wrapper {
    margin-left: auto
}

.kurumsal .kurumsal-ic .liste .cizgi {
    width: 100%;
    height: 4px;
    background: var(--renk2);
    position: relative;
    display: flex;
    margin-top: -45px;
    align-items: end
}

.kurumsal .kurumsal-ic .liste.liste2,.kurumsal .kurumsal-ic .liste.liste3,.kurumsal .kurumsal-ic .liste.liste4 {
    width: auto;
    display: inline-block;
    max-width: 260px;
    position: absolute;
    height: auto
}

.kurumsal .kurumsal-ic .liste .cizgi::before {
    content: '';
    position: absolute;
    right: -15px;
    width: 15px;
    height: 2px;
    background: var(--renk2)
}

.kurumsal .kurumsal-ic .liste .cizgi::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--renk2);
    transform: rotate(126deg);
    top: -5px;
    right: -32px;
    z-index: -1
}

.kurumsal .kurumsal-ic .liste .cizgi .cizgi2 {
    width: 100px;
    height: 100px;
    background: var(--renk2);
    position: absolute;
    right: -140px;
    bottom: -93px;
    border-radius: 50%;
    animation: 2s linear infinite cizgiii;
    overflow: hidden
}

.kurumsal .kurumsal-ic .liste .cizgi .cizgi2.cizgi233 {
    right: -190px;
    bottom: -14px;
    width: 150px;
    height: 150px
}

.kurumsal .kurumsal-ic .liste .cizgi .cizgi2.cizgi222 {
    left: -170px;
    bottom: -34px;
    width: 80px;
    height: 80px
}

.kurumsal .kurumsal-ic .liste.liste4 .cizgi {
    width: 100%;
    height: 4px;
    background: var(--renk2);
    position: relative;
    display: flex;
    align-items: end;
    margin-top: -140px
}

.kurumsal .kurumsal-ic .liste.liste3 .cizgi {
    margin-left: 80px
}

@keyframes cizgiii {
    0% {
        box-shadow: 0 0 0 0 var(--renk2)
    }

    50% {
        box-shadow: 0 0 0 10px #3cb7a8a3
    }

    100% {
        box-shadow: 0 0 0 0 #3cb7a8a3
    }
}

.kurumsal .kurumsal-ic .liste.liste2 {
    top: 11px;
    right: 160px;
}

.kurumsal .kurumsal-ic .liste.liste2 .cizgi::before,.kurumsal .kurumsal-ic .liste.liste4 .cizgi::before {
    left: -15px
}

.kurumsal .kurumsal-ic .liste.liste2 .cizgi::after,.kurumsal .kurumsal-ic .liste.liste4 .cizgi::after {
    width: 120px;
    height: 2px;
    transform: rotate(0);
    top: 2px;
    left: -120px;
    right: auto
}

.home-hakkimizda3 .resim img, .kurumsal .kurumsal-ic .liste .cizgi .cizgi2 img, .kurumsal .kurumsal-resim img, .page-hakkimizda-liste .resim img, .page-urunler-liste .resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kurumsal .kurumsal-ic .liste.liste3 {
    top: 351px;
    left: 100px;
}

.kurumsal .kurumsal-ic .liste.liste3 .cizgi::before {
    right: -15px
}

.kurumsal .kurumsal-ic .liste.liste3 .cizgi::after {
    width: 120px;
    height: 2px;
    transform: rotate(337deg);
    top: -22px;
    right: -129px
}

.kurumsal .kurumsal-ic .liste.liste4 {
    top: 311px;
    right: 130px;
}

.kurumsal .kurumsal-ic .liste.liste4 .cizgi .cizgi2.cizgi222 {
    left: -140px;
    bottom: -14px;
    width: 60px;
    height: 60px
}

.kurumsal #globe-container {
    width: 550px;
    height: 550px;
    background: #edefed;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px #0945393d
}

.kurumsal svg {
    margin-left: -20px;
    margin-top: -20px
}

.clouds {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 300%;
    gap: 0;
    display: none
}

.cloud {
    width: 100%;
    animation: 195s linear infinite cloudMove
}

@keyframes cloudMove {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.kurunsal-listeleme-alt {
    margin-top: 50px
}

.kurunsal-listeleme-alt a.Nedenbiz_liste {
    margin: 20px 0 0!important;
    padding: 15px 35px 25px 28px;
    border-radius: 3px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex!important;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    -webkit-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    z-index: 9;
    box-shadow: 0 0 8px #00000017
}

.kurunsal-listeleme-alt a.Nedenbiz_liste .icon {
    height: 51px;
    width: 131px;
    background-image: linear-gradient(to bottom,#53625c 0,#363e3b 104%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    position: relative;
    z-index: 9;
    margin-bottom: 25px
}

.kurunsal-listeleme-alt a.Nedenbiz_liste h3 {
    width: 100%;
    height: auto;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
    line-height: 1.2
}

.kurunsal-listeleme-alt a.Nedenbiz_liste .text33,.kurunsal-listeleme-alt a.Nedenbiz_liste p,a.uretimPage-liste .baslik small {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0
}

.kurunsal-listeleme-alt a.Nedenbiz_liste p {
    height: 105px;
    opacity: 60%
}

.kurunsal-listeleme-alt a.Nedenbiz_liste .text33 {
    height: 211px;
    padding-left: 18px
}

.kurunsal-listeleme-alt a.Nedenbiz_liste .text33 ul li {
    border-top: 1px solid #f1f1f1;
    padding: 5px 0
}

.kurunsal-listeleme-alt a.Nedenbiz_liste:hover,a.uretimPage-liste:hover .baslik {
    background: #363e3b;
    color: #fff
}

.kurunsal-listeleme-alt a.Nedenbiz_liste:hover .text33 ul li {
    border-color: #f1f1f10f
}

@media(max-width:1024px){
    .kurumsal{
        display: none;
    }
}