@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&amp;display=swap");

body {
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'BPG Nino Mtavruli';
    src: url('bpg_nino_mtavruli_bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

.font-ka {
    font-family: 'BPG Nino Mtavruli', sans-serif;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loader-logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #3b82f6;
  border-bottom-color: #3b82f6;
  animation: spin 1.5s linear infinite;
}

.loader-text {
  margin-top: 20px;
  color: white;
  letter-spacing: 3px;
  position: relative;
}

.loader-text:after {
  content: "";
  position: absolute;
  height: 100%;
  border-right: 2px solid white;
  right: -8px;
  top: 0;
  animation: blink 0.8s infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.product-card {
  transition: all 0.3s ease;
  transform: translateY(50px);
  opacity: 0;
}

.product-card.show {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image {
  transition: transform 0.5s ease;
}

.hero-bg {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.nav-link {
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #3b82f6;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* .brand-logo {
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
} */

.counter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.counter.show {
  opacity: 1;
  transform: translateY(0);
}

.btn-primary {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transition: left 0.5s ease;
}

.btn-primary:hover:after {
  left: 100%;
}

.orbit-container {
  position: relative;      /* Important for absolutely positioned logos */
  width: 100%;
  height: 400px;           /* Or any height you want */
  margin: 0 auto;          /* Center horizontally if needed */
}

.orbit-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18),
    transparent 70%
  );
  z-index: 1;
  pointer-events: none;
}

.orbit-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 320px;
  height: 320px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, 0.12);
  pointer-events: none;
  z-index: 2;
}

.country-outline {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.8))
    drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
  pointer-events: none;
}

.orbit-logo {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 8px #3b82f640;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 10;
  backdrop-filter: blur(2px);
}

.orbit-logo img {
width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.orbit-logo:hover {
  box-shadow: 0 4px 16px #3b82f6a0;
}

.orbit-logo:hover img {
  filter: grayscale(0);
}

@media (max-width: 600px) {
  .orbit-container {
    width: 260px;
    height: 260px;
  }

  .orbit-glow {
    width: 100px;
    height: 100px;
  }

  .orbit-circle {
    width: 180px;
    height: 180px;
  }

  .country-outline svg {
    width: 120px !important;
    height: 80px !important;
  }

  .orbit-logo {
    width: 36px;
    height: 36px;
  }
}
