/* URAI Custom Styling */

/* Smooth animations */
* {
  transition: all 0.2s ease-in-out;
}

/* Service cards hover effect */
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Widget styling */
.widget {
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

/* Logo glow effect */
.logo img {
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

/* Search bar styling */
input[type="search"] {
  border-radius: 24px;
  padding: 12px 24px;
  background: rgba(30, 41, 59, 0.8);
  border: 1px solid rgba(71, 85, 105, 0.5);
}

input[type="search"]:focus {
  border-color: rgba(59, 130, 246, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Container status dots */
.status-dot {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Header styling */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.025em;
}

/* Gradient text for titles */
.section-title {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
