/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, Poppins, Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
}

/* ================= HEADER ================= */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Logo stays clean */
.logo {
  height: 45px;
}

/* Brand text – SAME green everywhere */
.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #239f02;          /* Brand Green */
  text-transform: uppercase;
}



.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.main-nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #239f02;
  border-bottom: 2px solid #239f02;
}

/* ================= FOOTER ================= */
.site-footer {
  background-color: #ffffff;
  border-top: 1px solid #e6e6e6;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #239f02;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  text-decoration: none;
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #239f02;
}

.map-link {
  display: inline-block;
  margin-top: 8px;
  color: #239f02;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  font-size: 14px;
  border-top: 1px solid #e6e6e6;
}
/* ================= HOME PAGE ================= */

.hero {
  background: #ffffff;
  padding: 80px 20px;
  border-bottom: 1px solid #e6e6e6;
}

.hero-container {
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.hero h2 {
  font-size: 20px;
  color: #239f02;
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  line-height: 1.6;
}

.hero-trust {
  margin-top: 15px;
  font-weight: 500;
}

.hero-buttons {
  margin-top: 30px;
}

.btn {
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 4px;
  margin-right: 15px;
  display: inline-block;
}

.btn.primary {
  background: #239f02;
  color: #ffffff;
}

.btn.secondary {
  border: 2px solid #239f02;
  color: #239f02;
}

.section {
  padding: 60px 20px;
}

.light-bg {
  background: #f9f9f9;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.section h2 {
  margin-bottom: 20px;
}

.section-subtitle {
  margin-bottom: 30px;
  color: #555;
}

.highlight {
  font-weight: 600;
  color: #239f02;
}

.product-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.product-card {
  min-width: 260px;
  border: 1px solid #e6e6e6;
  padding: 20px;
  text-decoration: none;
  color: #1a1a1a;
}

.product-card h3 {
  color: #239f02;
  margin-bottom: 10px;
}

.center-btn {
  margin-top: 30px;
}

.checklist li,
.bullet-list li,
.industry-list li {
  margin-bottom: 8px;
}

.bold-text {
  margin-top: 20px;
  font-weight: 600;
}

.cta {
  border-top: 2px solid #239f02;
}
/* ===== HOME LAYOUT ===== */

.container {
  max-width: 1200px;
  margin: auto;
}

.container.narrow {
  max-width: 800px;
}

.section {
  padding: 70px 20px;
}

.section-light {
  background: #f9f9f9;
}

h1 {
  font-size: 36px;
  line-height: 1.3;
}

h2 {
  font-size: 26px;
  margin-bottom: 20px;
}

.section-subtitle {
  margin-bottom: 35px;
  color: #555;
}

/* ===== HERO ===== */
.hero {
  padding: 90px 20px;
  border-bottom: 1px solid #e6e6e6;
}

.hero h2 {
  color: #239f02;
  font-size: 20px;
}

.hero-text {
  margin-top: 20px;
  max-width: 850px;
}

.hero-trust {
  margin-top: 15px;
  font-weight: 500;
}

.hero-actions {
  margin-top: 35px;
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  margin-right: 15px;
  font-weight: 500;
}

.btn-primary {
  background: #239f02;
  color: #ffffff;
}

.btn-outline {
  border: 2px solid #239f02;
  color: #239f02;
}

/* ===== PRODUCTS ===== */
.product-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.product-box {
  min-width: 260px;
  border: 1px solid #e6e6e6;
  padding: 22px;
  text-decoration: none;
  color: #1a1a1a;
  background: #ffffff;
}

.product-box h3 {
  color: #239f02;
  margin-bottom: 10px;
}

/* ===== LISTS ===== */
.check-list li,
.bullet-points li {
  margin-bottom: 10px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

/* ===== TEXT EMPHASIS ===== */
.focus-line {
  margin-top: 25px;
  font-weight: 600;
  color: #239f02;
}

.emphasis {
  margin-top: 25px;
  font-weight: 600;
}

.note {
  margin-top: 20px;
}

.center {
  margin-top: 30px;
  text-align: center;
}

/* ===== CTA ===== */
.cta {
  border-top: 2px solid #239f02;
}

.cta-text {
  margin-top: 20px;
}
/* ===== PRODUCT IMAGE CAROUSEL ===== */

.product-box {
  min-width: 280px;
  border: 1px solid #e6e6e6;
  padding: 18px;
  background: #ffffff;
  text-decoration: none;
  color: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.product-image {
  width: 100%;
  height: 170px;
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 15px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-box h3 {
  color: #239f02;
  margin-bottom: 8px;
  font-size: 18px;
}

.product-box p {
  font-size: 14px;
  line-height: 1.5;
}
/* ===== PRODUCTS PAGE ===== */

.page-hero {
  padding: 80px 20px 60px;
  border-bottom: 1px solid #e6e6e6;
}

.page-intro {
  margin-top: 15px;
  line-height: 1.6;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.product-category {
  border: 1px solid #e6e6e6;
  padding: 22px;
  background: #ffffff;
}

.product-category img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.product-category h3 {
  color: #239f02;
  margin-bottom: 6px;
}

.tagline {
  font-weight: 500;
  margin-bottom: 10px;
}

.applications {
  margin-top: 10px;
  font-size: 14px;
}

.link-btn {
  display: inline-block;
  margin-top: 15px;
  color: #239f02;
  font-weight: 500;
  text-decoration: none;
}

.link-btn:hover {
  text-decoration: underline;
}

.support-note {
  margin-top: 20px;
}

.cta-actions {
  margin-top: 25px;
}
/* ===== IMAGE FRAME ===== */

.image-frame {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.image-frame figure {
  border: 1px solid #e6e6e6;
  background: #ffffff;
}

.image-frame img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-frame figcaption {
  padding: 10px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #e6e6e6;
}

/* ===== INFO GRID ===== */

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.info-box h3 {
  color: #239f02;
  margin-bottom: 8px;
}

.tech-list {
  margin-top: 20px;
  padding-left: 18px;
}

.tech-list li {
  margin-bottom: 8px;
}
/* ===== CONTACT PAGE ===== */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-card {
  border: 1px solid #e6e6e6;
  padding: 20px;
  background: #ffffff;
}

.contact-card h3 {
  color: #239f02;
  margin-bottom: 5px;
}

.contact-card .role {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.info-two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.info-box h2 {
  margin-bottom: 10px;
}

.enquiry-form {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.enquiry-form input,
.enquiry-form textarea {
  padding: 12px;
  border: 1px solid #e6e6e6;
  font-family: inherit;
  font-size: 14px;
}

.form-note {
  margin-top: 10px;
  font-size: 13px;
  color: #666;
}

.simple-list {
  padding-left: 18px;
}

.simple-list li {
  margin-bottom: 8px;
}
/* =========================
   GLOBAL RESET & BASE
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.7;
}

/* =========================
   LAYOUT CONTAINERS
   ========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 70px 0;
}

.section-light {
  background-color: #f9f9f9;
  border-top: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
}

/* =========================
   TYPOGRAPHY
   ========================= */
h1 {
  font-size: 36px;
  font-weight: 600;
  color: #239f02;
  margin-bottom: 20px;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  max-width: 900px;
}

/* =========================
   HERO / INTRO TEXT
   ========================= */
.about-hero {
  padding-top: 90px;
  padding-bottom: 40px;
}

.intro-text {
  font-size: 18px;
  max-width: 900px;
}

/* =========================
   BULLET LIST STYLING
   ========================= */
.bullet-list {
  list-style: none;
  margin-top: 20px;
  margin-bottom: 20px;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background-color: #239f02;
  border-radius: 50%;
}

/* =========================
   TWO COLUMN LISTS
   ========================= */
.two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 40px;
  max-width: 700px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 768px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .section {
    padding: 50px 0;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

