: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;
}

/* Responsive */
@media (max-width: 768px) {
  .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;
  }

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

.menu-toggle,
.hamburger,
.mobile-drawer {
  display: none;
}

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-section {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 20px;
}
.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;
  }
}
.container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  gap: 20px;
}

/* Left Sidebar */
.sidebar {
  flex: 1;
  min-width: 250px;
  border: 1px solid #ddd;
  padding: 15px;
  background: #fff;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 12px 10px;
  border-bottom: 1px solid #eee;
  font-weight: 500;
  color: #1b6da8;
  cursor: pointer;
  position: relative;
}

.sidebar ul li:hover {
  background: #43a832;
  color: #f5f5f5;
}

.submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: none;
  background: #f5f5f5;
}

.submenu li {
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  color: #1b6da8;
}

.submenu li:hover {
  background: #43a832;
  color: #f5f5f5;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table th,
table td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: left;
}

table th {
  background-color: #1b6da8;
  color: #fff;
}

/* Show submenu when 'show' class is added */
.submenu.show {
  display: block;
}

/* Right Accordion */
.accordion {
  flex: 2;
  min-width: 300px;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
}

.accordion-header {
  background: #1b6da8;
  color: #fff;
  padding: 15px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header:hover {
  background: #43a832;
}

.accordion-header::after {
  content: "\25BC"; /* Down arrow */
  font-size: 14px;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: rotate(-180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: #f8f8f8;
  transition: max-height 0.3s ease;
  padding: 0 15px;
}

.accordion-content p {
  padding: 10px 0;
  margin: 0;
  color: #333;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
}

/* Style for the product table */
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.product-table th,
.product-table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.product-table th {
  background-color: #1b6da8;
  color: #fff;
  font-weight: bold;
}

.product-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.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);
  }
}
