@font-face {
  font-family: "CustomFont";
  src: url("MarkPro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontBold";
  src: url("MarkProBold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CustomFontMedium";
  src: url("MarkProMedium.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
:root {
  /* Font Aileleri */
  --font-primary: "CustomFont", Arial, sans-serif;
  --font-primary-bold: "CustomFontBold", Arial, sans-serif;
  --font-primary-medium: "CustomFontMedium", Arial, sans-serif;

  /* Font Boyutları */
  --font-size-big-bold: 90px;
  --font-size-big-bold-2: 72px;
  --font-size-big-bold-3: 64px;
  --font-size-big-regular: 80px;
  --font-size-big-regular-2: 72px;

  --font-size-mid-bold: 40px;
  --font-size-mid-bold-2: 56px;
  --font-size-mid-medium: 40px;
  --font-size-mid-medium-2: 56px;
  --font-size-mid-medium-3: 32px;
  --font-size-mid-regular: 40px;
  --font-size-mid-regular-2: 32px;

  --font-size-small-bold: 24px;
  --font-size-small-bold-2: 20px;
  --font-size-small-medium-: 24px;
  --font-size-small-regular: 24px;
  --font-size-small-regular-2: 20px;

  --font-size-xsmall-bold: 18px;
  --font-size-xsmall-bold-2: 16px;
  --font-size-xsmall: 18px;
  --font-size-xxsmall: 10px;

  /* Renkler */
  --text-color-primary: #ec298f;
  --text-color-primary-light: #ffebf6;
  --text-color-light: #f6f7ff;
  --text-color-dark: #282a3d;
  --text-color-dark-mid-2: #4d5176;
  --text-color-dark-mid: #5e617d;
  --text-color-dark-mid-3: #8b8fc0;
}

body {
  margin: 0;
  padding: 0;
}
body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  background-color: white;
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
}
.burger-menu {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}
.menu-container {
  display: flex;
  width: 75%;
  align-items: center;
  justify-content: space-between;
  /* gap: 24px; */
}
.parallax {
  pointer-events: auto; /* Fare etkileşimini etkinleştir */
}
#hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 8;
}

#circle {
  position: absolute;
  z-index: 2; /* Yuvarlak arka plandan üstte */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 7;
  width: 100%;
  height: 100%;
}
#hero {
  position: relative;
  z-index: 2; /* Yuvarlak arka plandan üstte */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 8;
}

#hero img {
  width: 100%;
  height: auto; /* Görsel oranlı genişlik */
  transform: scale(0.1); /* Küçük başlar */
  transform-origin: center; /* Ölçeklenme merkezi */
  transition: transform 2s ease-in-out; /* Görsel büyüme animasyonu */
}
#circle img {
  width: 500%;
  height: auto; /* Görsel oranlı genişlik */
  transform: scale(0.1); /* Küçük başlar */
  transform-origin: center; /* Ölçeklenme merkezi */
  transition: transform 2s ease-in-out; /* Görsel büyüme animasyonu */
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: white; /* Arka plan beyaz */
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.text-365 {
  margin-bottom: -20%;
  height: 25%;
  background-image: url("365.png");
  background-size: contain; /* Görsel ekran boyutuna göre ölçeklenir */
  background-position: center; /* Görseli ortala */
  background-repeat: no-repeat; /* Görseli tekrar ettirme */
}
/* Ana İçerik */
#main-content {
  display: none;
  position: relative;
  z-index: 2;
  max-width: 100vw;
}

.content-section {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section-1 {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-align: center;
}
.content-section h1 {
  font-size: 2rem;
  color: #333;
}

.content-section p {
  font-size: 1.2rem;
  color: #555;
}

.content-section.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 95vh; /* Tam ekran yüksekliği */
  width: 100vw;
  padding: 20px;
  position: relative;
  z-index: 1;
  background-image: url("content_1.png"); /* Sadece bu bölümde arka plan resmi */
  background-size: cover; /* Görsel ekran boyutuna göre ölçeklenir */
  background-position: center; /* Görseli ortala */
  background-repeat: no-repeat; /* Görseli tekrar ettirme */
  color: #fff; /* Yazılar için beyaz renk */
}

.navbar {
  transform: translateY(-30%);
  position: fixed; /* Navbar'ı ekranın en üstüne sabitler */
  padding: 10px 50px; /* Sol ve sağdan boşluk ekler */
  top: 0; /* Sayfanın en üstüne hizalar */
  left: 0;
  width: 100%; /* Ekran genişliğini kaplar */
  box-sizing: border-box; /* Padding'i genişliğin içine dahil eder */
  color: white; /* Yazı rengi */
  display: flex;
  justify-content: space-between; /* Elemanları sola ve sağa hizalar */
  align-items: center; /* Dikeyde ortalar */
  z-index: 1; /* Diğer elemanların üzerinde görünmesi için */
  transition: transform 0.3s ease-in-out; /* Animasyon ekleyin */
}

.navbar.hidden {
  transform: translateY(-100%); /* Navbar'ı ekranın dışına taşır */
}
.logo-container {
  transform: translateX(15%);

  /* transform: translateY(-30%); */
  width: 150px; /* Logo kapsayıcısının genişliği */
  height: 150px; /* Logo kapsayıcısının yüksekliği */
  border-radius: 50%; /* Yuvarlak arka plan */
  display: flex; /* İçeriği hizalamak için flexbox */
  justify-content: center; /* Yatayda ortalar */
  align-items: center; /* Dikeyde ortalar */
  position: relative; /* Diğer elemanlara göre konumlandırma için */
}

.logo-image {
  transform: translateX(10%);
  transform: translateY(10%);
  width: 104px; /* PNG resmin genişliği (kapsayıcıya göre) */
  height: auto; /* Oranlı yükseklik */
  object-fit: contain; /* Görselin kutuya sığmasını sağlar */
  position: absolute; /* Arka plan içinde serbestçe konumlanır */
}
/* .navbar .logo {
    font-size: 24px;
    font-weight: bold;
} */

.navbar .nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.navbar .nav-links li {
  font-size: var(--font-size-xsmall);
}

.navbar .nav-links li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

/* .navbar .nav-links li a:hover {
  color: var(--text-color-dark-mid);
} */

.navbar .marketplace-btn {
  padding: 10px 20px;
  background-image: url("marketplace.png");
  display: inline-block; /* Butonları satır içinde hizala */
  width: 150px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  cursor: pointer;
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: contain;
  background-color: transparent;
}

.hero-content-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* max-width: 1200px; */
  margin-top: 50px;
  padding-left: 10%;
}

.text-content {
  flex: 1;
  margin-right: 20px;
  text-align: start;
}

.text-content-everything {
  font-size: var(--font-size-big-regular-2);
  line-height: 1; /* Satır yüksekliği */

  color: var(--text-color-primary); /* Yazı rengi */
  background-color: #fff; /* Arka plan rengi */
  padding: 10px 20px; /* Yazının etrafına boşluk ekler */
  border-radius: 5px; /* Kenarları yuvarlar */
  display: inline-block; /* Arka planın sadece yazıya uygulanmasını sağlar */
  text-align: center; /* Yazıyı hizalar */
}

.text-content-rest {
  font-size: 50px;
  line-height: 1.2; /* Satır yüksekliği */
  color: #fff; /* Yazı rengi */
  font-family: "CustomFontBold", Arial, sans-serif; /* Default font */
}

.text-content span {
  color: #fff;
  font-size: 50px;
}

.text-content p {
  font-size: var(--font-size-small-regular);
  line-height: 1;
  margin: 20px 0;
  color: #fff;
}

