/* ======================== */
/* ===== FONT IMPORTS ===== */
/* ======================== */
@font-face {
  font-family: 'Linaround';
  src: url('/../assets/fonts/Linaround-Light-scaled-up-with-eng-chars.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Linaround';
  src: url('/../assets/fonts/Linaround-Regular-scaled-up-with-eng-chars.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Linaround';
  src: url('/../assets/fonts/Linaround-Medium-scaled-up-with-eng-chars.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Linaround';
  src: url('/../assets/fonts/Linaround-SemiBold-scaled-up-with-eng-chars.ttf') format('truetype');
  font-weight: 600;
}

@font-face {
  font-family: 'Linaround';
  src: url('/../assets/fonts/Linaround-Bold-scaled-up-with-eng-chars.ttf') format('truetype');
  font-weight: 700;
}

/* =========================== */
/* ===== GLOBAL SETTINGS ===== */
/* =========================== */
:root {
  --primary-color: #00D38D;
  --secondary-color: #00B8FB;
  --third-color: #091333;
}

html,
body,
main {
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Linaround", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--third-color);
}

/* ============================ */
/* ===== ANIMATIONS BASE ====== */
/* ============================ */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 211, 141, 0.4),
      0 0 20px rgba(29, 57, 104, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(0, 211, 141, 0.8),
      0 0 40px rgba(29, 57, 104, 0.8);
  }
}

/* Animation Utilities */
.animate-spin-slow {
  animation: spin 8s linear infinite;
}

.animation-delay-200 {
  animation-delay: 200ms;
}

.animation-delay-300 {
  animation-delay: 300ms;
}

.animation-delay-400 {
  animation-delay: 400ms;
}

.animation-delay-500 {
  animation-delay: 500ms;
}

.animation-delay-700 {
  animation-delay: 700ms;
}

.animation-delay-800 {
  animation-delay: 800ms;
}

.animation-delay-1000 {
  animation-delay: 1000ms;
}

.animation-delay-1200 {
  animation-delay: 1200ms;
}

/* ============================ */
/* ===== COPY NOTIFICATION ==== */
/* ============================ */
.copy-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #00D38D, #00B8FB);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 211, 141, 0.3);
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 9999;
  font-weight: 600;
}

.copy-notification.show {
  transform: translateX(0);
  opacity: 1;
}

.copy-notification i {
  margin-left: 8px;
}

/* ============================ */
/* ===== FAQ SECTION ========== */
/* ============================ */
.faq-toggle.active .faq-icon {
  transform: rotate(180deg);
}

/* ============================ */
/* ===== SCROLL TOP BTN ======= */
/* ============================ */
#scrollTopBtn {
  transform: translateY(20px);
}

#scrollTopBtn.show {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

#scrollTopBtn.show:hover {
  animation: pulseGlow 1.5s infinite;
}