/*
Theme Name: IT Biponi
Theme URI: http://www.itbiponi.com
Author: IT Biponi Team
Author URI: http://www.itbiponi.com
Description: Colorful & Modern IT Agency Theme built with Tailwind CSS.
Version: 1.4
License: GNU General Public License v2 or later
Text Domain: itbiponi
*/

/* Global Font Setting
   !important is used to ensure it overrides any browser defaults or plugin styles
*/
body, h1, h2, h3, h4, h5, h6, p, a, span, li, input, textarea, button {
    font-family: 'Baloo Da 2', sans-serif !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f0fdf4;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #00205b, #ce181e);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ce181e, #00205b);
}

/* Animation Utilities */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}
.animate-blob {
    animation: blob 7s infinite;
}
.animation-delay-2000 {
    animation-delay: 2s;
}
.animation-delay-4000 {
    animation-delay: 4s;
}