/* ========================================
   CONSCIENTIA - Custom Styles (Tailwind Companion)
   Minimal custom styles beyond Tailwind
   ======================================== */

/* Custom Colors (matching Tailwind config) */
:root {
  --primary: #ec6502;
  --primary-dark: #c55402;
  --primary-light: #f78a3d;
  --secondary: #1e3a8a;
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

/* Hero Gradient Text */
.text-gradient {
  background: linear-gradient(135deg, #f97316, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* Image Filter for Service Icons (white icons) */
.service-card-icon img {
  filter: brightness(0) invert(1);
}

/* Enhanced focus states */
a:focus,
button:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Hero Slider Styles */
.hero-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-slide.active {
  display: block;
  opacity: 1;
}

.animate-fade-up {
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-dot.active {
  background: #ec6502;
  width: 24px;
}