/* Custom Styles for nuances not covered by Tailwind utilities */
body {
    background-color: #f8fafc;
}

.clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    color: transparent;
}

/* Smooth reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

/* Specific card hover effect */
.service-card {
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-card:hover .icon-box {
    background-color: #0284c7;
    color: white;
    border-color: #0284c7;
}

/* Footer Custom Styles */
.footer-link-hover {
    @apply transition-all duration-300 hover:text-accent hover:translate-x-1 inline-block;
}

#social-icons a {
    @apply w-10 h-10 rounded-sm bg-industrial-800 flex items-center justify-center text-industrial-300 hover:bg-accent hover:text-white transition-all;
}
