/* style.css */

body {
  background-color: #0D0D0D;
  color: #F5F7F6;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.glass-panel {
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-panel-hover {
  transition: background-color 0.3s;
}

.glass-panel-hover:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.text-gradient {
  background-image: linear-gradient(to right, #2ECC71, #27AE60);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glow-effect {
  box-shadow: 0 0 40px rgba(46, 204, 113, 0.2);
}

.glow-effect:hover {
  box-shadow: 0 0 60px rgba(46, 204, 113, 0.4);
}

.group:hover .animate-marquee,
.group:hover .animate-marquee-reverse {
  animation-play-state: paused;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
  background: #1A1A1A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2ECC71;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  background: #D1D5DB;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  background: #2ECC71 !important;
  opacity: 1;
}

/* Base Form Inputs */
body input:not([class]), body select:not([class]), body textarea:not([class]) {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: all 0.15s ease-in-out;
  font-size: 0.875rem;
  color: #fff;
  width: 100%;
}

body input:not([class]):focus, body select:not([class]):focus, body textarea:not([class]):focus {
  border-color: #2ECC71;
  box-shadow: 0 0 0 1px #2ECC71;
}

body input::placeholder, body select::placeholder, body textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Section Transitions */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}