:root {
  --bg: #ffffff;
  --card: #e7e4e4;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(11, 22, 35, 0.06);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background: var(--bg);
  color: #071427;
  line-height: 1.5;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* topbar */
.topbar {
  background: #43A832;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 6px 20px;
}

.topbar-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.topbar-logo img {
  height: 46px;
  background: #fff;
  padding: 3px 10px;
  border-radius: 6px;
  display: block;
}

/* header */
/* header{background:#fff;position:sticky;top:0;border-bottom:1px solid #ddd}
.nav{display:flex;align-items:center;gap:20px;padding:10px 0}
.brand{display:flex;align-items:center;gap:10px}
.logo{width:50px;height:50px;background:#eaf7ff;color:var(--primary);font-weight:700;display:flex;align-items:center;justify-content:center;border-radius:10px}
nav ul{list-style:none;display:flex;gap:14px}
nav li{padding:6px 10px;border-radius:6px}
nav li:hover{background:#f0f6ff}
.nav-cta{margin-left:auto;display:flex;gap:10px}

.btn{padding:8px 12px;border-radius:8px;font-weight:700}
.btn-primary{background:var(--primary);color:#fff}
.btn-ghost{border:1px solid var(--primary);color:var(--primary);background:transparent} */

/* Navbar Styling */

/* CSS */
.navbar {
  background-color: #1B6DA8;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
  padding: 0 15px;
  border-right: 1px solid #fff;
}

.nav-list li:last-child {
  border-right: none;
}

.nav-list a {
  text-decoration: none;
  font-weight: bold;
  color: #fff;
  transition: color 0.3s ease;
}

.nav-list a:hover {
  color: #cbcbcb;
}

/* Hamburger hidden on desktop */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    justify-content: space-between;
    padding: 10px 20px;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #1B6DA8;
    text-align: center;
  }

  .nav-list li {
    border: none;
    padding: 12px 0;
  }

  .menu-toggle {
    display: block !important;
    position: relative;
    z-index: 1001;
  }

  .nav-list.active {
    display: flex;
  }
}

/* Mobile Drawer Styles */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.drawer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.drawer-header {
  background: #1B6DA8;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-nav {
  flex: 1;
  padding: 20px 0;
}

.drawer-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.drawer-nav-list li {
  border-bottom: 1px solid #eee;
}

.drawer-nav-list li:last-child {
  border-bottom: none;
}

.drawer-nav-list a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.drawer-nav-list a:hover {
  background: #f5f5f5;
  color: #1B6DA8;
}

.drawer-footer {
  padding: 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
}

.drawer-footer .contact-info p {
  margin: 5px 0;
  font-size: 14px;
  color: #666;
}

/* Show drawer when active */
.mobile-drawer.active .drawer-overlay {
  opacity: 1;
}

