/* Custom CSS overrides and theme additions for TMKart.in */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary-navy: #0F172A;
  --secondary-navy: #1E293B;
  --accent-emerald: #059669;
  --bright-emerald: #10B981;
  --accent-blue: #2563EB;
  --soft-emerald-bg: #ECFDF5;
}

html, body {
  font-family: 'Inter', sans-serif;
  background-color: #0F172A;
  color: #F8FAFC;
  overflow-x: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Navigation */
.glass-nav {
  background: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Dynamic Dropdown styling */
.nav-dropdown-menu {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-dropdown-item:hover .nav-dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Pricing Card Header Gradients with High-Contrast Text */
.pricing-header-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%) !important;
  color: #022C22 !important;
}

.pricing-header-dark {
  background: #1E293B !important;
  border-bottom: 1px solid #334155;
}

/* Popular Card Glow */
.card-popular {
  border: 2px solid #10B981 !important;
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.25);
}

/* Buttons */
.btn-gradient-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 100%);
  color: #022C22;
  font-weight: 800;
  transition: all 0.3s ease;
}

.btn-gradient-green:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.4);
  transform: translateY(-2px);
}

.btn-gradient-navy {
  background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.btn-gradient-navy:hover {
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.3);
  transform: translateY(-2px);
}

/* Modal overlay */
.modal-overlay {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0F172A;
}
::-webkit-scrollbar-thumb {
  background: #059669;
  border-radius: 4px;
}

/* WhatsApp Pulse Animation */
@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-pulse {
  animation: pulse-ring 2s infinite;
}
