/*
Theme Name: Tofai Accreditation
Theme URI: https://tofai.tech
Author: Tofai Global Tech
Author URI: https://tofai.tech
Description: Custom theme for accreditation body website
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tofai-accreditation
*/

/* Custom Animations for IQA */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fade-in-right { animation: fadeInRight 0.8s ease-out forwards; opacity: 0; }
.animate-float { animation: float 6s ease-in-out infinite; }

.premium-glow { box-shadow: 0 20px 40px -15px rgba(15, 37, 75, 0.1); }
.premium-glow-hover { transition: all 0.3s ease; }
.premium-glow-hover:hover { box-shadow: 0 30px 60px -15px rgba(15, 37, 75, 0.15); transform: translateY(-4px); }

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f3f4f6;
}
::-webkit-scrollbar-thumb {
    background: #c1c5cc;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0F254B;
}
