:root {
  --primary: #787f88;
  --primary-dark: #0099CC;
  --accent: #f47c20;
  --accent-dark: #cf6412;
  --dark: #0f1720;
  --text: #2b2b2b;
  --muted: #666;
  --light: #f5f7fa;
  --white: #ffffff;
  --border: #dfe5ec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
   padding-top: 130px; /* adjust based on total topbar + navbar height */
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
  text-align: center;
}

.section-subtitle {
  max-width: 820px;
  margin: 0 auto 45px;
  color: var(--muted);
  text-align: center;
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--primary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-dark);
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: var(--primary-dark);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.navbar {
  position: fixed;
  top: 20px; /* topbar height */
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #f3f3f3;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.logo img {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 15px;
  font-weight: 300;
  color: #10a9e6;
}

.nav-links a:hover {
  color: var(--accent);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "▼";
  font-size: 10px;
  margin-left: 7px;
  transition: transform 0.3s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-dark);
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f7fa;
  color: var(--accent);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown:hover .dropdown-toggle::after,
.dropdown:focus-within .dropdown-toggle::after {
  transform: rotate(180deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 24, 40, 0.75), rgba(22, 24, 26, 0.75)),
    url("images/background\simba_bg_image.wen") center/cover no-repeat;
}

.hero-inner {
  max-width: 720px;
}

.hero-tag {
  display: inline-block;
  background: rgba(244, 124, 32, 0.15);
  border: 1px solid rgba(244, 124, 32, 0.35);
  color: #ffd9bb;
  padding: 8px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  color: #e4ebf3;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-features span {
  font-size: 14px;
  color: #d9e6f2;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  background: rgba(255,255,255,0.06);
}

.about-grid,
.specs-grid,
.footer-grid,
.product-hero-grid,
.contact-grid {
  display: grid;
  gap: 34px;
}

.about-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.about-text h2,
.product-overview h2,
.form-card h2 {
  font-size: 36px;
  color: var(--primary-dark);
  margin-bottom: 18px;
}

.about-text p,
.product-overview p,
.export-box p,
.form-card p {
  color: var(--muted);
  margin-bottom: 14px;
}

.about-image img,
.product-hero-image {
  position: relative;
  width: 100%;
  max-width: 650px;
  height: 700px;              /* same type of big visual area like homepage */
  margin: 0 auto;
  background: transparent;
  padding: 0;
  overflow: hidden;
}


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

.product-grid,
.feature-grid,
.application-grid {
  display: grid;
  gap: 14px;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid,
.application-grid {
  grid-template-columns: repeat(4, 1fr);
}

.card,
.feature-box,
.application-card,
.spec-card,
.form-card,
.export-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.card-body p {
  color: var(--muted);
  margin-bottom: 18px;
  flex: 1;
}

.feature-box,
.application-card,
.spec-card {
  padding: 29px 22px;
  border: 1px solid var(--border);
}

.feature-box h4,
.application-card h4,
.spec-card h4 {
  font-size: 20px;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.feature-box p,
.application-card p,
.spec-card p {
  color: var(--muted);
  font-size: 16px;
}

.application-card img {
  border-radius: 10px;
  margin-bottom: 16px;
  width: 200%;
  height: 180px;
  object-fit: cover;
}

.specs-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  border-collapse: collapse;
}

table th,
table td {
  padding: 16px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 15px;
}

table th {
  background: var(--primary-dark);
  color: var(--white);
}

.export-box {
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}

.export-box h3 {
  font-size: 30px;
  margin-bottom: 16px;
}

.export-box p {
  color: #d7e5f3;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;        /* full machine visible */
  object-position: center;
  display: block;
  background: transparent;
}
/* caption */

.slide-caption {
  margin-top: 10px;
  text-align: center;
  font-weight: 600;
  color: #333;
  font-size: 18px;
}
/* arrows */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(90, 90, 90, 0.9);
  color: #fff;
  border: none;
  padding: 14px 16px;
  font-size: 22px;
  border-radius: 6px;
  cursor: pointer;
  z-index: 10;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background: rgba(60, 60, 60, 1);
}

.cta-band {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 28px 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}

.cta-band h3 {
  font-size: 28px;
}

.cta-band p {
  color: #d7e5f3;
}

.enquiry {
  background:
    linear-gradient(rgba(8, 24, 40, 0.92), rgba(8, 24, 40, 0.92)),
    url("images/bg_img_4.jpg") center/cover no-repeat;
  color: var(--white);
}

.form-card {
  padding: 34px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(2px);
}

