/*
Theme Name: YAKIRA
Theme URI: https://yakira-engineering.com
Author: Gemini
Description: A standalone, responsive engineering theme built with Tailwind CSS.
Version: 1.0
License: GNU General Public License v2 or later
Tags: engineering, corporate, responsive, orange, slate
Text Domain: yakira
*/

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #1e293b; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Hero Background */
.hero-bg {
    background-image: linear-gradient(rgba(30, 41, 59, 0.9), rgba(30, 41, 59, 0.7)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
}

/* Service Card Hover Effect */
.service-card:hover .icon-box {
    background-color: #ea580c;
    color: white;
    transform: scale(1.1);
}

/* Animation for page switching */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Active Link Style - BRIGHT RED */
.nav-active {
    color: #dc2626 !important; /* Tailwind text-red-600 */
    font-weight: 800 !important;
}