/* Custom Styles for INTEGRA Website */

/* Tailwind Configuration Override (if needed via CDN script, but here for reference) */
/* 
  Primary: #006B7D
  Secondary: #F5A623
  Dark: #1A1A1A
*/

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #006B7D;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #005563;
}

/* Text Selection Color */
::selection {
  background: #006B7D;
  color: white;
}

/* Mobile Menu Animation */
#mobileMenu {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Utility Classes */
.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
