/*
Theme Name: Future Vidhut Tech
Author: Future Vidhut Tech
Description: Custom WordPress theme converted from HTML.
Version: 1.0
*/

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

/* Tailwind Directives & Custom Styles */
:root {
  --navy-900: #0B2940;
  --copper-500: #D87C2A;
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F3F7FB;
}
::-webkit-scrollbar-thumb {
  background: #9CA3AF;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #6B7280;
}
.dark ::-webkit-scrollbar-track {
  background: #081221;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* Utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}