
.container-cn {
  width: 98%;
  border-radius: 20px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;

  margin:0 auto;
}


.container-cn2 {
  margin-top: 25px;
  width: 65.5%;
  margin: 0 auto;
  border-radius: 24px;
}


.container-cn3{
  margin-top: 25px;
  width: 65.5%;
  margin: 0 auto;
  padding: 40px;
  border-radius: 65px;
}

/* Tablet ve mobil cihazlar için stil */
@media only screen and (max-width: 768px) {
    .container-cn2{
      width: 100%;
      padding: 0px;
    }
    .container-cn {
        width: 100%;
        padding: 0px;
    }

    .container-cn3{
      width: 100%;
      padding: 0px;
    }
}

@media only screen and (min-width: 769px) and (max-width: 1500px) {
    .container-cn {
        width: 100%; /* 768px ile 1500px arasındaki ekranlar için %90 genişlik */

    }
    .container-cn2{
      width: 99%;
      padding: 20px;
    }
    .container-cn3{
      width: 96%;
      padding: 20px;
    }
}

@media only screen and (min-width: 1501px) {
  .container-cn2{
    width: 65%;
    margin: 0 auto;
    padding-left: 38px;
    padding-right:4px;
  }

  .container-cn3{
    padding-right:33px;
  }
}


.day-header-cn {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.day-number-cn {
    font-size: 48px;
    font-weight: 800;
    color: white;
    opacity: 0.8;
}

.day-title-cn {
    font-size: 24px;
    font-weight: 400;
    color: white;
}
.day-title-cn-span{
  font-weight: 800;
  font-size:32px
}

.steps-container-cn {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.step-box-cn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    animation: fadeIn 0.5s ease forwards;
    opacity: 0;
}

@media only screen and (max-width: 768px) {
    .step-box-cn {
        margin-top: 10px; /* Mobilde margin-top ekle */
    }
}


.icon-wrapper-cn {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}


@media only screen and (max-width: 768px) {
    .icon-wrapper-cn {
        width: 60px; /* Genişliği yarıya düşür */
        height: 60px; /* Yüksekliği yarıya düşür */
    }
}

.icon-wrapper-cn i {
    font-size: 32px;
    color: #042161;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    border:none;
}

.icon-wrapper-cn::after {
    content: '';
    position: absolute;
    bottom: 0;
    border:none;
    left: 0;
    width: 100%;
    height: 100%;
    background: #042161;
    z-index: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 0.3s ease-in-out;
}

.step-label-cn {
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
}

.day-section-cn {
    margin-bottom: 60px;
}

.day-section-cn:last-child {
    margin-bottom: 0;
}

.slider-container-cn {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.slider-cn {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide-cn {
    width: 25%;
    height: 100%;
}

.slide-cn img,
.slide-cn iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
}


.slider-btn-cn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    color: #2563eb;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-btn-cn:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #1e40af;
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-cn:active {
    transform: translateY(-50%) scale(0.95);
}

.prev-cn {
    left: 20px;
    padding: 1px;
}

.prev-cn::before {
    content: '❮';
}

.next-cn {
    right: 20px;
    padding: 1px;
}

.next-cn::before {
    content: '❯';
}


.slider-dots-cn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot-cn {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-cn:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.dot-cn.active {
    background: white;
    transform: scale(1.2);
}


.icon-wrapper-cn:hover {
    transform: translateY(-5px);
}

.icon-wrapper-cn:hover::after {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.icon-wrapper-cn:hover i {
    color: white;
}


.steps-container-cn::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
    z-index: 0;
}

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

.step-box-cn:nth-child(1) { animation-delay: 0.1s; }
.step-box-cn:nth-child(2) { animation-delay: 0.2s; }
.step-box-cn:nth-child(3) { animation-delay: 0.3s; }
.step-box-cn:nth-child(4) { animation-delay: 0.4s; }


.icon-wrapper-cn {
    position: relative;
}


.day-section-cn:first-child .step-box-cn:first-child .tooltip-cn {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background: #1e40af;
    color: white;
    font-size: 14px;
    border-radius: 8px;
    width: max-content;
    max-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}


.day-section-cn:first-child .step-box-cn:first-child .tooltip-cn::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #1e40af;
}


.day-section-cn:first-child .step-box-cn:first-child .icon-wrapper-cn:hover .tooltip-cn {
    opacity: 1;
    visibility: visible;
}

.main-title-cn {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.main-title-cn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 2px;
}

.payment-container-cnpy {
    margin-top:20px;
    width: 63%; /* Genişliği %63 yap */
    margin: 0 auto; /* Sayfada ortala */
    box-sizing: border-box; /* Padding ve border'ın genişliğe dahil olmasını sağlar */
}

/* Mobil cihazlar için stil */
@media only screen and (max-width: 768px) {
    .payment-container-cnpy {
        width: 90%; /* Mobilde genişliği %90 yap */
        padding: 10px; /* Mobilde padding'i azalt */
    }
}
  .payment-card-cnpy {
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 5, 0.986);
    transition: transform 0.3s ease;
    width: 100%!important;
    text-align: center;
    padding-top: 35px;
    padding-bottom:50px;
  }


  .deal-text-cnpy {
    color: #1e3a8a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
  }

  .price-info-cnpy {
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .price-cnpy {
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 1);
  }

  .payment-button-cnpy {
    position: relative;
    width: 80%;
    padding: 1rem;
    background: linear-gradient(45deg, #1e3a8a, #2563eb);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .payment-button-cnpy:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }

  .button-shine-cnpy {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
  }

  @keyframes shine {
    0% {
      transform: translateX(-100%) rotate(45deg);
    }
    100% {
      transform: translateX(100%) rotate(45deg);
    }
  }

  /* Tablet ve küçük masaüstü ekranlar için (1024px'e kadar) */
  @media screen and (max-width: 1024px) {


    .price-cnpy {
      font-size: 2.2rem;
    }

    .deal-text-cnpy {
      font-size: 1.3rem;
    }
  }

  /* Tablet ekranlar için (768px'e kadar) */
  @media screen and (max-width: 768px) {
    .payment-card-cnpy {
      width: 100%;
    }


    .our-doctors-say{
        width: 90%!important;
    }

    .payment-button-cnpy {
      width: 90%;
    }

    .price-cnpy {
      font-size: 2rem;
    }

    .deal-text-cnpy {
      font-size: 1.2rem;
      margin-bottom: 0.8rem;
    }

    .price-info-cnpy {
      font-size: 1rem;
    }
  }

  /* Mobil ekranlar için (480px'e kadar) */
  @media screen and (max-width: 480px) {
    .payment-card-cnpy {
      width: 90%;
      padding: 1.2rem;
      margin: auto;
    }

    .payment-button-cnpy {
      width: 100%;
      padding: 0.8rem;
      font-size: 1rem;
    }

    .price-cnpy {
      font-size: 0.8rem;
      margin-bottom: 1rem;
    }

    .deal-text-cnpy {
      font-size: 1.1rem;
      margin-bottom: 0.6rem;
    }

    .price-info-cnpy {
      font-size: 0.9rem;
    }

    .payment-card-cnpy:hover {
      transform: none;
    }
  }

  /* Çok küçük mobil ekranlar için (320px'e kadar) */
  @media screen and (max-width: 320px) {
    .payment-card-cnpy {
      width: 95%;
      padding: 1rem;
    }

    .price-cnpy {
      font-size: 1.6rem;
    }

    .deal-text-cnpy {
      font-size: 1rem;
    }

    .price-info-cnpy {
      font-size: 0.8rem;
    }
  }
