/* START IMPORTANT CSS */
/* Regular */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYREGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Medium */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYMEDIUM.OTF') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Bold */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYBOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Thin Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYTHINITALIC.OTF') format('opentype');
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

/* Ultralight Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYULTRALIGHTITALIC.OTF') format('opentype');
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

/* Light Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYLIGHTITALIC.OTF') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

/* Semibold Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYSEMIBOLDITALIC.OTF') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

/* Heavy Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYHEAVYITALIC.OTF') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* Black Italic */
@font-face {
  font-family: 'SF Pro Display';
  src: url('../fonts/SFPRODISPLAYBLACKITALIC.OTF') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

html, body {
  height: 100%;
  margin: 0;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
   font-family: 'SF Pro Display', -apple-system, sans-serif;
}

section {
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  box-sizing: border-box;
  background: #000000;
}

.logo {
  font-size: 28px;
  color: white;
  text-decoration: none;
}

.menu-icon {
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: transform 0.3s ease-in-out;
}

.menu-icon.active .fa-bars {
  display: none;
}

.menu-icon .fa-times {
  display: none;
}

.menu-icon.active .fa-times {
  display: block;
}

.navbar {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50vh; 
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: top 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 9998;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.navbar.active {
  top: 0;
}

.contact-navbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 40px 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #fff;
}

.contact-item i {
  font-size: 16px;
  color: #fff;
}

.contact-item a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #C8F169;
}

.navbar-logo {
  margin-top: 30px;
  text-align: center;
}

.navbar-logo img {
  width: 110px;
  filter: brightness(0) invert(1);
  margin-bottom: 10px;
}

.navbar-logo p {
  font-size: 0.9rem;
  color: #fff;
  opacity: 0.8;
  margin: 0;
}

.navbar-logo a {
  color: #fff;
  text-decoration: none;
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-logo a:hover {
  color: #C8F169;
}

@media (max-width: 480px) {
  .contact-item {
    font-size: 14px;
  }
  .navbar-logo img {
    width: 90px;
  }
}

.nav-item {
  margin: 25px 0;
}

.nav-link {
  color: #E0E0FF;
  font-size: 1.8em;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #3E66F4;
}



#desktop-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0B0A15;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  z-index: 9999;
}

#desktop-message .message-content i {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: #007bff;
}

#desktop-message .message-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

#desktop-message .message-content p {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
}



#mobile-content {
  display: block;
}

#desktop-message {
  display: none;
}

@media (min-width: 992px) {

  #mobile-content {
    display: none;
  }

  #desktop-message {
    display: flex;
  }
}

#desktop-message .qr-info {
  font-size: 1rem;
  color: #999;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#qrcode {
  width: 180px;
  height: 180px;
  margin: 0 auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

#qrcode img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 6px;
}


/* END IMPORTANT CSS */

/* Slider Alanı Başlangıç */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
   background: linear-gradient(to top, rgb(0 0 0 / 28%) 20%, rgba(0, 0, 0, 0) 80%);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 60px;
}

.hero-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.dropdown .btn {
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  background-color: #0b0b0b;
  color: #fff;
}

.dropdown .btn:hover {
  background-color: #1a1a1a;
}

.dropdown-menu {
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-custom {
  margin-bottom: 60px;
}

.dropdown-custom .btn {
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  background-color: #0b0b0b;
  color: #fff;
  transition: background-color 0.3s ease;
}

.dropdown-custom .btn:hover {
  background-color: #1a1a1a;
}

.dropdown-body {
  background-color: #0b0b0b;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeInDown 0.4s ease;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.transition-icon {
  transition: transform 0.3s ease;
}

button[aria-expanded="true"] .transition-icon {
  transform: rotate(180deg);
}

/* Slider Alanı Son */

/* sleep-experience alanı başlangıç */
.sleep-experience {
  background-color: #ffffff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 100px 20px;
  box-sizing: border-box;
}

.sleep-text {
  align-self: flex-start;
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
}

.sleep-text p {
  font-size: 22px !important;
  line-height: 1.4;
  color: #000;
  font-weight: 400;
}

.sleep-text strong {
  font-weight: 700;
}

.sleep-card {
  position: relative;
  width: 85%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.sleep-slider {
  display: flex;
  width: 100%;
  height: 100%;
  scroll-snap-type: x mandatory;
  overflow-x: scroll;
  overflow-y: hidden;
  scroll-behavior: smooth;
}

.sleep-slider img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: center;
  border-radius: 20px;
  margin-right: 10px;
}

.indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 20px;
  background: #f1f1f1;
  padding: 6px 12px;
  border-radius: 20px;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: #bbb;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dot.active {
  width: 22px;
  border-radius: 8px;
  background-color: #000;
}

