/* This is an important file for Fiscora Website */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --primary: #0381E7;
  --secondary: #0381E7;
  --accent: #F59E0B;
  --success: #10B981;
  --error: #EF4444;
  --dark-900: #1F2937;
  --dark-800: #374151;
  --dark-700: #4B5563;
  --dark-600: #6B7280;
  --light-900: #F9FAFB;
  --light-800: #F3F4F6;
  --light-700: #E5E7EB;
  --light-600: #D1D5DB;
  --light-500: #9CA3AF;
  --radius: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-800);
  background-color: var(--light-900);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.shadow-custom {
  box-shadow: 0 10px 25px -5px rgba(75, 76, 245, 0.1), 0 10px 10px -5px rgba(75, 76, 245, 0.04);
}

.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234b4cf5' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 500;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  border: 1px solid transparent;
}

.btn-primary:hover {
  background-color: var(--secondary);
  font-size: 1.2rem;
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
  border: 1px solid transparent;
}

.btn-secondary:hover {
  background-color: var(--light-800);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
}

section {
  padding: 5rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-900);
}

.section-subtitle {
  font-size: 1.125rem;
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: var(--dark-700);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gap-4 {
  gap: 1rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-12 {
  gap: 3rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-24 {
  margin-top: 6rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
  animation: slide-up 0.5s ease-out forwards;
}

/* NotFound page styles */
.not-found-container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-800);
}

.not-found-card {
  width: 100%;
  max-width: 28rem;
  margin: 0 1rem;
  background-color: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.not-found-header {
  display: flex;
  margin-bottom: 1rem;
  gap: 0.5rem;
  align-items: center;
}

.not-found-icon {
  height: 2rem;
  width: 2rem;
  color: var(--error);
}

.not-found-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-900);
}

.not-found-message {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--dark-600);
}
