:root {
  --primary: #FF0000; /* Vibrant Red from the image */
  --primary-dark: #CC0000;
  --secondary: #1A1A1A;
  --accent: #F7C35F;
  --dark: #0F0F0F;
  --light: #F9F9F9;
  --gray: #666666;
  --border: rgba(0, 0, 0, 0.08);
}

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

.font-display {
  font-family: 'Outfit', sans-serif;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Utilities */
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.bg-dark { background-color: var(--dark) !important; }
.text-dark { color: var(--dark) !important; }
.bg-light { background-color: var(--light) !important; }

/* Buttons */
.btn {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
}

.btn-outline-light {
  border-width: 2px;
}

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

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav-link {
  color: var(--dark) !important;
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 20px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(15, 15, 15, 0.7) 50%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 0, 0, 0.1);
  border: 1px solid rgba(255, 0, 0, 0.2);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

/* Cards */
.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  border-color: transparent;
}

.card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.card-img-wrapper img {
  transition: transform 0.6s ease;
}

.card:hover .card-img-wrapper img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 100px 0 40px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 5px;
}

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

.animate-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Custom Components */
.stat-card {
  padding: 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

@media (max-width: 768px) {
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}





:root {
    --brand-primary: #dc2626; /* Manak Red */
    --brand-dark: #080808;
    --brand-accent: #f59e0b;
    --sidebar-width: 280px;
    --card-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
}

.font-display { font-family: 'Outfit', sans-serif; }

/* Dashboard Cards */
.card {
    border: 1px solid rgba(0,0,0,0.05) !important;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1) !important;
}

/* Sidebar Styling */
.sidebar-link {
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none !important;
    margin-bottom: 5px;
}

.sidebar-link.active {
    background-color: var(--brand-primary) !important;
    color: white !important;
    box-shadow: 0 10px 20px -5px rgba(220, 38, 38, 0.3);
}

.sidebar-link:hover:not(.active) {
    background-color: #f8fafc !important;
    color: var(--brand-primary) !important;
}

/* Badge Customization */
.badge-soft-primary { background: rgba(220, 38, 38, 0.1); color: var(--brand-primary); }
.badge-soft-success { background: rgba(34, 197, 94, 0.1); color: #16a34a; }

/* Animations */
.animate-up {
    animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