.mobile-drawer.active .drawer-content {
  transform: translateX(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .mobile-drawer {
    display: block !important;
  }

  .menu-toggle {
    display: block !important;
  }

  .drawer-content {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .drawer-content {
    width: 100%;
    max-width: 320px;
  }

  .drawer-header {
    padding: 15px;
  }

  .drawer-nav {
    padding: 15px 0;
  }

  .drawer-nav-list a {
    padding: 12px 15px;
    font-size: 16px;
  }
}

hero .hero {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 20px;
  padding: 30px 0;
}
.eyebrow {
  background: #eaf7ff;
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
}
.hero h1 {
  font-size: 28px;
  margin: 10px 0;
}
.hero p {
  color: var(--muted);
  margin-bottom: 16px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.kpis {
  display: flex;
  gap: 10px;
}
.kpi {
  background: var(--card);
  padding: 10px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  text-align: center;
}
.kpi .n {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
}
.hero-card {
  background: var(--card);
  padding: 10px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

/* sections */
.heading {
  margin: 30px 0;
}
.section-title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.service-card {
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}
.service-icon {
  width: 50px;
  height: 50px;
  background: #eaf7ff;
  color: var(--primary);
  margin: 0 auto 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.product {
  background: var(--card);
  padding: 12px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  text-align: center;
}

/* contact */
.contact-info {
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.form-card {
  background: var(--card);
  padding: 16px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
input,
textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

/* footer */
footer {
  background: #071427;
  color: #fff;
  padding: 14px;
  margin-top: 20px;
}
.footer-grid {
  display: flex;
  justify-content: center;
}

/* responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .contact-section {
    grid-template-columns: 1fr;
  }
}

.stats-section {
  display: flex;
  justify-content: space-around;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.stat-box {
  flex: 1 1 150px;
  min-width: 220px;
  text-align: center;
  padding: 15px;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 3px;
  height: 60%;
  background: #1B6DA8;
}

.stat-box img {
  width: 90px;
  height: 90px;
  margin-bottom: 10px;
  opacity: 1;
}

.stat-box h3 {
  color: #1B6DA8;
  margin: 0;
  font-size: 30px;
  font-weight: bold;
}

.stat-box p {
  margin: 4px 0 0;
  font-size: 22px;
  color: #040404;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
  }
  .stat-box {
    width: 100%;
  }
  .stat-box:not(:last-child)::after {
    width: 60%;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 20%;
  }
}

.welcome-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  gap: 20px;
}

.welcome-text {
  flex: 2;
  min-width: 260px;
}

.welcome-text h2 {
  font-size: 23px;
  margin-bottom: 10px;
}

.welcome-text h4 {
  font-size: 16px;
  color: #43A832;
  margin-bottom: 12px;
  font-weight: bolder;
}

.welcome-text p {
  font-size: 17px;
  line-height: 1.5;
  color: #343434;
  word-spacing: 2px;
}

.welcome-quote {
  flex: 0.6;
  min-width: 200px;
  background: #43A832;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-quote h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.welcome-quote button {
  background: #fff;
  color: #43A832;
  border: none;
  padding: 10px 18px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}

.welcome-quote button:hover {
  background: #e5e5e5;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-section {
    flex-direction: column;
  }
  .welcome-quote {
    text-align: center;
  }
}

.stats-wrapper {
  margin-bottom: 40px; /* space between stats and welcome */
}

.welcome-wrapper {
  margin-top: 20px;
}

.services-section {
  padding: 50px 20px;
  text-align: center;
}

.services-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.services-section h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #43A832;
  margin: 8px auto 0;
}

.services-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  padding: 40px 20px;
  width: 350px;
  transition: all 0.3s ease;
  border-bottom: 6px solid #1B6DA8;
  text-align: center;
}

.service-card img {
  width: 70px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  color: #43A832;
  margin-bottom: 15px;
  text-decoration: underline;
}

.service-card p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-card a {
  font-weight: bold;
  color: #43A832;
  text-decoration: none;
  transition: 0.3s;
}

/* Hover Effect */
.service-card:hover {
  background: #43A832;
  transform: translateY(-10px);
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover a {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .service-card {
    width: 90%;
  }
}

.card1 {
  border-radius: 20px;
}

.pharma-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
  line-height: 1.7;
  font-family: Arial, sans-serif;
  color: #43A832;
}

.pharma-section h2 {
  background: #E8F5E9;
  color: #43A832;
  padding: 10px 15px;
  font-size: 22px;
  font-weight: bold;
}

.pharma-section p {
  margin: 15px 0;
  font-size: 16px;
  text-align: justify;
  color: #040404;
}

.pharma-section a {
  color: #43A832;
  font-weight: 500;
  text-decoration: underline;
}

.pharma-section strong {
  font-weight: bold;
}

@media (max-width: 768px) {
  .pharma-section {
    padding: 15px;
    font-size: 15px;
  }

  .pharma-section h2 {
    font-size: 18px;
  }
}

.features-section {
  padding: 30px 15px;
  font-family: Arial, sans-serif;
  line-height: 1.8;
  color: #222;
}

.features-container {
  max-width: 1100px;
  margin: 0 auto;
}

.features-heading {
  background: #E8F5E9;
  color: #43A832;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid #E8F5E9;
  margin-bottom: 20px;
}

.features-list {
  margin: 0 0 20px 20px;
  padding: 0;
}

.features-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.features-note {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
  color: black;
}

@media (max-width: 768px) {
  .features-heading {
    font-size: 16px;
  }

  .features-list li {
    font-size: 14px;
  }

  .features-note {
    font-size: 14px;
  }
}

.accreditation-section {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  text-align: center;
}

.accreditation-container {
  max-width: 1200px;
  margin: 0 auto;
}

.accreditation-heading {
  background: #E8F5E9;
  color: #43A832;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  border-left: 5px solid #E8F5E9;
  margin-bottom: 20px;
}

.accreditation-text {
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}

.accreditation-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

.accreditation-logos img {
  max-height: 80px;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.accreditation-logos img:hover {
  transform: scale(1.1);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .accreditation-logos {
    gap: 20px;
  }
  .accreditation-logos img {
    max-height: 60px;
    max-width: 120px;
  }
}

.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.info-icon {
  font-size: 28px;
  min-width: 40px;
  text-align: center;
}

.info-content {
  flex: 1;
}

.info-heading {
  background: #E8F5E9;
  color: #43A832;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

.info-content p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.info-content a {
  color: #43A832;
  font-weight: bold;
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .info-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .info-icon {
    font-size: 24px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    flex-direction: column;
  }
}

.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 50px 40px;
  font-family: Arial, sans-serif;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 40px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #43A832;
  border-left: 3px solid #43A832;
  padding-left: 10px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #ddd;
  cursor: pointer;
}

.footer-col ul li:hover {
  color: #43A832;
}

.certifications {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.certifications img {
  width: 100%;
  background: #fff;
  border-radius: 6px;
  padding: 5px;
  object-fit: contain;
  transition: transform 0.3s;
}

.certifications img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .certifications {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .certifications {
    grid-template-columns: repeat(2, 1fr);
  }
}
