:root {
    --emerald-400: #34d399;
    --gray-900: #111827;
    
}
button {
    cursor: pointer;
    border:none;
    background: none;
    outline: none;
}

.color-gray-900 {
    color: var(--secondaryColor);
}
.bg-gray-900 {
    background-color: var(--secondaryColor);
}
/* Hero Section */
.custom-pagination {
    position: absolute !important;
    bottom: 128px !important;

    width: auto !important;
    height: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    z-index: 30 !important;
    visibility: hidden !important;
  }

  .custom-pagination .swiper-pagination-bullet {
    width: 4px !important;
    height: 32px !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 1 !important;
    margin: 0 !important;
    transition: all 0.5s ease !important;
    cursor: pointer !important;
  }

  .custom-pagination .swiper-pagination-bullet-active {
    background: white !important;
  }
  
  .tracking-wide {
    letter-spacing: 1px;
  }
  
  .tracking-2px {
    letter-spacing: 2px;
  }
  
  .explore-btn {
    position: relative;
    overflow: hidden;
    border-radius: 0%;
  }
  
  .explore-btn span {
    position: relative;
    z-index: 10;
  }
  
  .explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  
  .explore-btn:hover::before {
    transform: scaleX(1);
  }
  
  .explore-btn:hover span {
    color: black;
    transition: all 0.3s ease;
  }
  
  @media (min-width: 1024px) {
    .custom-pagination {
      visibility: visible !important;
    }
  }

  

/* 3d */

/* Animasyonlar ve stiller */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-rotate {
    animation: rotate 4s linear infinite;
}

.content-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.content-item[data-animation="fade-left"] {
    transform: translateX(-30px);
}

.content-item[data-animation="fade-scale"] {
    transform: scale(0.95);
}

.content-item.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.text-emerald-400 {
  color: var(--emerald-400);
}

.bg-emerald-400-10 {
  background-color: rgba(52, 211, 153, 0.1);
}

.text-gray-300 {
  color: #d1d5db;
}

.text-gray-400 {
  color: #9ca3af;
}

.display-1 {
  font-size: 3.5rem;
  font-weight: bold;
}

.feature-icon {
  width: 24px;
  height: 24px;
}

.model-container {
  height: 300px;
  margin-bottom: 2rem;
}

.model-section {
  background-color: var(--gray-900);
  padding-top: 8rem;
  padding-bottom: 8rem
}
@media (max-width: 975px) {
  .model-section {
    padding-top: 0rem;
    padding-bottom: 6rem;
  }
}

.model-section h2.display-1 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.model-section .fs-5 {
  font-size: 1rem !important;

}

.model-section .feature-icon {
  width: 20px;
  height: 20px;
}

.model-section .h5 {
  font-size: 1rem;
}

.model-section .text-gray-400 {
  font-size: 0.875rem;
}

@media (min-width: 576px) {
  .model-container {
    height: 400px;
  }
}

@media (min-width: 768px) {
  .model-container {
    height: 400px;
    margin-bottom: 0;
  }

  .model-section h2.display-1 {
    font-size: 2.5rem;
  }
  
  .model-section .fs-5 {
    font-size: 1.1rem !important;
  }
  
  .model-section .h5 {
    font-size: 1.1rem;
  }
}

@media (min-width: 992px) {
  .model-container {
    height: 500px;
  }

  .model-section h2.display-1 {
    font-size: 3.5rem;
  }
  
  .model-section .fs-5 {
    font-size: 1.25rem !important;
  }
  
  .model-section .feature-icon {
    width: 24px;
    height: 24px;
  }
  
  .model-section .h5 {
    font-size: 1.25rem;
  }
  
  .model-section .text-gray-400 {
    font-size: 1rem;
  }
}

.model-section .row {
  --bs-gutter-y: 2rem;
}

.model-section .bg-emerald-400-10 {
  padding: 0.5rem !important;
}

@media (min-width: 992px) {
  .model-section .bg-emerald-400-10 {
    padding: 0.75rem !important;
  }
}

.rotate-hint {
  background-color: rgba(0, 0, 0, 0.6);
}

.spinner-border-custom {
  width: 2rem;
  height: 2rem;
  border-color: var(--emerald-400);
  border-right-color: transparent;
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin-slow {
  animation: spin-slow 2s linear infinite;
}


.facility-info-border {
  border: 1px solid #e5e7eb;
  padding: 16px;
  border-radius: 8px;
}
.video-thumbnail {
  cursor: pointer;
}
.play-btn {
  transition: all 0.2s ease;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-thumbnail:hover .play-btn {
  transform: scale(1.1);
}





