@tailwind base;
@tailwind components;
@tailwind utilities;

         body {
            font-family: 'Vazirmatn', sans-serif;
            background-color: white;
            color: #333;
        }
        
        .red-divider {
            height: 4px;
            background: linear-gradient(90deg, #e53e3e, #9b2c2c);
            margin: 2rem 0;
            border-radius: 2px;
        }
        
        .award-card {
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .award-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        
        .floating {
            animation: floating 3s ease-in-out infinite;
        }
        
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }