/* assets/css/style.css */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}



.tool-card {
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.1), 0 8px 10px -6px rgba(79, 70, 229, 0.1);
}

/* Mobile Devices */
@media (max-width: 767px) {
  body {
    font-size: 14px;
    padding: 10px;
  }
  .p-8 {
        padding: 0rem!important;
    }
    .text-1xl{font-size: 1.3rem!important}
    .text-2xl{font-size: 1.2rem!important}
    .text-3xl{font-size: 1.1rem!important}
    .text-xl {   font-size: 1rem!important;}
    .text-4xl {font-size: 1.5rem!important;}
    
}

/* Tablet Devices */
@media (min-width: 768px) and (max-width: 1024px) {
  body {
    font-size: 16px;
    padding: 20px;
  }
  .p-8 {
        padding: 0.5rem!important;
    }
    .text-1xl{font-size: 1.3rem!important}
    .text-2xl{font-size: 1.2rem!important}
    .text-3xl{font-size: 1.1rem!important}
    .text-xl {   font-size: 1rem!important;}
    .text-4xl {font-size: 1.5rem!important;}
}