.form-card h2 {
  color: var(--white);
}

.form-card p {
  color: #d8e3ef;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 15px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  outline: none;
  border-radius: 6px;
  padding: 24px 26px;
  font-size: 15px;
  color: var(--text);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  margin-top: 22px;
}

.footer {
  background: #0099CC;
  color: var(--white);
  padding: 65px 0 24px;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 34px;
}

.footer-logo {
  margin-bottom: 11px;
}

.footer-logo img {
  height: 44px;
  width: auto;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 18px;
}

.footer p,
.footer li,
.footer a {
  color: #ffffff;
  font-size: 17px;
}

.footer li {
  margin-bottom: 10px;
}

.footer a:hover {
  color: #ffa866;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 15px;
  text-align: center;
  color: #ffffff;
  font-size: 14px;
}

.footer-bottom small {
  display: block;
  margin-top: 8px;
  line-height: 1.7;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.2);
}

.page-banner {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 24, 40, 0.78), rgba(8, 24, 40, 0.78)),
    url("images/hero-main.jpg") center/cover no-repeat;
}

.page-banner h1 {
  font-size: 48px;
  margin-bottom: 12px;
}

.page-banner p {
  max-width: 780px;
  color: #d9e5f2;
  font-size: 18px;
}

.product-hero-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 25px;
}