.need-and-buttons {
  display: flex; /* Öğeleri yatayda hizalar */
  align-items: center; /* Yükseklik olarak ortalar */
  gap: 20px; /* "need" ve butonlar arasında boşluk */
}

.buttons {
  display: flex; /* Butonları yatayda hizalar */
  gap: 10px; /* Butonlar arasında boşluk */
  border-radius: 10px; /* Kenarları yuvarlar */
  z-index: 2;
}

.btn {
  display: inline-block; /* Butonları satır içinde hizala */
  width: 120px; /* Buton genişliği */
  height: 56px; /* Buton yüksekliği */
  background-repeat: no-repeat; /* Arka plan tekrar etmez */
  background-position: center; /* Arka planı ortalar */
  border: none; /* Kenarlık kaldırılır */
  cursor: pointer; /* Buton üzerinde imleç değişir */
  background-size: cover;
}

.btn.app-store {
  background-image: url("apple.png");
}

.btn.google-play {
  background-image: url("google.png");
}

.btn.download-app {
  background-image: url("download-app-copy.png");
  background-position: center;
  width: 180px;
  /* height: 70px; */
}

.hero-images .dog-image {
  position: absolute;
  top: 40%;
  transform: translate(0%, -60%);
  width: 50%;
  height: auto;
  z-index: 0;
}

.hero-images {
  position: relative;
  display: flex;
  /* justify-content: flex-end; */
  align-items: flex-end; /* Dikeyde alta hizala */
  height: 100%; /* Hero content'in tamamını kaplar */
  width: 100%; /* Genişlik ekran boyutuna göre ayarlanır */
  flex: 1 1 45%;
}

