/* Neeta Exim - Pharma B2B theme */
:root {
  --primary: #0d6efd;
  --primary-dark: #0a58ca;
  --teal: #1fb5b1;
  --dark: #0b1b2b;
  --muted: #4a5a6a;
  --bg-soft: #f6f9fc;
  --white: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--primary-dark);
}

.navbar {
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.08);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-link {
  font-weight: 600;
  padding: 0.75rem 1rem !important;
  transition: color 0.2s ease-in-out;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.hero {
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(31, 181, 177, 0.1));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.6));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 0 5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(13, 110, 253, 0.1);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.section-title {
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--muted);
  max-width: 680px;
}

.card {
  border: 1px solid rgba(13, 110, 253, 0.08);
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(11, 27, 43, 0.06);
}

.card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(11, 27, 43, 0.1);
  transition: all 0.2s ease;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(13, 110, 253, 0.12);
  color: var(--primary-dark);
  font-weight: 700;
}

.badge-soft {
  background: rgba(31, 181, 177, 0.12);
  color: #117a76;
  border: 1px solid rgba(31, 181, 177, 0.25);
}

.bg-soft {
  background: var(--bg-soft);
}

.list-check {
  list-style: none;
  padding-left: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.5rem;
}

.list-check li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 700;
}

.footer {
  background: #0a1828;
  color: #c8d4e0;
}

.footer a {
  color: #d8e6f2;
}

.footer a:hover {
  color: var(--white);
}

.cta-strip {
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(13, 110, 253, 0.35);
}

.contact-card {
  border-left: 4px solid var(--primary);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.2);
}

.table-cert {
  border: 1px solid rgba(13, 110, 253, 0.1);
}

@media (max-width: 991px) {
  .hero-content {
    padding: 4.5rem 0 3.5rem;
  }
  .nav-link {
    padding: 0.5rem 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    text-align: center;
    padding: 3rem 0 2rem;
  }
  .pill {
    justify-content: center;
  }
  .display-5 {
    font-size: 2rem;
  }
  .display-6 {
    font-size: 1.5rem;
  }
}