.sleep-slider::-webkit-scrollbar {
  display: none;
}

@media (max-width: 400px) {
  .sleep-card {
    width: 90%;
  }

  .sleep-text p {
    font-size: 0.95rem;
  }
}

/* sleep-experience alanı son */

/* collection-experience alanı başlangıç */
.collection-experience {
  background-color: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space-between; */
  text-align: left;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}

.collection-text {
  align-self: flex-start;
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
}

.collection-text p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.collection-text strong {
  font-weight: 700;
}

.collection-card {
  position: relative;
  width: 85%;
  max-width: 380px;
  aspect-ratio: 3 / 4;
  background: #111;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: opacity 0.6s ease;
}

.collection-buttons {
  width: 100%;
  overflow-x: auto;
  margin-top: 30px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.collection-buttons::-webkit-scrollbar {
  display: none;
}

.scroll-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  padding: 10px 10px 0;
}

.collection-btn {
  flex: 0 0 auto;
  background: #2b2b2b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease;
  font-weight: 500;
}

.collection-btn.active {
  background: #fff;
  color: #000;
}

.collection-btn:hover {
  background: #ccc;
  color: #000;
}

@media (max-width: 400px) {
  .collection-card {
    width: 90%;
  }

  .collection-text p {
    font-size: 20px;
  }
}

/* collection-experience alanı son */

/* health-experience alanı başlangıç */

.health-experience {
  position: relative;
  width: 100%;
  height: 100vh;
  color: #fff;
  overflow: hidden;
  display: flex;
  box-sizing: border-box;
  background: #000;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 60px 24px;
}

.health-experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/health/1.png") center center / cover no-repeat;
  z-index: 0;
}

.health-experience::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.health-content {
  position: relative;
  z-index: 2;
  max-width: 380px;
  text-align: left;
  margin-top: 40px;
}

.category {
  color: #00DDFF;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: inline-block;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.desc {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  max-width: 320px;
}

.play-btn {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.play-btn:hover {
  transform: scale(1.08);
}

@media (max-width: 480px) {
  .health-experience {
    padding: 40px 20px;
    align-items: flex-start;
  }

  .title {
    font-size: 32px;
  }

  .desc {
    font-size: 18px;
  }
}

/* health-experience alanı son */

/* feature-experience alanı başlangıç */

.feature-experience {
  position: relative;
  width: 100%;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  background: #000;
  padding: 100px 0 80px;
}

.feature-experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/experience/1.png") center center / cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

.feature-header {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0 24px;
  margin-bottom: 40px;
}


.feature-header h2 {
  font-size: 1.8rem;
  font-weight: 400;
  margin-top: 5px;
}

.feature-slider-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.feature-slider {
  display: flex;
  gap: 16px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  padding-left: 24px;
  height: 520px;
}

.feature-item {
  flex: 0 0 85%;
  background: transparent;
  color: #fff;
  text-align: left;
  transition: transform 0.4s ease;
}

.feature-item img {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 15px;
}

.feature-item h5 {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 16px;
  line-height: 1.5;
  max-width: 90%;
}

.feature-slider::after {
  content: "";
  flex: 0 0 15%;
}

.slider-control {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.slider-control button {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}


@media (max-width: 480px) {
  .feature-item img {
    height: 280px;
  }

  .feature-header h2 {
    font-size: 1.5rem;
  }
}

/* feature-experience alanı son */

/* info-section alanı başlangıç */
.info-section {
  background-color: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 100px 24px 60px;
  box-sizing: border-box;
}

.info-category {
  color: #00DDFF;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 8px;
}

.info-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.info-desc {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 30px;
}


.info-image {
  width: 100%;
  max-width: 400px;
  /* istersen sabit genişlik belirleyebilirsin */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.info-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* video taşmadan orantılı kırpılır */
  border-radius: 20px;
}

.info-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media (max-width: 480px) {
  .info-title {
    font-size: 1.7rem;
  }

  .info-desc {
    font-size: 0.95rem;
  }
}

/* info-section alanı son */

/* values-section alanı başlangıç */

.values-section {
  background: #000;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px 40px;
  text-align: left;
}

.values-header {
  max-width: 400px;
  margin-bottom: 40px;
}

.values-header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.values-header p {
  font-size: 0.95rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.5;
}

.values-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
  width: 100%;
  max-width: 420px;
}

.values-slider::-webkit-scrollbar {
  display: none;
}

.value-card {
  flex: 0 0 70% !important;
  background: #111;
  border-radius: 20px;
  padding: 24px;
  min-height: 260px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.4s ease;
}

.value-icon {
  font-size: 24px;
  margin-bottom: 16px;
}

.value-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #ccc;
  line-height: 1.6;
}