.product-badges span {
  background: #eef5fb;
  color: var(--primary-dark);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb {
  margin-bottom: 18px;
  font-size: 14px;
  color: #d1deea;
}

.breadcrumb a {
  color: #ffffff;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-info {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info h3 {
  font-size: 28px;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.contact-info p {
  color: var(--muted);
  margin-bottom: 14px;
}

.contact-list li {
  margin-bottom: 12px;
  color: var(--text);
}

@media (max-width: 1100px) {
  .product-grid,
  .feature-grid,
  .application-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .specs-grid,
  .product-hero-grid,
  .footer-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .section-title,
  .about-text h2,
  .product-overview h2,
  .form-card h2 {
    font-size: 30px;
  }

  .page-banner h1,
  .hero h1 {
    font-size: 34px;
  }

  .product-grid,
  .feature-grid,
  .application-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .navbar-inner,
  .topbar-inner,
  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 90px 0;
  }
}



 .contact-page {
      background: #f4f4f4;
      padding: 70px 0 90px;
    }

    .contact-breadcrumb {
      text-align: center;
      font-size: 13px;
      color: #777;
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .contact-breadcrumb a {
      color: #777;
      text-decoration: none;
    }

    .contact-breadcrumb a:hover {
      color: #d49a20;
    }

    .contact-page-heading {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 50px;
    }

    .contact-page-heading h1 {
      font-size: 58px;
      line-height: 1.1;
      margin: 0 0 14px;
      color: #111;
    }

    .contact-page-heading p {
      font-size: 17px;
      line-height: 1.7;
      color: #555;
      margin: 0;
    }

    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.05fr;
      gap: 55px;
      align-items: start;
    }

    .contact-info-panel {
      padding: 35px 10px 20px 10px;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 36px;
    }

    .contact-icon {
      width: 54px;
      height: 54px;
      min-width: 54px;
      background: #575656;
      color: #fff;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      line-height: 1;
    }

    .contact-info-text h3 {
      margin: 0 0 8px;
      font-size: 20px;
      color: #111;
    }

    .contact-info-text p,
    .contact-info-text a {
      margin: 0;
      font-size: 16px;
      line-height: 1.8;
      color: #444;
      text-decoration: none;
    }

    .contact-info-text a:hover {
      color: #d49a20;
    }

    .contact-form-card {
      background: #fff;
      padding: 50px 50px 40px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    }

    .contact-form-card h2 {
      font-size: 44px;
      margin: 0 0 28px;
      color: #3b4d63;
    }

    .crmWebToEntityForm {
      width: 100%;
      max-width: 100% !important;
      background: transparent !important;
      color: #333 !important;
      margin: 0 !important;
      padding: 0 !important;
      box-sizing: border-box;
    }

    .crmWebToEntityForm * {
      box-sizing: border-box;
      font-family: inherit !important;
    }

    .zcwf_title {
      display: none;
    }

    .zcwf_row {
      margin: 0 0 20px !important;
    }

    .zcwf_col_lab {
      width: 100% !important;
      float: none !important;
      margin: 0 0 8px 0 !important;
      padding: 0 !important;
    }

    .zcwf_col_lab label {
      display: block;
      font-size: 15px !important;
      font-weight: 600;
      color: #222;
    }

    .zcwf_col_fld {
      width: 100% !important;
      float: none !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    .zcwf_col_fld input[type="text"],
    .zcwf_col_fld textarea,
    .zcwf_col_fld select {
      width: 100% !important;
      border: none !important;
      border-bottom: 1px solid #cfd6dd !important;
      background: transparent !important;
      padding: 8px 0 !important;
      font-size: 16px !important;
      color: #333 !important;
      outline: none !important;
      border-radius: 0 !important;
      box-shadow: none !important;
    }

    .zcwf_col_fld textarea {
      min-height: 140px;
      resize: vertical;
    }

    .zcwf_col_fld input[type="text"]:focus,
    .zcwf_col_fld textarea:focus,
    .zcwf_col_fld select:focus {
      border-bottom: 1px solid #d49a20 !important;
    }

    .zcwf_col_help {
      display: none !important;
    }

    .zoho-extra-field {
      margin: 0 0 20px;
    }

    .zoho-extra-field label {
      display: block;
      font-size: 15px;
      font-weight: 600;
      color: #222;
      margin-bottom: 8px;
    }

    .zoho-extra-field select {
      width: 100%;
      border: none;
      border-bottom: 1px solid #cfd6dd;
      background: transparent;
      padding: 12px 0;
      font-size: 16px;
      color: #333;
      outline: none;
      border-radius: 0;
      font-family: inherit;
    }

    .zoho-extra-field select:focus {
      border-bottom: 1px solid #d49a20;
    }

    .button-row {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .crmWebToEntityForm .formsubmit.zcwf_button,
    .crmWebToEntityForm .zcwf_button {
      font-size: 16px !important;
      border: none !important;
      padding: 14px 34px !important;
      border-radius: 0 !important;
      cursor: pointer !important;
      min-width: 140px;
      max-width: none !important;
      transition: 0.3s ease !important;
    }

    .crmWebToEntityForm .formsubmit.zcwf_button {
      background: #353c44 !important;
      color: #fff !important;
    }

    .crmWebToEntityForm .formsubmit.zcwf_button:hover {
      background: #d49a20 !important;
      box-shadow: none !important;
    }

    .crmWebToEntityForm input[type="reset"].zcwf_button {
      background: #e9ecef !important;
      color: #333 !important;
    }

    .crmWebToEntityForm input[type="reset"].zcwf_button:hover {
      background: #dcdfe3 !important;
    }

    .form-response-message {
      display: none;
      margin-top: 18px;
      padding: 14px 16px;
      background: #edf9f0;
      border: 1px solid #bfe3c8;
      color: #1d6b35;
      font-size: 15px;
      line-height: 1.7;
    }

    .form-response-message.show {
      display: block;
    }

    .form-response-message strong {
      display: block;
      font-size: 16px;
      margin-bottom: 4px;
    }

    .hidden-iframe {
      display: none;
      width: 0;
      height: 0;
      border: 0;
    }

    .active-link {
      color: #d49a20 !important;
    }

    @media (max-width: 991px) {
      .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .contact-page-heading h1 {
        font-size: 44px;
      }

      .contact-form-card {
        padding: 35px 28px;
      }

      .contact-form-card h2 {
        font-size: 34px;
      }

      .contact-info-text h3 {
        font-size: 24px;
      }

      .contact-info-text p,
      .contact-info-text a {
        font-size: 17px;
      }
    }

    @media (max-width: 767px) {
      .contact-page {
        padding: 50px 0 70px;
      }

      .contact-page-heading h1 {
        font-size: 36px;
      }

      .contact-page-heading p {
        font-size: 15px;
      }

      .contact-form-card h2 {
        font-size: 28px;
      }

      .contact-info-item {
        gap: 15px;
        margin-bottom: 28px;
      }

      .contact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 22px;
      }

      .contact-info-text h3 {
        font-size: 21px;
      }

      .contact-info-text p,
      .contact-info-text a {
        font-size: 15px;
        line-height: 1.6;
      }

      .button-row {
        flex-direction: column;
        align-items: stretch;
      }

      .crmWebToEntityForm .formsubmit.zcwf_button,
      .crmWebToEntityForm .zcwf_button {
        width: 100%;
      }
    }

.footer-contact h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

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

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.6;
}

.footer-contact ul li .icon {
  font-size: 21px;
  min-width: 19px;
  line-height: 1.1;
  margin-top: 1px;
}

.footer-contact ul li a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact ul li a:hover {
  text-decoration: underline;
}