.slider-bg-image {
  background-image: url(slider.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 17%;
  right: 17%;
  width: 68%;
  height: 18%;
  max-width: 225px;
  object-fit: contain;
  z-index: 3;
}
.slider-bg-image span {
  position: relative;
  top: 25%;
  font-size: var(--font-size-mid-bold);
  font-family: var(--font-primary-bold);
}

/* Slider Container */
.phone-slider-container {
  background-image: url(phone-3.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0%;
  right: 10%;
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 600px;
  object-fit: contain;
  z-index: 2;
  overflow: hidden;
}

/* Slider Images */
.phone-slider-bg-image {
  display: flex;
  position: absolute;
  top: 17%;
  right: 10%;
  width: 85%;
  height: 18%;
  max-width: 245px;
  z-index: 3;
  animation: phone-slide-animation 9s infinite;
  gap: 10%;
}

/* Individual Slide */
.phone-slide {
  flex: 0 0 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Slide Images */
.phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Slide Text */
.phone-slide span {
  position: absolute;
  font-size: var(--font-size-big-bold-3);
  font-family: var(--font-primary-bold);
  color: white;
}
.phone-slider-wrapper {
  position: relative;
  width: calc(100% - 40px); /* Ekranın genişliğini 40px daralt */
  margin: 0 auto; /* Ortala */
  overflow: hidden;
  padding: 0 20px; /* Soldan ve sağdan 20px boşluk bırak */
  box-sizing: border-box; /* Padding'i kutu modeline dahil et */
  bottom: 0%;
  height: 100%;
  max-width: 300px;
  max-height: 600px;
}

/* Slide Animation */
@keyframes phone-slide-animation {
  0% {
    transform: translateX(0%);
  }
  33% {
    transform: translateX(-110%);
  }
  66% {
    transform: translateX(-220%);
  }
  100% {
    transform: translateX(0%);
  }
}

.phone-container {
  background-image: url(phone-3.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0%;
  right: 17%;
  width: 100%;
  height: 100%;
  max-width: 300px;
  max-height: 600px;
  object-fit: contain;
  z-index: 2;
  overflow: hidden;
}

.parallax-section {
  margin-top: 150px !important;
  text-align: center;
  /* padding: 50px 20px; */

  width: 100vw; /* Parallax bölümünün genişliği */
  /* min-height: 70vh; */
  height: 80vw;
  position: relative; /* Diğer elemanlardan bağımsız bir düzen için */
  margin: 0 auto; /* Yatayda ortalamak için */
  display: block; /* Ortalamayı garanti eder */
}
.container-1 {
  margin-top: 150px !important;
  text-align: center;
  /* padding: 50px 20px; */
  background-image: url("ellipse-section-1.png"); /* Arka plan resmi */
  background-size: 100% 100%; /* Arka plan görseli kutuyu dolduracak şekilde ölçeklenir */
  background-position: center; /* Görsel merkezlenir */
  background-repeat: no-repeat; /* Görsel tekrar etmez */
  width: 90%; /* Parallax bölümünün genişliği */
  /* min-height: 70vh; */
  height: 90%;
  position: relative; /* Diğer elemanlardan bağımsız bir düzen için */
  margin: 0 auto; /* Yatayda ortalamak için */
  display: block; /* Ortalamayı garanti eder */
  align-items: center;
  justify-content: center;
  display: flex;
}
.discover {
  margin-top: 50px;
  font-size: 24px;
  color: #000000;
  font-family: "CustomFontBold", Arial, sans-serif; /* Default font */
  color: var(--text-color-dark);
}
.duty-love {
  color: var(--text-color-dark-mid-2);
  font-family: "CustomFontBold", Arial, sans-serif; /* Default font */
}
.arrow {
  display: block;
  font-size: 24px;
  color: #000000;
  font-weight: bold;
  color: var(--text-color-dark);
}

.title {
  position: relative; /* Konumlandırma için referans noktası */
  text-align: center; /* Metni ortalar */
  font-size: 56px; /* Metin boyutu */
  line-height: 1.2; /* Satır yüksekliği */
  color: #333; /* Metin rengi */
  margin: 20px auto; /* Yukarı ve aşağı boşluk ekler */
  z-index: 2; /* Yazıyı üste taşır */
}

.polar-container {
  margin-top: 70px;
  position: relative; /* Kapsayıcı, paw'ların referansı olur */
  display: inline-block; /* Metinle birlikte yatayda yer alır */
  z-index: 5; /* Yazının altında kalır */
}
.paw-text {
  position: relative;
  left: -50px;
  z-index: 5;
  color: var(--text-color-dark-mid-2);
}
.paw-text-love {
  position: relative;
  z-index: 5;
  color: var(--text-color-dark-mid-2);
}
.paw {
  width: 81px; /* Paw genişliği */
  height: 81px; /* Paw yüksekliği */
  background-image: url("paw.png"); /* Arka plan resmi */
  background-size: cover; /* Görseli tamamen kapsar */
  background-position: center; /* Görseli ortalar */
  background-repeat: no-repeat; /* Görselin tekrarını engeller */
  position: absolute; /* Serbest konumlandırma */
  z-index: 0; /* Yazının altında kalır */
}

.polar-top-left {
  top: -5px; /* Yukarı hareket ettir */
  right: -35px; /* Sağa hareket ettir */
}

.polar-bottom-right {
  bottom: -10px; /* Aşağı hareket ettir */
  left: -90px; /* Sola hareket ettir */
}

.stats {
  display: grid; /* Grid düzenini kullan */
  grid-template-columns: repeat(4, 1fr); /* 4 sütun oluştur */
  grid-auto-rows: auto; /* Otomatik olarak satır yüksekliği */
  gap: 20px; /* Öğeler arasında boşluk */
  justify-content: center; /* Yatayda ortala */
  align-items: center; /* Dikeyde ortala */
  width: 100%; /* Tam genişlik */
  max-width: 1200px; /* Maksimum genişlik */
  margin: 0 auto; /* Ortalamak için */
  margin-top: -6%;
  bottom: 50%;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.stat-item {
  padding: 20px;
  border-radius: 10px;
  width: 150px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.number {
  font-size: 36px;
  font-family: "CustomFontBold", Arial, sans-serif; /* Default font */
  margin: 0;
  color: var(--text-color-dark);
}

.footer-section-1 {
  margin: 20px auto;
  width: 554px; /* Genişlik */
  height: 554px; /* Yükseklik */
  background-image: url("ellipse-1-1-1.png"); /* Arka plan resmi */
  background-size: cover; /* Görseli tamamen kapsar */
  background-position: center; /* Görseli ortalar */
  background-repeat: no-repeat; /* Görselin tekrarını engeller */
  display: flex; /* İçeriği hizalamak için flexbox */
  flex-direction: column; /* Öğeleri dikey olarak hizalar */
  justify-content: center; /* Öğeleri dikeyde ortalar */
  align-items: center; /* Öğeleri yatayda ortalar */
  text-align: center; /* Metni ortalar */
  color: white; /* Yazı rengi */
  margin: 0 auto; /* Yatayda ortalamak için */
  bottom: 0%;
  position: absolute;
  align-items: center;
  justify-content: center;
}

.logo {
  width: 258px; /* Logo genişliği */
  height: 148px; /* Logo yüksekliği */
  background-image: url("pawy-colored.png"); /* Logo için arka plan resmi */
  background-size: contain; /* Görseli sığdırır */
  background-repeat: no-repeat; /* Tekrar etmez */
  background-position: center; /* Ortalar */
  z-index: 2; /* Metnin üstünde görünmesi için */
}

.footer-section-1 p {
  margin-top: 15px; /* Logo ile metin arasında boşluk */
  font-size: 70px; /* Yazı boyutu */
  color: var(--text-color-dark); /* Yazı rengi */
}

.container-2 {
  margin-top: 150px !important;
  width: 70%;
  height: 35%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  max-width: 100%;
  margin: auto;
  display: flex;
  background-size: 100%, 100%; /* Görseli sığdırır */
  background-repeat: no-repeat; /* Tekrar etmez */
  background-image: url("ellipse-section-2.png");
}

.text-section-2 {
  width: 50%;
  /* max-width: 50%; */
  text-align: left;
}

.text-section-2 h1 {
  font-size: var(--font-size-mid-bold);
  margin-bottom: 20px;
  color: var(--text-color-dark);
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
}

.why-not {
  font-size: var(--font-size-mid-bold);
  margin-bottom: 20px;
  color: var(--text-color-dark-mid-2) !important;
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
}

.text-section-2 p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-color-dark-mid);
  font-family: "CustomFont", Arial, sans-serif; /* Default font */
}

.discover-btn-2 {
  width: 30%;
  height: 60px;
  text-decoration: none;
  padding: 10px 20px;
  background-image: url("discover-2.png");
  border-radius: 25px;
  font-size: 1rem;
  display: flex;
  background-size: 100%, 100%; /* Görseli sığdırır */
  background-repeat: no-repeat; /* Tekrar etmez */
  background-position: center; /* Ortalar */
}

.image-section-2 {
  width: 50%;
  display: flex;
  gap: 15px;
}

.card-2 {
  width: 743px;
  height: 373px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-left: -40px; /* Negative margin to overlap the cards */
  z-index: 0; /* Set the stacking order */
  right: -74px;
}

.card-2 img {
  width: 100%;
  height: auto;
}

.container-3 {
  display: flex;
  flex-direction: column; /* Arrange items vertically */
  justify-content: space-between; /* Add space between text and images */
  align-items: center; /* Center horizontally */
  margin-top: 100px !important;
  max-width: 100%;
  height: 100%; /* Full viewport height */
  width: 100%;
  margin: auto;
  background-size: contain; /* Fit background within container */
  background-repeat: no-repeat; /* Prevent repeating */
  background-position: center; /* Center background image */
  background-image: url("section3-bg.png");
}

.text-section-3 {
  max-width: 100%;
  text-align: center;
  margin-top: 100px;
  font-size: 45px;
}
.text-section-3 p {
  margin-bottom: 20px;
}

.image-section-3 {
  display: flex;
  gap: 35px; /* Space between cards */
  margin-top: auto; /* Push the section to the bottom */
}

.card-3 {
  margin-bottom: 200px;
  /* width: 550px;
  height: 550px; */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.alongside-text {
  margin-top: 0px !important;
  color: var(--text-color-dark);
}
.card-3 img {
  width: 40%;
  height: auto;
}
.pawy-text {
  color: #ec298f;
  font-weight: bold;
}
.heading-container {
  color: var(--text-color-dark);
  font-size: 45px;
  text-align: center; /* Center-align all the rows */
}

.container-4 {
  margin-top: 150px !important;
  display: flex; /* Flex düzenini kullan */
  justify-content: space-between; /* Sol ve sağ alanı ayır */
  align-items: flex-start; /* İçeriği üst hizala */
  gap: 20px; /* Sol ve sağ bölümler arasında boşluk */
  max-width: 90%; /* Maksimum genişlik */
  margin: 0 auto;
  padding: 20px; /* Kenarlardan boşluk */
  background-size: 100% 100%; /* Fit background within container */
  background-repeat: no-repeat; /* Prevent repeating */
  background-image: url("ellipse-section-4.png");
  position: relative; /* İçeriği bağlama noktası */
  width: 70%;
  height: 40%;
}
.left-section {
  position: relative;
  overflow: hidden; /* Taşan alanları gizle */
  margin-top: -110px !important;
}
.left-section,
.right-section {
  position: relative; /* İçeriği bağlama noktası */
  flex: 1; /* Sol ve sağ bölümleri eşit genişlikte yap */
  display: flex;
  flex-direction: column; /* İçeriği dikey hizala */
  align-items: start; /* İçeriği yatay ortala */
  overflow: hidden; /* Her alt öğe taşmayı gizlemeli */
  margin-top: 20px;
}

.left-image {
  width: 40%; /* Görsellerin genişliğini kapsayıcıya sığdır */
  height: auto; /* Görsellerin oranını koru */
  margin-top: 50px;
  margin-left: 50%;
}

.left-text {
  text-align: justify; /* Metni hizala */
  font-size: 60px; /* Yazı boyutu */
  line-height: 1.5; /* Satır aralığı */
  margin-top: 0px !important;
  color: #ec298f;
  font-weight: bold;
}

.right-section {
  overflow: visible;
  flex: 1;
  display: flex;
  flex-direction: column; /* İçeriği dikey hizala */
  align-items: center; /* İçeriği yatay ortala */
  position: relative; /* Konumlandırmaya referans */
  right: 50px; /* Sağ tarafa hizala */
  bottom: 20px;
}

.right-image {
  position: relative; /* Fotoğrafı sağ bölgenin en altına sabitle */
  width: 40%; /* Görseli kapsayıcıya sığdır */
  height: auto; /* Oranı koru */
}
.heading-1 {
  font-size: 55px; /* Yazı boyutu */
}
.heading-2 {
  font-weight: bold;
  font-size: 50px; /* Yazı boyutu */
}
.container-5 {
  margin-top: 150px !important;

  display: flex;
  flex-direction: column; /* Arrange items vertically */
  justify-content: space-between; /* Add space between text and images */
  align-items: center; /* Center horizontally */
  max-width: 100%;
  height: 50%; /* Full viewport height */
  width: 100%;
  margin: auto;
  background-size: contain; /* Fit background within container */
  background-repeat: no-repeat; /* Prevent repeating */
  background-image: url("pawy-text.png");
  overflow: hidden;
}

.text-section-5 {
  max-width: 100%;
  text-align: center;
  margin-top: 100px;
  font-size: 25px;
  width: 80%;
}
.text-section-5 p {
  margin-bottom: 20px;
  color: var(--text-color-dark-mid-2);
}

.image-section-5 {
  display: flex;
  gap: 15px; /* Space between cards */
  margin-top: auto; /* Push the section to the bottom */
}

.card-5 img {
  width: 100%;
  height: auto;
}

.heading-container-2 {
  font-size: 20px;
  text-align: center; /* Center-align all the rows */
}
.container-7 {
  margin-top: 150px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh; /* Tam ekran yüksekliği */
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("section-7.png");
}

html,
body {
  /* height: 100%; Sayfanın tamamını kapsaması için */
  margin: 0; /* Varsayılan boşlukları kaldır */
  display: flex;
  flex-direction: column; /* Dikey düzen */
}

.discover,
.title,
.stats,
.footer-section-1,
.image-section-2,
.discover-btn-2,
.text-section-2,
.container-2,
.card-2,
.container-3,
.card-3,
.text-section-3,
.image-section-3,
.container-5,
.text-section-5,
.heading-container-2,
.container-7,
.container-4,
.left-section,
.right-section {
  opacity: 0; /* Başlangıçta görünmez */
  transform: translateY(50px); /* Hafif aşağıda başlar */
  transition: opacity 1.6s ease, transform 1.6s ease; /* Animasyon */
}
.parallax-active {
  opacity: 1; /* Görünür hale gelir */
  transform: translateY(0); /* Yukarı doğru hareket eder */
}
.hidden {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.active {
  opacity: 1;
}
@media screen and (max-width: 1450px) {
  .footer-section-1 {
    width: 50%;
    height: 40%;
    background-size: contain;
  }
  .footer-section-1 p {
    width: 40%;
    font-size: 40px;
  }
}
@media screen and (max-width: 1382px) {
  .footer-section-1 {
    width: 300px;
    height: 300px;
  }
  .logo {
    width: 200px; /* Logo genişliği */
    height: 138px; /* Logo yüksekliği */
  }

  .footer-section-1 p {
    font-size: 50px; /* Yazı boyutu */
  }
}
@media screen and (max-width: 1295px) {
  .footer-section-1 {
    width: 380px;
    height: 380px;
  }
  .logo {
    width: 160px; /* Logo genişliği */
    height: 100px; /* Logo yüksekliği */
  }

  .footer-section-1 p {
    font-size: 32px; /* Yazı boyutu */
  }
  .hero-images .dog-image {
    width: 55%;
    height: auto;
    transform: translate(-6%, -60%);
  }
  .phone-slider-container {
    max-width: 260px;
    max-height: 520px;
  }
  .text-section-3 p {
    font-size: var(--font-size-mid-regular);
  }
  .heading-container {
    font-size: var(--font-size-mid-regular-2);
    text-align: center;
  }
  .heading-2,
  .left-text {
    font-size: 46px;
  }
  .heading-1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 1150px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 40px;
  }
  .hero-images .dog-image {
    width: 55%;
    height: auto;
    transform: translate(-30%, -70%);
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 30%;
  }

  .btn {
    width: 100px; /* Buton genişliği */
    height: 48px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 150px;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 20px;
  }
  .title {
    font-size: 46px;
  }
  .paw {
    width: 71px; /* Paw genişliği */
    height: 71px; /* Paw yüksekliği */
  }
  .stat-item {
    padding: 20px;
    width: 140px;
  }
  .stats {
    width: 90%;
  }
  .number {
    font-size: 30px;
  }
  .footer-section-1 {
    width: 340px;
    height: 340px;
  }
  .logo {
    width: 140px; /* Logo genişliği */
    height: 80px; /* Logo yüksekliği */
  }

  .footer-section-1 p {
    font-size: 30px; /* Yazı boyutu */
  }
  .polar-container {
    margin-top: 45px;
  }
  .text-section-2 h1 {
    font-size: var(--font-size-small-regular);
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: var(--font-size-xsmall);
    margin-bottom: 10px;
    color: #666;
  }
  .card-2 {
    right: -20%;
  }
  .card-2 img {
    width: 80%;
  }
  .discover-btn-2 {
    width: 60%;
  }
  .heading-container {
    font-size: var(--font-size-mid-regular-2);
    text-align: center;
  }
  .text-section-3 p {
    font-size: var(--font-size-mid-regular);
  }
  .heading-2,
  .left-text {
    font-size: 44px;
  }
  .heading-1 {
    font-size: 26px;
  }
  .text-section-5 {
    margin-top: 30px;
  }
  .slider-text {
    font-size: var(--font-size-small-medium-);
  }
}
@media screen and (max-width: 1030px) and (min-height: 1030px) {
  .content-section.hero-content {
    height: 45vh;
  }
  .footer-section-1 {
    width: 300px;
    height: 300px;
  }
  .logo {
    width: 120px; /* Logo genişliği */
    height: 60px; /* Logo yüksekliği */
  }

  .footer-section-1 p {
    font-size: var(--font-size-small-regular); /* Yazı boyutu */
  }
  .polar-container {
    margin-top: 45px;
  }
  .text-section-2 h1 {
    font-size: var(--font-size-xsmall);
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: var(--font-size-xxsmall);
    margin-bottom: 10px;
    color: #666;
  }
  .card-2 img {
    width: 80%;
  }
  .discover-btn-2 {
    width: 60%;
  }
  .heading-container {
    font-size: var(--font-size-small-regular);
    text-align: center;
  }
  .text-section-3 p {
    font-size: var(--font-size-small-regular);
  }
  .heading-2,
  .left-text {
    font-size: var(--font-size-mid-regular);
  }
  .heading-1 {
    font-size: var(--font-size-small-medium-);
  }
  .text-section-5 {
    margin-top: 30px;
  }
  .slider-text {
    font-size: var(--font-size-small-medium-);
  }
}
@media screen and (max-width: 940px) and (max-height: 940px) {
  .phone-slider-container {
    max-width: 130px;
    max-height: 250px;
  }
  .hero-images .dog-image {
    width: 250px;
  }
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 30px;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 15px;
  }
  .btn {
    width: 90px;
    height: 47px;
  }
  .content-section.hero-content {
    height: 100vh;
  }
  .phone-slide span {
    font-size: var(--font-size-small-bold-2);
  }
}
@media screen and (max-width: 940px) and (min-height: 940px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 34px;
  }
  .btn {
    width: 80px; /* Buton genişliği */
    height: 30px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 130px;
  }
  .hero-images .dog-image {
    width: 55%;
    height: auto;
    transform: translate(-25%, -75%);
  }
  .navbar .nav-links li {
    font-size: var(--font-size-xxsmall);
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 10%;
  }
  .phone-slider-container {
    max-width: 230px;
    max-height: 450px;
    right: 10%;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 18px;
  }
  .title {
    font-size: 40px;
  }
  .paw {
    width: 61px; /* Paw genişliği */
    height: 61px; /* Paw yüksekliği */
  }
  .stat-item {
    padding: 10px;
    width: 60px;
  }
  .stats {
    width: 70%;
  }
  .number {
    font-size: 26px;
  }
}
@media screen and (max-width: 850px) {
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 34px;
  }
  .phone-slider-container {
    max-width: 200px;
    max-height: 400px;
    right: 10%;
  }
  .btn {
    width: 80px; /* Buton genişliği */
    height: 30px; /* Buton yüksekliği */
  }
  .btn.download-app {
    width: 130px;
  }
  .hero-images .dog-image {
    width: 60%;
    height: auto;
    transform: translate(-25%, -70%);
  }
  /* .hero-images .dog-image {
    width: 55%;
    height: auto;
    transform: translate(-90%, -82%);
} */
  .content-section.hero-content {
    height: 45vh;
  }
  .hero-images .phone-image {
    height: 65vh;
    width: auto;
    left: 10%;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 16px;
  }
  .title {
    font-size: 34px;
  }
  .card-3 img {
    width: 35%;
  }
  .paw {
    width: 31px; /* Paw genişliği */
    height: 31px; /* Paw yüksekliği */
  }
  .polar-top-left {
    top: 45px; /* Yukarı hareket ettir */
    left: -30px; /* Sola hareket ettir */
  }

  .polar-bottom-right {
    bottom: 40px; /* Aşağı hareket ettir */
    left: 170px; /* Sağa hareket ettir */
  }
  .stat-item {
    padding: 10px;
    width: 120px;
  }
  .navbar .nav-links li {
    font-size: var(--font-size-xxsmall);
  }
  .stats {
    width: 50%;
  }
  .number {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) and (max-height: 768px) {
  .phone-slider-container {
    max-width: 130px;
    max-height: 250px;
  }
  .hero-images .dog-image {
    width: 250px;
  }
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: 30px;
  }
  .text-content p,
  .discover,
  .arrow {
    font-size: 15px;
  }
  .btn {
    width: 90px;
    height: 47px;
  }
  .content-section.hero-content {
    height: 100vh;
  }
  .phone-slide span {
    font-size: var(--font-size-small-bold-2);
  }

  .logo-container {
    width: 110px;
    height: 110px;
  }

  .content-section.hero-content {
    height: 90vh;
  }
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: var(--font-size-small-medium-);
  }
  .btn {
    width: 50px;
    height: 23px;
  }
  .text-content-everything {
    padding: 5px 0px;
  }

  .btn.download-app {
    width: 80px;
    height: 24px;
  }
  .hero-images .dog-image {
    width: 43%;
    height: auto;
    transform: translate(-53%, -84%);
  }
  .phone-slide span {
    font-size: var(--font-size-xxsmall);
  }
  .phone-slider-container {
    max-width: 90px;
    max-height: 180px;
    right: 10%;
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 30%;
  }
  .text-content p {
    width: 80%;
  }

  .text-content p,
  .discover,
  .arrow {
    font-size: var(--font-size-xxsmall);
  }
  .title {
    font-size: 14px;
    margin: 0px;
  }
  .paw {
    width: 31px; /* Paw genişliği */
    height: 31px; /* Paw yüksekliği */
  }
  .polar-container {
    margin-top: 50px !important;
    margin-left: 50px !important;
  }
  .polar-top-left {
    top: 15px; /* Yukarı hareket ettir */
    left: -30px; /* Sola hareket ettir */
  }

  .polar-bottom-right {
    bottom: 15px; /* Aşağı hareket ettir */
    left: 40px; /* Sağa hareket ettir */
  }
  .stat-item {
    padding: 10px;
    width: 70px;
  }
  .stat-item p {
    font-size: 10px !important;
  }
  .stats {
    gap: 0px 0px; /* Öğeler arasında boşluk */
    width: 30%;
    bottom: 30% !important;
  }
  .number,
  .shots-text {
    font-size: 10px;
  }
  .footer-section-1 {
    width: 120px;
    height: 120px;
  }
  .logo {
    width: 50px; /* Logo genişliği */
    height: 28px; /* Logo yüksekliği */
  }

  .navbar .marketplace-btn {
    padding: 10px 32px;
    margin-left: 10px;
  }

  .footer-section-1 p {
    font-size: 10px; /* Yazı boyutu */
  }
  .parallax-section {
    margin-top: 10px !important;
    width: 100vw;
    height: 100vw;
  }
  .navbar .nav-links {
    gap: 10px;
  }
  .navbar .nav-links li a {
    font-size: 10px;
  }
  .navbar .nav-links li {
    font-size: 10px;
  }
  .logo-image {
    width: 60px;
  }
  .container-1 {
    margin-top: 5px !important;

    width: 70%;
    height: 60%;
  }

  .text-section-2 h1 {
    font-size: 10px;
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: 0.5rem;
    margin-bottom: 10px;
    color: #666;
  }

  .discover-btn-2 {
    width: 54px;
    height: 43px;
  }

  .container-2 {
    margin-top: 50px !important;
    padding-top: 20px !important;
  }

  .card-2 {
    width: 193px;
    height: 273px;
    margin-right: 15px;
  }

  .container-3 {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: space-between; /* Add space between text and images */
    align-items: center; /* Center horizontally */
    margin-top: 0px !important;
    max-width: 100%;
    height: 70%; /* Full viewport height */
    width: 100%;
  }

  .text-section-3 {
    max-width: 100%;
    text-align: center;
    margin-top: 70px;
    font-size: 15px;
  }
  .text-section-3 p {
    margin-bottom: 10px;
  }

  .card-3 {
    margin-bottom: 50px;
    width: 80vw;
    /* height: 120px; */
  }

  .heading-container {
    font-size: 10px;
    text-align: center; /* Center-align all the rows */
  }

  .container-4 {
    margin-top: 50px !important;
    display: flex; /* Flex düzenini kullan */
    justify-content: space-between; /* Sol ve sağ alanı ayır */
    align-items: flex-start; /* İçeriği üst hizala */
    gap: 20px; /* Sol ve sağ bölümler arasında boşluk */
    max-width: 90%; /* Maksimum genişlik */
    margin: 0 auto;
    padding: 20px; /* Kenarlardan boşluk */
    background-size: 100% 100%; /* Fit background within container */
    background-repeat: no-repeat; /* Prevent repeating */
    background-image: url("ellipse-section-4.png");
    position: relative; /* İçeriği bağlama noktası */
    overflow: visible; /* Taşan alanları gizle */
    width: 70%;
    height: 20%;
  }
  .left-section {
    position: relative;
    overflow: hidden; /* Taşan alanları gizle */
    margin-bottom: -30px;
    margin-top: -20px !important;
  }
  .left-section,
  .right-section {
    position: relative; /* İçeriği bağlama noktası */
    flex: 1; /* Sol ve sağ bölümleri eşit genişlikte yap */
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    overflow: hidden; /* Her alt öğe taşmayı gizlemeli */
  }

  .left-image {
    margin-left: 25%;
    width: 100%; /* Görsellerin genişliğini kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Görsellerin oranını koru */
    margin-top: 15px !important;
  }

  .left-text {
    text-align: justify; /* Metni hizala */
    font-size: 14px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    margin-top: 10px !important;
    color: #ec298f;
    font-weight: bold;
  }

  .right-section {
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    position: relative; /* Konumlandırmaya referans */
    right: 50px; /* Sağ tarafa hizala */
    bottom: 20px;
  }

  .right-image {
    position: relative; /* Fotoğrafı sağ bölgenin en altına sabitle */
    width: 100%; /* Görseli kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Oranı koru */
  }
  .heading-1 {
    text-align: justify; /* Metni hizala */
    font-size: 10px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    height: 35%;
  }
  .heading-2 {
    font-size: 12px; /* Yazı boyutu */
  }
  .container-5 {
    margin-top: 70px !important;
  }

  .text-section-5 {
    max-width: 100%;
    text-align: center;
    margin-top: 40px;
    font-size: 10px;
    width: 80%;
  }
  .text-section-5 p {
    margin-bottom: 20px;
  }

  .slider-heading h2 {
    font-size: var(--font-size-xxsmall-) !important;
  }
  .slider {
    position: relative;
    width: 95%;
    height: 40% !important;
  }
  .slider-detail {
    width: 150px;
    height: 100px;
  }
  .slider-item {
    height: 40px !important;
    flex: 0 0 calc(25% - -13px) !important;
  }
  .slider-item div {
    height: 15px;
  }
  .image-section-5 {
    display: flex;
    gap: 15px; /* Space between cards */
    margin-top: auto; /* Push the section to the bottom */
  }

  .card-5 img {
    width: 100%;
    height: auto;
  }

  .heading-container-2 {
    font-size: 8px;
    text-align: center; /* Center-align all the rows */
  }
  .container-7 {
    margin-top: 50px !important;
    height: 100%;
  }

  .footer_container {
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("background-footer.png");
    color: #fff; /* Yazı rengi */
    font-family: "CustomFont", Arial, sans-serif; /* Default font */
    margin-top: auto; /* Footer'ı en alta it */
    overflow: hidden;
    font-size: 12px !important;
  }

  .footer_top {
    position: relative;
    margin-left: 2.5%;
    margin-bottom: 30px;
    padding-bottom: 0%;
    margin-top: 2.5%;
    width: 95%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("footer-banner.png");
    text-align: center; /* Metni ortala */
  }

  .footer_bottom {
    width: 100%;
    height: 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("footer-bottom-bg.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer_bot_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 90vw;
    margin-bottom: 0px;
  }

  .footer_logo img {
    margin-top: 20px;
    max-width: 50px; /* Logo boyutu */
  }

  /* Diğer footer stilleri aynen kalabilir */

  .footer_menu h4,
  .footer_contact h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer_menu ul {
    list-style: none;
    padding: 0;
    gap: 10px !important;
  }

  .footer_menu ul li {
    margin-bottom: 5px;
  }

  .footer_menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 8px;
  }

  .footer_menu ul li a:hover {
    text-decoration: underline;
  }

  .footer_contact p {
    margin: 5px 0;
    font-size: 9px;
  }
  .footer_contact h4 {
    font-size: 9px;
  }
  .footer_contact a {
    color: #fff;
    text-decoration: none;
  }

  .footer_credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 90vw;
    border-top: 1px solid #333; /* İnce bir üst çizgi */
    padding-top: 20px; /* Üst çizgiden boşluk */
    font-size: 10px;
  }

  .footer_links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
  }

  .footer_links a:hover {
    text-decoration: underline;
  }

  .footer_social a {
    display: inline-block;
    margin-left: 10px;
  }

  .footer_social img {
    width: 20px;
    height: 20px;
  }

  .text-content-footer {
    padding-top: 10%;
    margin-left: 5%;
    flex: 1;
    margin-right: 20px;
    text-align: start;
  }
  .text-content-footer span {
    color: #fff;
    font-size: 36px;
  }

  .text-content-footer p {
    font-size: 14px;
    line-height: 1;
    margin: 20px 0;
    color: #fff;
  }
  span.tired {
    font-size: 14px;
  }
}
/* @media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #444;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }
} */