.value-indicator {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #f1f1f1;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.dot1 {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #999;
  transition: all 0.3s ease;
}

.dot1.active {
  width: 30px;
  height: 8px;
  border-radius: 10px;
  background: #000;
}

.values-footer {
  margin-top: 40px;
}

.values-footer img {
  width: 100px;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .values-header h2 {
    font-size: 1.4rem;
  }

  .value-card {
    flex: 0 0 92%;
  }
}

/* values-section alanı son */


/* life-change alanı başlangıç */
.life-change {
  background: #f9f9f9;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.life-header {
  margin-bottom: 30px;
}

.life-header h2 {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.3;
}

.life-header strong {
  font-weight: 700;
}

.life-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.life-slider {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow: hidden;
  padding: 0 10px;
}

.life-item {
  flex: 0 0 85%;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.4s ease;
}

.life-item img {
  width: 100%;
  height: 420px;
  border-radius: 30px;
  object-fit: cover;
}

.life-item .inner-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.life-item .inner-btn:hover {
  background: #444;
}

.life-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.life-controls button {
  background: none;
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.3s ease;
}

.life-controls button:hover {
  color: #666;
}

@media (max-width: 480px) {
  .life-item img {
    height: 400px;
  }

  .life-header h2 {
    font-size: 1.4rem;
  }
}

.modal-content {
  border-radius: 20px;
  background-color: #fff;
  color: #000;
}

.modal-header h5 {
  font-weight: 700;
  font-size: 1.2rem;
}

/* life-change alanı son */

/* visco-section alanı başlangıç */
.visco-section {
  background: #fff;
  color: #000;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  box-sizing: border-box;
}

.visco-header {
  max-width: 400px;
  margin-bottom: 40px;
  position: relative;
  padding-top: 50px;
  text-align: start;
}

.visco-header img {
  position: absolute;
  top: 0;
  left: 0%;
  transform: translateX(-50%);
  width: 40px;
  height: auto;
}

.visco-header p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.progress-ring {
  position: relative;
  width: 220px;
  height: 220px;
  margin-bottom: 40px;
}

.progress-ring circle {
  fill: none;
  stroke-width: 14;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

.progress-ring .bg-ring {
  stroke: #e5e5e5;
}

.progress-ring .progress {
  stroke: #23C502;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
}

.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.progress-text span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.progress-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.progress-text p {
  font-size: 0.85rem;
  margin: 5px 0 0 0;
  color: #555;
}


.progress-text h2::after {
  content: '%';
  font-size: 1.5rem;
  vertical-align: super;
}

.visco-desc {
  max-width: 380px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  text-align: start;
}

@media (max-width: 480px) {
  .progress-ring {
    width: 180px;
    height: 180px;
  }

  .progress-text h2 {
    font-size: 2.8rem;
  }

  .progress-text h2::after {
    font-size: 1.2rem;
  }
}

.progress-ring .progress {
  stroke: #23C502;
  stroke-dasharray: 628;
  stroke-dashoffset: 628;
}

.progress-text span {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 5px;
}

.progress-text h2 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1;
  color: #23C502;
}

.progress-text h2::after {
  content: '%';
  font-size: 1.5rem;
  vertical-align: super;
}

.progress-text p {
  font-size: 0.85rem;
  margin: 5px 0 0 0;
  color: #555;
}


.progress-ring {
  position: relative;
  width: 280px;
  height: 280px;
  margin-bottom: 40px;
}

.progress-ring .progress {
  stroke: #23C502;
  stroke-dasharray: 754;
  stroke-dashoffset: 754;
  transition: stroke-dashoffset 2s ease-out;
}

/* visco-section alanı son */



/* footer alanı başlangıç */
.footer-section {
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 0px 20px;
  box-sizing: border-box;
  max-height: 10vh !important;
}

.footer-content img {
  width: 150px;
  height: auto;
  margin-bottom: 12px;
  opacity: 0.9;
}

/* footer alanı son */