.gozlemevi-bg {
  background-image: url("../images/gozlemevi/bg-min.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100vw;
  height: 100vh; /* Ekran yüksekliğine göre esnek ayarla */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: white;
  text-align: start;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.gozlemevi-baslik h1 {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 800;
  font-size: 70px;
  color: #3b3b3b;
  white-space: nowrap;
}
.gozlemevi-baslik h1 span {
  color: #c3d940;
}
.gozlemevi_content p:first-child {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: #292929;
}
.gozlemevi_content p:nth-of-type(2) {
  font-family: "VistolSans-Regular", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #292929;
}

.gozlemevi-tabs-list-tab {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.gozlemevi-tab-button {
  font-family: "VistolSans-Regular", sans-serif;
  font-weight: 400;
  padding: 10px 50px;
  border: none;
  border-radius: 20px;
  background: #5f338a;
  color: #c3d940;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 0.3s;
}

.gozlemevi-tab-button.active {
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 600;
  background: #c3d940;
  color: #3c3c3c;
}
.gozlemevi-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.gozlemevi-tab-content.active {
  display: block;
  opacity: 1;
}
.main .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  justify-content: center;
  align-items: center;
}

.main .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.main .card .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.main .card .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gozlemevi-container-circle {
  width: 550px;
  height: 550px;
  border: 2px dashed #707070;
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.inner-circle {
  width: 280px;
  height: 280px;
  background-color: #c3d940;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes rotateBorder {
  from {
    transform: translate(0%) rotate(0deg);
  }
  to {
    transform: translate(0%) rotate(360deg);
  }
}

@keyframes zoomInEffect {
  from {
    transform: scale(0.4);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.world-visual {
  position: absolute;
  z-index: 1;
  animation: zoomInEffect 2.5s ease-in-out; /* Adjust duration and timing function */
  width: 100%;
  height: 100%;
  animation: rotateBorder 15s linear infinite;
}

/* Media Content and Hotspots */
/* .gozlemevi-circle-media-content {
    position: relative;
  } */
/* Hotspot temel stili */
.gozlemevi-circle-hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #c3d940;
  border: 7px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 100;
  animation: pulseEffect 2s infinite; /* Pulse animation */
}

/* Hover efekti */
.gozlemevi-circle-hotspot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px #7a599a;
  z-index: 1;
}

/* Tooltip pozisyonu ve stili */
.gozlemevi-circle-tooltip {
  display: none;
  position: absolute;
  background-color: rgba(195, 217, 64, 1);
  color: #7a599a;
  padding: 10px;
  border-radius: 50%;
  width: 250px;
  height: 250px;
  left: calc(100% + -30px);
  top: 50%;
  transform: translateY(0%);
  opacity: 0;
  transition: opacity 0.3s;
  box-shadow: 0 0 10px #7a599a;
  z-index: 2;
}

/* Tooltip içerik düzeni */
.gozlemevi-circle-tooltip h3 {
  font-family: "VistolSans-Black", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 1.5rem;
}

.gozlemevi-circle-tooltip p {
  font-family: "VistolSans-Regular", sans-serif;
  font-size: 13px;
  text-align: center;
  position: relative;
  z-index: 3;
  padding: 0 15px;
}

/* Aktif durum */
.gozlemevi-circle-hotspot.active .gozlemevi-circle-tooltip {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

/* Hotspot pozisyonları */
.gozlemevi-circle-hotspot-1 {
  top: 25%;
  left: 92%;
}

.gozlemevi-circle-hotspot-2 {
  top: -3%;
  left: 47%;
}

.gozlemevi-circle-hotspot-3 {
  top: 75%;
  left: 5%;
}

.gozlemevi-circle-hotspot-4 {
  top: 24%;
  left: 3%;
}

.gozlemevi-circle-hotspot-5 {
  top: 75%;
  right: 5%;
}

.gozlemevi-circle-hotspot-6 {
  top: 98%;
  left: 48%;
}

.gozlemevi-circle-hotspot-3 .gozlemevi-circle-tooltip,
.gozlemevi-circle-hotspot-5 .gozlemevi-circle-tooltip,
.gozlemevi-circle-hotspot-6 .gozlemevi-circle-tooltip {
  bottom: 50% !important;
  top: auto;
}

@keyframes pulseEffect {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.solar-system {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #333;
}

.system-title {
  text-align: center;
  font-family: "VistolSans-Bold", sans-serif;
  font-weight: 600;
}

.system-title h2 {
  font-size: 45px;
}

.system-title p {
  font-family: "VistolSans-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  max-width: 1200px;
  color: #292929;
  margin: 0 auto;
}

.system-container {
  position: relative;
  width: 100%;
  height: 1080px;
  margin: 0;
  /* perspective: 1000px; */
}

.orbit-system {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-style: preserve-3d;
}

.orbit {
  position: absolute;
  border: 1px dashed rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotateX(15deg);
  pointer-events: none;
}

.orbit-1 {
  width: 280px;
  height: 280px;
  animation: rotate 8.8s linear infinite; /* Merkür */
}

.orbit-2 {
  width: 380px;
  height: 380px;
  animation: rotate 12.5s linear infinite; /* Venüs */
}

.orbit-3 {
  width: 480px;
  height: 480px;
  animation: rotate 15.5s linear infinite; /* Dünya */
}

.orbit-4 {
  width: 580px;
  height: 580px;
  animation: rotate 20.7s linear infinite; /* Mars */
}

.orbit-5 {
  width: 680px;
  height: 680px;
  animation: rotate 35.2s linear infinite; /* Jüpiter */
}

.orbit-6 {
  width: 780px;
  height: 780px;
  animation: rotate 45.2s linear infinite; /* Satürn */
}

.orbit-7 {
  width: 880px;
  height: 880px;
  animation: rotate 55.4s linear infinite; /* Uranüs */
}

.orbit-8 {
  width: 980px;
  height: 980px;
  animation: rotate 65.4s linear infinite; /* Neptün */
}
.sun-orbit {
  width: 180px;
  height: 180px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.sun {
  width: 180px;
  height: 180px;
  position: relative;
  cursor: pointer;
}

.sun img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  pointer-events: auto;
}

.planet {
  position: absolute;
  cursor: pointer;
  transition: all 0.3s ease;
  transform-origin: center;
  z-index: 1000;
  pointer-events: auto;
}

.planet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.planet.active,
.sun.active {
  animation: pulse 1.5s infinite;
}

.mercury {
  width: 45px;
  height: 45px;
  top: 0;
  left: calc(50% - 22.5px);
}

.venus {
  width: 70px;
  height: 70px;
  top: 0;
  left: calc(50% - 35px);
}

.earth {
  width: 75px;
  height: 75px;
  top: 0;
  left: calc(50% - 37.5px);
}

.mars {
  width: 60px;
  height: 60px;
  top: 0;
  left: calc(50% - 30px);
}

.jupiter {
  width: 140px;
  height: 140px;
  top: 0;
  left: calc(50% - 70px);
}

.saturn {
  width: 130px;
  height: 130px;
  top: 0;
  left: calc(50% - 65px);
}

.uranus {
  width: 110px;
  height: 110px;
  top: 0;
  left: calc(50% - 55px);
}

.neptune {
  width: 105px;
  height: 105px;
  top: 0;
  left: calc(50% - 52.5px);
}

.spaceship {
  position: absolute;
  width: 150px;
  height: 45px;
  top: 50%;
  left: 50%;
  transform-origin: 400px 0;
  animation: spaceshipOrbit 60s linear infinite;
  z-index: 1001;
}

.spaceship img {
  width: auto;
  height: auto;
  object-fit: contain;
  transform-origin: center center;
  animation: adjustSpaceshipRotation 60s linear infinite;
}

.slider-container {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px 60px; /* Yanlarda butonlar için boşluk */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}

.slide.active {
  display: block;
}

.slide h3 {
  font-family: "VistolSans-Black", sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #3b3b3b;
  margin-bottom: 20px;
}

.slide p {
  font-family: "VistolSans-Regular", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #3b3b3b;
  max-width: 600px;
  margin: 0 auto;
}

.nav-button {
  position: absolute;
  top: 32px; /* Başlık ile aynı hizada */
  background-color: #c3d940;
  border: 8px solid #fff !important;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 20;
  transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-button.prev {
  left: 200px; /* Başlığa daha yakın */
}

.nav-button.next {
  right: 200px; /* Başlığa daha yakın */
}

.nav-button:hover {
  background-color: #7a599a;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
}

.nav-button i {
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotateX(15deg) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotateX(15deg) rotate(360deg);
  }
}

@keyframes spaceshipOrbit {
  from {
    transform: rotate(0deg) translate(400px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translate(400px) rotate(-360deg);
  }
}

@keyframes adjustSpaceshipRotation {
  0% {
    transform: rotate(90deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(270deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(450deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

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

/* Mobil iyileştirmeleri */
@media (max-width: 1200.98px) {
  /* Temel container stilleri */
  .gozlemevi-container-circle {
    width: 300px;
    height: 300px;
  }

  .inner-circle {
    width: 250px;
    height: 250px;
  }

  .gozlemevi-circle {
    margin-top: 3rem !important;
  }

  .gozlemevi-circle-media-content {
    position: relative !important;
  }

  /* Tooltip pozisyonlaması ve boyutlandırması */
  .gozlemevi-circle-tooltip {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 !important;
    z-index: 1000 !important;
  }

  /* Tooltip düzeni */
  .gozlemevi-circle-hotspot.active .gozlemevi-circle-tooltip::before {
    width: 200px !important;
    height: 200px !important;
  }

  /* Text boyutlandırması */
  .gozlemevi-circle-tooltip p {
    font-size: 11px !important;
    padding: 0 15px;
    max-height: 120px;
    overflow-y: auto;
  }

  .gozlemevi-circle-tooltip h3 {
    font-size: 12px !important;
    margin-top: 30px !important;
    padding: 0 20px;
  }

  /* Tüm hotspot'ların özel ayarları (gerekirse) */
  .gozlemevi-circle-hotspot-1 .gozlemevi-circle-tooltip {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 !important;
  }

  .gozlemevi-circle-hotspot-5 .gozlemevi-circle-tooltip {
    position: fixed !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 200px !important;
    height: 200px !important;
    margin: 0 !important;
  }

  /* Tooltip açıkken, diğer hotspot'ları gizleme */
  body:has(.gozlemevi-circle-hotspot.active)
    .gozlemevi-circle-hotspot:not(.active) {
    display: none !important;
  }
  #teleskop .nav-button.prev {
    left: 0px !important;
  }
  
  #teleskop .nav-button.next {
    right: 0px !important;
  }
}
/* Galeri container düzeni */
#gallery-items {
    display: grid;
    /* grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); */
    gap: 20px;
    position: relative;
    min-height: 500px; /* Sabit bir minimum yükseklik */
    padding-bottom: 100px; /* Pagination için boşluk */
  }
  
  /* Kartlar */
  .card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background-color: white;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  
  
  .card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .card-image:hover img {
    transform: scale(1.05);
  }
  
  /* Pagination konteyner - sabit konumda */
  .gallery-pagination {
    width: 100%;
    padding: 20px 0;
    margin-top: 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
  
  .pagination-controls {
    display: inline-flex;
    align-items: center;
    background-color: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .pagination-numbers {
    display: flex;
    align-items: center;
    margin: 0 10px;
  }
  
  /* Sayfa numaraları */
  .pagination-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #7a599a;
    font-weight: 600;
    font-size: 14px;
    margin: 0 2px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
  }
  
  .pagination-number:hover:not(.active) {
    background-color: rgba(195, 217, 64, 0.2);
  }
  
  .pagination-number.active {
    background-color: #c3d940;
    color: white;
  }
  
  /* Ellipsis stili */
  .pagination-ellipsis {
    color: #7a599a;
    margin: 0 2px;
    font-weight: bold;
  }
  
  /* Önceki/Sonraki butonları */
  .pagination-prev,
  .pagination-next {
    height: 36px;
    padding: 0 15px;
    border: none;
    background-color: #f5f5f5;
    color: #7a599a;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s ease;
  }
  
  .pagination-prev {
    margin-right: 5px;
  }
  
  .pagination-next {
    margin-left: 5px;
  }
  
  .pagination-prev:hover:not(:disabled),
  .pagination-next:hover:not(:disabled) {
    background-color: #c3d940;
    color: white;
  }
  
  .pagination-prev:disabled,
  .pagination-next:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }
  
  /* Mevcut pagination container'ını gizle */
  .pagination-container {
    display: none;
  }
  
  /* Responsive ayarlamalar */
  @media (max-width: 768px) {
    #gallery-items {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 10px;
      min-height: 400px;
      padding-bottom: 100px;
    }
    
    .pagination-controls {
      flex-wrap: wrap;
      justify-content: center;
      padding: 8px;
      width: 95%;
      max-width: 300px;
    }
    
    .pagination-number {
      width: 32px;
      height: 32px;
      font-size: 12px;
    }
    
    .pagination-prev,
    .pagination-next {
      height: 32px;
      padding: 0 10px;
      font-size: 12px;
    }
  }



  .marineSwiper {
    width: 100%;
    height: 100%;
  }
  
  .marine-section .container {
    max-width: 1200px;
    margin: 5% 0;
  }
  .deniz-canlilari-title h2 {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 800;
    font-size: 45px;
    color: #3b3b3b;
    white-space: nowrap;
    text-align: center;
    margin: -2% 0;
  }
  .deniz-canlilari-title h2 span {
    color: #c3d940;
  }
  .animal-info {
    font-family: "VistolSans-Regular", sans-serif;
    font-weight: 400;
    color: #3b3b3b;
    text-align: center;
    max-width: 1200px;
    font-size: 18px;
  }
  .animal-info h3 {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: #3b3b3b;
    white-space: nowrap;
    text-align: center;
  }
  .animal-info .status span {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 800;
  }
  .animal-info .description {
    font-size: 15px;
  }
  .animal-info .description span {
    font-family: "VistolSans-Bold", sans-serif;
    font-weight: 800;
  }
  .marineSwiper .swiper-slide {
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 0;
  }
  
  .marineSwiper .swiper-slide-active {
    opacity: 1;
  }
  .course-objectives {
    margin-top: 20px;
    text-align: center;
  }
  
  .objective-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
  }
  
  .objective-title .fas.fa-bullseye {
    font-size: 24px;
    color: #e93323;
  }
  
  .objective-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .objective-items div {
    font-size: 14px;
    color: #3b3b3b;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .objective-items .fas.fa-square {
    font-size: 10px;
    color: #007bff;
  }
  
  .level-1 {
    padding-left: 0;
  }
  .level-2 {
    padding-left: 15px;
  }
  .level-3 {
    padding-left: 30px;
  }
  .marine-animal-content {
    text-align: center;
    padding-top: 5rem;    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .marine-animal-content img {
    max-width: 100%;
    height: 400px;
  }
  
  .marineSwiper .slide-numbers {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 20px 0;
  }
  
  .current-number {
    color: #c3d940;
    font-size: 40px;
    font-weight: 800;
    transform: scale(1.5);
  }
  
  .prev-number,
  .next-number {
    color: #666;
    font-size: 40px;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  .prev-number:hover,
  .next-number:hover {
    opacity: 0.8;
  }
  
  .nav-button {
    position: absolute;
    top: 40%;
    transform: translateY(-40%);
    background-color: #7c439a;
    border: 8px solid #fff !important;
    color: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 20; /* Yeterli z-index değeri atadığınızdan emin olun */
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Geçiş efektleri ekleyin */
  }
  .nav-button i {
    display: flex;
    justify-content: center;
  }
  .nav-button:hover {
    background-color: #a64d8c; /* Hover sırasında arka plan rengini değiştirir */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Hover sırasında gölge ekler */
    transform: translateY(-50%) scale(1.1); /* Hover sırasında biraz büyütür */
  }
  .marineSwiper .nav-button.prev {
    left: 170px;
  }
  
  .marineSwiper .nav-button.next {
    right: 170px;
  }
  .marineSwiper .swiper-slide {
    opacity: 0;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .marineSwiper .swiper-slide-active {
    opacity: 1;
  }
  
  .marineSwiper .marine-animal-content {
    opacity: 0;
    transform: translate(30px);
    transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .marineSwiper .swiper-slide-active .marine-animal-content {
    opacity: 1;
    transform: translate(0);
  }
  
  .marineSwiper .slide-numbers {
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s;
  }
  
  .marineSwiper .swiper-slide-active .slide-numbers {
    transform: translateY(0);
    opacity: 1;
  }
  .marineSwiper .clickable-number {
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .marineSwiper .clickable-number:hover {
    color: #7c439a;
    transform: scale(1.1);
  }
  
  /* Tıklama animasyonu */
  .marineSwiper .prev-number:active,
  .next-number:active {
    transform: scale(0.95);
  }