@media screen and (max-width: 440px) {
  .content-section.hero-content {
    height: 40vh;
  }
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: var(--font-size-small-medium-);
  }
  .btn {
    width: 35px; /* Buton genişliği */
    height: 18px; /* Buton yüksekliği */
  }
  .text-content-everything {
    padding: 5px 0px;
  }

  .btn.download-app {
    width: 60px;
    height: 18px;
  }
  .hero-images .dog-image {
    width: 80%;
    height: auto;
    transform: translate(-40%, -85%);
  }
  .phone-slide span {
    font-size: var(--font-size-xxsmall);
  }
  .phone-slider-container {
    max-width: 100px;
    max-height: 200px;
    right: 10%;
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 30%;
  }
  .text-content p {
    width: 80%;
  }

  .text-content p,
  .discover,
  .arrow {
    font-size: var(--font-size-xxsmall);
  }
  .title {
    font-size: 14px;
    margin: 0px;
  }
  .paw {
    width: 31px; /* Paw genişliği */
    height: 31px; /* Paw yüksekliği */
  }
  .polar-container {
    margin-top: 30px !important;
    margin-left: 50px !important;
  }
  .polar-top-left {
    top: 15px; /* Yukarı hareket ettir */
    left: -30px; /* Sola hareket ettir */
  }

  .polar-bottom-right {
    bottom: 15px; /* Aşağı hareket ettir */
    left: 40px; /* Sağa hareket ettir */
  }
  .stat-item {
    padding: 10px;
    width: 70px;
  }
  .stat-item p {
    font-size: 10px !important;
  }
  .stats {
    gap: 0px 0px; /* Öğeler arasında boşluk */
    width: 30%;
    bottom: 30% !important;
  }
  .number,
  .shots-text {
    font-size: 10px;
  }
  .footer-section-1 {
    width: 120px;
    height: 120px;
  }
  .logo {
    width: 50px; /* Logo genişliği */
    height: 28px; /* Logo yüksekliği */
  }

  .navbar .marketplace-btn {
    padding: 10px 32px;
    margin-left: 10px;
  }

  .footer-section-1 p {
    font-size: 10px; /* Yazı boyutu */
  }
  .parallax-section {
    margin-top: 10px !important;
    width: 100vw;
    height: 100vw;
  }
  .navbar .nav-links {
    gap: 10px;
  }
  .navbar .nav-links li a {
    font-size: 10px;
  }
  .navbar .nav-links li {
    font-size: 10px;
  }
  .logo-image {
    width: 60px;
  }
  .container-1 {
    margin-top: 5px !important;
  }

  .text-section-2 h1 {
    font-size: 10px;
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: 0.5rem;
    margin-bottom: 10px;
    color: #666;
  }

  .discover-btn-2 {
    width: 54px;
    height: 43px;
  }

  .container-2 {
    margin-top: 50px !important;
    padding-top: 20px !important;
  }

  .card-2 {
    width: 193px;
    height: 273px;
    margin-right: 15px;
  }

  .container-3 {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: space-between; /* Add space between text and images */
    align-items: center; /* Center horizontally */
    margin-top: 0px !important;
    max-width: 100%;
    height: 100%; /* Full viewport height */
    width: 100%;
  }

  .text-section-3 {
    max-width: 100%;
    text-align: center;
    margin-top: 70px;
    font-size: 13px;
  }
  .text-section-3 p {
    margin-bottom: 8px;
    font-size: var(--font-size-small-regular);
  }

  .card-3 {
    margin-bottom: 50px;
    width: 300px;
    /* height: 120px; */
  }

  .heading-container {
    font-size: 10px;
    text-align: center; /* Center-align all the rows */
  }

  .container-4 {
    margin-top: 50px !important;
    display: flex; /* Flex düzenini kullan */
    justify-content: space-between; /* Sol ve sağ alanı ayır */
    align-items: flex-start; /* İçeriği üst hizala */
    gap: 20px; /* Sol ve sağ bölümler arasında boşluk */
    max-width: 90%; /* Maksimum genişlik */
    margin: 0 auto;
    padding: 20px; /* Kenarlardan boşluk */
    background-size: 100% 100%; /* Fit background within container */
    background-repeat: no-repeat; /* Prevent repeating */
    background-image: url("ellipse-section-4.png");
    position: relative; /* İçeriği bağlama noktası */
    overflow: visible; /* Taşan alanları gizle */
    width: 70%;
    height: 30%;
  }
  .left-section {
    position: relative;
    overflow: hidden; /* Taşan alanları gizle */
    margin-bottom: -30px;
    margin-top: -20px !important;
  }
  .left-section,
  .right-section {
    position: relative; /* İçeriği bağlama noktası */
    flex: 1; /* Sol ve sağ bölümleri eşit genişlikte yap */
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    overflow: hidden; /* Her alt öğe taşmayı gizlemeli */
  }

  .left-image {
    margin-left: 25%;
    width: 100%; /* Görsellerin genişliğini kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Görsellerin oranını koru */
    margin-top: 15px !important;
  }

  .left-text {
    text-align: justify; /* Metni hizala */
    font-size: 14px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    margin-top: 10px !important;
    color: #ec298f;
    font-weight: bold;
  }

  .right-section {
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    position: relative; /* Konumlandırmaya referans */
    right: 50px; /* Sağ tarafa hizala */
    bottom: 20px;
  }

  .right-image {
    position: relative; /* Fotoğrafı sağ bölgenin en altına sabitle */
    width: 100%; /* Görseli kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Oranı koru */
  }
  .heading-1 {
    text-align: justify; /* Metni hizala */
    font-size: 10px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    height: 35%;
  }
  .heading-2 {
    font-size: 12px; /* Yazı boyutu */
  }
  .container-5 {
    margin-top: 70px !important;
  }

  .text-section-5 {
    max-width: 100%;
    text-align: center;
    margin-top: 0px;
    font-size: 10px;
    width: 80%;
  }
  .text-section-5 p {
    margin-bottom: 20px;
  }

  .image-section-5 {
    display: flex;
    gap: 15px; /* Space between cards */
    margin-top: auto; /* Push the section to the bottom */
  }

  .card-5 img {
    width: 100%;
    height: auto;
  }

  .heading-container-2 {
    font-size: 8px;
    text-align: center; /* Center-align all the rows */
  }
  .container-7 {
    margin-top: 50px !important;
    height: 100%;
  }

  .footer_container {
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("background-footer.png");
    color: #fff; /* Yazı rengi */
    font-family: "CustomFont", Arial, sans-serif; /* Default font */
    margin-top: auto; /* Footer'ı en alta it */
    overflow: hidden;
    font-size: 12px !important;
  }

  .footer_top {
    position: relative;
    margin-left: 2.5%;
    margin-bottom: 30px;
    padding-bottom: 0%;
    margin-top: 2.5%;
    width: 95%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("footer-banner.png");
    text-align: center; /* Metni ortala */
  }

  .footer_bottom {
    width: 100%;
    height: 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("footer-bottom-bg.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer_bot_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 90vw;
    margin-bottom: 0px;
  }

  .footer_logo img {
    margin-top: 20px;
    max-width: 50px; /* Logo boyutu */
  }

  /* Diğer footer stilleri aynen kalabilir */

  .footer_menu h4,
  .footer_contact h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer_menu ul {
    list-style: none;
    padding: 0;
    gap: 10px !important;
  }

  .footer_menu ul li {
    margin-bottom: 5px;
  }

  .footer_menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 8px;
  }

  .footer_menu ul li a:hover {
    text-decoration: underline;
  }

  .footer_contact p {
    margin: 5px 0;
    font-size: 9px;
  }
  .footer_contact h4 {
    font-size: 9px;
  }
  .footer_contact a {
    color: #fff;
    text-decoration: none;
  }

  .footer_credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 90vw;
    border-top: 1px solid #333; /* İnce bir üst çizgi */
    padding-top: 20px; /* Üst çizgiden boşluk */
    font-size: 10px;
  }

  .footer_links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
  }

  .footer_links a:hover {
    text-decoration: underline;
  }

  .footer_social a {
    display: inline-block;
    margin-left: 10px;
  }

  .footer_social img {
    width: 20px;
    height: 20px;
  }

  .text-content-footer {
    padding-top: 10%;
    margin-left: 5%;
    flex: 1;
    margin-right: 20px;
    text-align: start;
  }
  .text-content-footer span {
    color: #fff;
    font-size: 36px;
  }

  .text-content-footer p {
    font-size: 14px;
    line-height: 1;
    margin: 20px 0;
    color: #fff;
  }
  span.tired {
    font-size: 14px;
  }
}
@media screen and (max-width: 380px) {
  .content-section.hero-content {
    height: 40vh;
  }
  .text-365 {
    margin-bottom: -11%;
  }
  .text-content-everything,
  span.text-content-rest,
  span.youand {
    font-size: var(--font-size-small-medium-);
  }
  .btn {
    width: 35px; /* Buton genişliği */
    height: 18px; /* Buton yüksekliği */
  }
  .text-content-everything {
    padding: 5px 0px;
  }

  .btn.download-app {
    width: 60px;
    height: 18px;
  }
  .hero-images .dog-image {
    width: 100%;
    height: auto;
    transform: translate(-40%, -80%);
  }
  .phone-slide span {
    font-size: var(--font-size-xxsmall);
  }
  .phone-slider-container {
    max-width: 80px;
    max-height: 160px;
    right: 10%;
  }
  .hero-images .phone-image {
    height: 45vh;
    width: auto;
    left: 30%;
  }
  .text-content p {
    width: 80%;
  }

  .text-content p,
  .discover,
  .arrow {
    font-size: var(--font-size-xxsmall);
  }
  .title {
    font-size: 14px;
    margin: 0px;
  }
  .paw {
    width: 31px; /* Paw genişliği */
    height: 31px; /* Paw yüksekliği */
  }
  .polar-container {
    margin-top: 30px !important;
    margin-left: 50px !important;
  }
  .polar-top-left {
    top: 15px; /* Yukarı hareket ettir */
    left: -30px; /* Sola hareket ettir */
  }

  .polar-bottom-right {
    bottom: 15px; /* Aşağı hareket ettir */
    left: 40px; /* Sağa hareket ettir */
  }
  .stat-item {
    padding: 10px;
    width: 70px;
  }
  .stat-item p {
    font-size: 10px !important;
  }
  .stats {
    gap: 0px 0px; /* Öğeler arasında boşluk */
    width: 30%;
    bottom: 30% !important;
  }
  .number,
  .shots-text {
    font-size: 10px;
  }
  .footer-section-1 {
    width: 120px;
    height: 120px;
  }
  .logo {
    width: 50px; /* Logo genişliği */
    height: 28px; /* Logo yüksekliği */
  }

  .navbar .marketplace-btn {
    padding: 10px 32px;
    margin-left: 10px;
  }

  .footer-section-1 p {
    font-size: 10px; /* Yazı boyutu */
  }
  .parallax-section {
    margin-top: 10px !important;
    width: 100vw;
    height: 100vw;
  }
  .navbar .nav-links {
    gap: 10px;
  }
  .navbar .nav-links li a {
    font-size: 10px;
  }
  .navbar .nav-links li {
    font-size: 10px;
  }
  .logo-image {
    width: 60px;
  }
  .container-1 {
    margin-top: 5px !important;
  }

  .text-section-2 h1 {
    font-size: 10px;
    margin-bottom: 15px;
    color: #333;
  }

  .text-section-2 p {
    font-size: 0.5rem;
    margin-bottom: 10px;
    color: #666;
  }

  .discover-btn-2 {
    width: 54px;
    height: 43px;
  }

  .container-2 {
    margin-top: 50px !important;
    padding-top: 20px !important;
  }

  .card-2 {
    width: 193px;
    height: 273px;
    margin-right: 15px;
  }

  .container-3 {
    display: flex;
    flex-direction: column; /* Arrange items vertically */
    justify-content: space-between; /* Add space between text and images */
    align-items: center; /* Center horizontally */
    margin-top: 0px !important;
    max-width: 100%;
    height: 100%; /* Full viewport height */
    width: 100%;
  }

  .text-section-3 {
    max-width: 100%;
    text-align: center;
    margin-top: 70px;
    font-size: 13px;
  }
  .text-section-3 p {
    margin-bottom: 8px;
    font-size: var(--font-size-small-regular);
  }

  .card-3 {
    margin-bottom: 50px;
    width: 300px;
    /* height: 120px; */
  }

  .heading-container {
    font-size: 10px;
    text-align: center; /* Center-align all the rows */
  }

  .container-4 {
    margin-top: 50px !important;
    display: flex; /* Flex düzenini kullan */
    justify-content: space-between; /* Sol ve sağ alanı ayır */
    align-items: flex-start; /* İçeriği üst hizala */
    gap: 20px; /* Sol ve sağ bölümler arasında boşluk */
    max-width: 90%; /* Maksimum genişlik */
    margin: 0 auto;
    padding: 20px; /* Kenarlardan boşluk */
    background-size: 100% 100%; /* Fit background within container */
    background-repeat: no-repeat; /* Prevent repeating */
    background-image: url("ellipse-section-4.png");
    position: relative; /* İçeriği bağlama noktası */
    overflow: visible; /* Taşan alanları gizle */
    width: 70%;
    height: 30%;
  }
  .left-section {
    position: relative;
    overflow: hidden; /* Taşan alanları gizle */
    margin-bottom: -30px;
    margin-top: -20px !important;
  }
  .left-section,
  .right-section {
    position: relative; /* İçeriği bağlama noktası */
    flex: 1; /* Sol ve sağ bölümleri eşit genişlikte yap */
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    overflow: hidden; /* Her alt öğe taşmayı gizlemeli */
  }

  .left-image {
    margin-left: 25%;
    width: 100%; /* Görsellerin genişliğini kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Görsellerin oranını koru */
    margin-top: 15px !important;
  }

  .left-text {
    text-align: justify; /* Metni hizala */
    font-size: 14px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    margin-top: 10px !important;
    color: #ec298f;
    font-weight: bold;
  }

  .right-section {
    overflow: visible;
    flex: 1;
    display: flex;
    flex-direction: column; /* İçeriği dikey hizala */
    align-items: center; /* İçeriği yatay ortala */
    position: relative; /* Konumlandırmaya referans */
    right: 50px; /* Sağ tarafa hizala */
    bottom: 20px;
  }

  .right-image {
    position: relative; /* Fotoğrafı sağ bölgenin en altına sabitle */
    width: 100%; /* Görseli kapsayıcıya sığdır */
    max-width: 60px; /* Maksimum genişlik */
    height: auto; /* Oranı koru */
  }
  .heading-1 {
    text-align: justify; /* Metni hizala */
    font-size: 10px; /* Yazı boyutu */
    line-height: 1.5; /* Satır aralığı */
    height: 35%;
  }
  .heading-2 {
    font-size: 12px; /* Yazı boyutu */
  }
  .container-5 {
    margin-top: 70px !important;
  }

  .text-section-5 {
    max-width: 100%;
    text-align: center;
    margin-top: 0px;
    font-size: 10px;
    width: 80%;
  }
  .text-section-5 p {
    margin-bottom: 20px;
  }

  .image-section-5 {
    display: flex;
    gap: 15px; /* Space between cards */
    margin-top: auto; /* Push the section to the bottom */
  }

  .card-5 img {
    width: 100%;
    height: auto;
  }

  .heading-container-2 {
    font-size: 8px;
    text-align: center; /* Center-align all the rows */
  }
  .container-7 {
    margin-top: 50px !important;
    height: 100%;
  }

  .footer_container {
    width: 100%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("background-footer.png");
    color: #fff; /* Yazı rengi */
    font-family: "CustomFont", Arial, sans-serif; /* Default font */
    margin-top: auto; /* Footer'ı en alta it */
    overflow: hidden;
    font-size: 12px !important;
  }

  .footer_top {
    position: relative;
    margin-left: 2.5%;
    margin-bottom: 30px;
    padding-bottom: 0%;
    margin-top: 2.5%;
    width: 95%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /* background-position: center; */
    background-image: url("footer-banner.png");
    text-align: center; /* Metni ortala */
  }

  .footer_bottom {
    width: 100%;
    height: 50%;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("footer-bottom-bg.png");
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .footer_bot_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 90vw;
    margin-bottom: 0px;
  }

  .footer_logo img {
    margin-top: 20px;
    max-width: 50px; /* Logo boyutu */
  }

  /* Diğer footer stilleri aynen kalabilir */

  .footer_menu h4,
  .footer_contact h4 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer_menu ul {
    list-style: none;
    padding: 0;
    gap: 10px !important;
  }

  .footer_menu ul li {
    margin-bottom: 5px;
  }

  .footer_menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 8px;
  }

  .footer_menu ul li a:hover {
    text-decoration: underline;
  }

  .footer_contact p {
    margin: 5px 0;
    font-size: 9px;
  }
  .footer_contact h4 {
    font-size: 9px;
  }
  .footer_contact a {
    color: #fff;
    text-decoration: none;
  }

  .footer_credits {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 90vw;
    border-top: 1px solid #333; /* İnce bir üst çizgi */
    padding-top: 20px; /* Üst çizgiden boşluk */
    font-size: 10px;
  }

  .footer_links a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
  }

  .footer_links a:hover {
    text-decoration: underline;
  }

  .footer_social a {
    display: inline-block;
    margin-left: 10px;
  }

  .footer_social img {
    width: 20px;
    height: 20px;
  }

  .text-content-footer {
    padding-top: 10%;
    margin-left: 5%;
    flex: 1;
    margin-right: 20px;
    text-align: start;
  }
  .text-content-footer span {
    color: #fff;
    font-size: 36px;
  }

  .text-content-footer p {
    font-size: 14px;
    line-height: 1;
    margin: 20px 0;
    color: #fff;
  }
  span.tired {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) and (min-height: 750px) {
  .stat-item {
    width: 50px;
  }
  .footer-section-1 {
    width: 100px;
    height: 100px;
  }
  .footer-section-1 p {
    font-size: 7px;
  }
  .logo {
    height: 30px;
  }
  .stat-item p {
    font-size: 7px !important;
  }
  .number,
  .shots-text {
    font-size: 8px;
  }
  .text-365 {
    margin-bottom: -35%;
  }
  .text-section-3 p {
    font-size: var(--font-size-small-regular);
  }
  .slider-heading h2 {
    font-size: 10px !important;
  }
  .slider-detail,
  .slider,
  .slider-heading,
  .slide {
    transform: translateY(0px) !important;
  }
  .slider-item {
    height: 20px !important;
    flex: 0 0 70px !important;
  }
}
@media screen and (max-width: 400px) and (max-height: 750px) {
  .stat-item {
    width: 50px;
  }
  .footer-section-1 {
    width: 80px;
    height: 80px;
  }
  .footer-section-1 p {
    font-size: 7px;
  }
  .logo {
    height: 20px;
  }
  .stat-item p {
    font-size: 6px !important;
  }
  .number,
  .shots-text {
    font-size: 7px;
  }
  .text-365 {
    margin-bottom: -15%;
  }
  .text-section-3 p {
    font-size: var(--font-size-small-regular);
  }
  .slider-heading h2 {
    font-size: 10px !important;
  }
  .slider-detail,
  .slider,
  .slider-heading,
  .slide {
    transform: translateY(0px) !important;
  }
  .slider-item {
    height: 20px !important;
    flex: 0 0 70px !important;
  }
}
@media (max-width: 768px) {
  .menu-container {
    display: none !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    position: absolute;
    top: 110px;
    right: 10px;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100px !important;
  }

  .menu-container.open {
    display: flex !important;
  }
  .navbar {
    z-index: 99;
    padding: 0px;
  }
  .nav-links {
    padding-left: 0px !important;
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .navbar .nav-links li a {
    color: black;
  }
  .nav-links li {
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }

  .marketplace-wrapper {
    width: 100%;
    margin-top: 16px;
  }

  .burger-menu {
    color: #000000;
    display: block;
    margin-right: 10px;
  }
}
