/* Standalone Custom Stylesheet for Sanayi Bilgisayar & Sanayi Bilgisayar */
body {
  background-color: #030712;
  color: #f8fafc;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #334155;
}

/* Slider CSS */
.slide-item {
  transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  display: none;
  opacity: 0;
  transform: scale(0.98);
}
.slide-item.active {
  display: block;
  opacity: 1;
  transform: scale(1);
}

/* Google Maps Iframe Responsiveness */
.map-responsive {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 1.5rem;
  overflow: hidden;
}
.map-responsive iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 420px;
  border: 0 !important;
}

/* Floating Animations */
@keyframes pulseRing {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}
.whatsapp-pulse {
  animation: pulseRing 2s infinite;
}
