/*--------------------------------------------------------------
# Maqul Exims LLP — frontend theme
--------------------------------------------------------------*/
:root {
  --mq-green: #14532d;
  --mq-green-dark: #0b3319;
  --mq-green-light: #e8f0e9;
  --mq-gold: #c9971f;
  --mq-gold-light: #f3d98b;
  --mq-text: #1f2937;
  --mq-muted: #6b7280;
  --mq-cream: #f7f5ef;
  --mq-border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--mq-text);
}

.mq-page-wrap {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

section {
  padding: 70px 0;
}

/* Wider containers site-wide */
@media (min-width: 992px) {
  .container {
    max-width: 1020px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1440px;
  }
}

.mq-eyebrow {
  color: var(--mq-gold);
  font-weight: 700;
  letter-spacing: .04em;
}

.mq-section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--mq-green);
  margin-bottom: 14px;
}

.mq-section-title span {
  color: var(--mq-gold);
}

.mq-section-lead {
  color: var(--mq-muted);
  font-size: 15px;
  max-width: 640px;
}

.mq-btn-primary,
.mq-btn-gold,
.mq-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease;
}

.mq-btn-primary {
  background: var(--mq-green);
  color: #fff;
  border: 1px solid var(--mq-green);
}

.mq-btn-primary:hover {
  background: var(--mq-green-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(11, 51, 25, .28);
}

.mq-btn-gold {
  background: var(--mq-gold);
  color: var(--mq-green-dark);
  border: 1px solid var(--mq-gold);
}

.mq-btn-gold:hover {
  background: #b3860f;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(201, 151, 31, .35);
}

.mq-btn-outline {
  background: #fff;
  color: var(--mq-green);
  border: 1px solid var(--mq-border);
}

.mq-btn-outline:hover {
  background: var(--mq-green);
  color: #fff;
  border-color: var(--mq-green);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, .18);
}

.mq-btn-primary i,
.mq-btn-gold i,
.mq-btn-outline i {
  transition: transform .25s ease;
}

.mq-btn-primary:hover i,
.mq-btn-gold:hover i,
.mq-btn-outline:hover i {
  transform: translateX(3px);
}

/*--------------------------------------------------------------
# Topbar + Header
--------------------------------------------------------------*/
.mq-topbar {
  background: var(--mq-green-dark);
  color: #d9e6db;
  font-size: 12.5px;
  padding: 5px 0;
  margin: 0;
}

.mq-topbar a {
  color: #d9e6db;
  margin-right: 24px;
}

.mq-topbar a:hover {
  color: var(--mq-gold-light);
}

.mq-topbar i {
  color: var(--mq-gold-light);
  margin-right: 4px;
}

.mq-header {
  background: #fff;
  padding: 0;
  margin: 0;
  border: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: .2s;
}

.mq-header.mq-sticky {
  padding: 4px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
}

.mq-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.mq-logo span {
  font-weight: 800;
  color: var(--mq-green);
  font-size: 20px;
  line-height: 1.1;
}

.mq-logo span strong {
  color: var(--mq-gold);
}

.mq-logo span small {
  display: block;
  font-size: 10px;
  color: var(--mq-muted);
  font-weight: 600;
  letter-spacing: .1em;
}

.mq-nav .nav-link {
  position: relative;
  color: var(--mq-text);
  font-weight: 600;
  font-size: 14px;
  padding: 10px 14px !important;
  transition: color .2s ease;
}

.mq-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--mq-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.mq-nav .nav-link:hover,
.mq-nav .nav-link.active {
  color: var(--mq-green);
}

.mq-nav .nav-link:hover::after,
.mq-nav .nav-link.active::after {
  transform: scaleX(1);
}

.mq-nav .dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  border-radius: 10px;
  padding: 8px;
}

.mq-nav .dropdown-item {
  font-size: 13.5px;
  padding: 8px 12px;
  border-radius: 6px;
}

.mq-nav .dropdown-item:hover {
  background: var(--mq-green-light);
  color: var(--mq-green);
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.mq-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 60px 0;
  background-color: #fff;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  overflow: hidden;
}

.mq-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 251, 240, .92) 0%, rgba(255, 251, 240, .72) 22%, rgba(255, 251, 240, .38) 42%, rgba(255, 251, 240, .12) 60%, rgba(255, 251, 240, 0) 78%);
}

.mq-hero-blob {
  display: none;
}

.mq-hero .container {
  position: relative;
  z-index: 2;
}

.mq-eyebrow-light {
  color: var(--mq-gold);
}

.mq-hero-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--mq-green);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 600px;
}

.mq-hero-title span {
  color: var(--mq-gold);
}

.mq-hero-text {
  color: var(--mq-text);
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 14px;
}

.mq-hero-btns {
  opacity: 0;
  animation: mqHeroBtnsIn .6s ease .5s forwards;
}

@keyframes mqHeroBtnsIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mq-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 83, 45, .18);
}

/*--------------------------------------------------------------
# Trust badges
--------------------------------------------------------------*/
.mq-trust {
  background: var(--mq-cream);
  padding: 30px 0;
}

.mq-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.mq-trust-item i {
  color: var(--mq-green);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.mq-trust-item:hover i {
  transform: scale(1.2) rotate(-6deg);
}

.mq-trust-item h6 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 14px;
}

.mq-trust-item p {
  color: var(--mq-muted);
  font-size: 12.5px;
  margin: 0;
}

/*--------------------------------------------------------------
# Licensing / dark green section
--------------------------------------------------------------*/
.mq-licensing {
  background: var(--mq-green);
  color: #fff;
  overflow: hidden;
}

.mq-licensing .mq-section-title {
  color: #fff;
}

.mq-licensing p {
  color: #cfe0d2;
}

.mq-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.mq-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #e9f2ea;
}

.mq-check-list i {
  color: var(--mq-gold);
  margin-top: 3px;
}

.mq-licensing-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
  border: 4px solid rgba(255, 255, 255, .12);
}

.mq-licensing-img img {
  display: block;
  transition: transform .5s ease;
}

.mq-licensing-img:hover img {
  transform: scale(1.04);
}

/*--------------------------------------------------------------
# Services grid (Complete Support Across The Trade Cycle)
--------------------------------------------------------------*/
.mq-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mq-border);
  border-radius: 16px;
  padding: 30px 26px;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.mq-service-view-wrap {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.mq-service-view-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--mq-gold);
  color: var(--mq-green-dark);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform .25s ease, background-color .25s ease, color .25s ease;
}

.mq-service-view-btn:hover {
  background: #b3860f;
  color: #fff;
  transform: scale(1.08);
}

.mq-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20, 83, 45, .12);
  border-color: transparent;
}

.mq-service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--mq-green-light);
  color: var(--mq-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.mq-service-card:hover .mq-service-icon {
  background: var(--mq-green);
  color: #fff;
  transform: scale(1.08) rotate(-6deg);
}

.mq-service-card h5 {
  font-weight: 700;
  font-size: 16px;
  color: var(--mq-text);
  margin-bottom: 10px;
}

.mq-service-card p {
  color: var(--mq-muted);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.mq-pagination {
  gap: 6px;
}

.mq-pagination .page-link {
  border: 1px solid var(--mq-border);
  color: var(--mq-green);
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  box-shadow: none;
}

.mq-pagination .page-link:hover {
  background: var(--mq-green-light);
  color: var(--mq-green-dark);
  border-color: var(--mq-green-light);
}

.mq-pagination .page-item.active .page-link {
  background: var(--mq-green);
  border-color: var(--mq-green);
  color: #fff;
}

.mq-pagination .page-item.disabled .page-link {
  color: var(--mq-muted);
  background: #fff;
  border-color: var(--mq-border);
  opacity: .6;
}

/*--------------------------------------------------------------
# Product categories
--------------------------------------------------------------*/
.mq-cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mq-border);
  border-radius: 14px;
  text-align: left;
  width: 100%;
  flex: 1 1 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.mq-cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(20, 83, 45, .16);
  border-color: transparent;
}

.mq-cat-photo {
  height: 150px;
  overflow: hidden;
}

.mq-cat-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.mq-cat-card:hover .mq-cat-photo img {
  transform: scale(1.08);
}

.mq-cat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.mq-cat-card h5 {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 8px;
  color: var(--mq-text);
}

.mq-cat-card p {
  color: var(--mq-muted);
  font-size: 12px;
  min-height: 48px;
  margin-bottom: 8px;
}

.mq-cat-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.mq-cat-btn {
  flex: 1;
  justify-content: center;
  padding: 5px 6px;
  font-size: 10.5px;
  border-radius: 6px;
  gap: 4px;
}

/*--------------------------------------------------------------
# Source to Destination + Why Choose + About + Founder (combined)
--------------------------------------------------------------*/
.mq-global2 {
  padding: 0;
}

.mq-global2-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 260px;
  grid-template-areas:
    "banner banner side"
    "why about side";
}

.mq-global2-banner {
  grid-area: banner;
  position: relative;
  background-color: var(--mq-green-dark);
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 30px 40px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mq-global2-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 51, 25, .55) 0%, rgba(11, 51, 25, .25) 45%, rgba(11, 51, 25, 0) 65%);
}

.mq-global2-banner > * {
  position: relative;
  z-index: 1;
}

.mq-global2-heading-lg {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin: 4px 0 8px;
}

.mq-global2-banner p {
  color: #dbe9dd;
  font-size: 13.5px;
  max-width: 520px;
  margin: 0;
  line-height: 1.5;
}

.mq-global2-heading {
  color: var(--mq-green);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 16px;
}

.mq-global2-why {
  grid-area: why;
  background: #fff;
  padding: 30px 30px 30px 40px;
}

.mq-global2-about {
  grid-area: about;
  background: #fff;
  padding: 30px 40px 30px 30px;
}

.mq-global2-about p {
  color: var(--mq-muted);
  font-size: 13.5px;
  margin-bottom: 10px;
}

.mq-global2-side {
  grid-area: side;
  display: flex;
  flex-direction: column;
  align-self: start;
}

.mq-global2-photo {
  flex-shrink: 0;
  overflow: hidden;
}

.mq-global2-photo img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .4s ease;
}

.mq-global2-side:hover .mq-global2-photo img {
  transform: scale(1.05);
}

.mq-global2-card {
  flex: none;
  background: var(--mq-green-dark);
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mq-global2-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 16px;
}

.mq-global2-card .mq-role {
  color: var(--mq-gold-light);
  font-size: 12.5px;
  font-weight: 600;
  margin: 0;
}

.mq-global2-card .mq-company {
  color: #cfe0d2;
  font-size: 12.5px;
  margin-bottom: 10px;
}

.mq-global2-card .mq-card-bio {
  color: #cfe0d2;
  font-size: 12px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.mq-global2-card .mq-signature {
  font-family: "Brush Script MT", cursive;
  color: var(--mq-gold-light);
  font-size: 20px;
  margin: 0;
}

@media (max-width: 991px) {
  .mq-global2-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "banner"
      "why"
      "about"
      "side";
  }

  .mq-global2-why,
  .mq-global2-about {
    padding: 34px 24px;
  }

  .mq-global2-side {
    max-width: 300px;
    margin: 0 auto;
  }
}

.mq-founder-card {
  background: var(--mq-green-dark);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  max-width: 260px;
  margin-left: auto;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mq-founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}

.mq-founder-card img {
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: transform .4s ease;
}

.mq-founder-card:hover img {
  transform: scale(1.04);
}

.mq-founder-card h5 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 15px;
}

.mq-founder-card .mq-role {
  color: var(--mq-gold-light);
  font-size: 12px;
  font-weight: 600;
}

.mq-founder-card .mq-company {
  color: #cfe0d2;
  font-size: 12px;
  margin-bottom: 10px;
}

.mq-founder-card .mq-signature {
  font-family: "Brush Script MT", cursive;
  color: var(--mq-gold-light);
  font-size: 20px;
}

/*--------------------------------------------------------------
# Why choose mini-features
--------------------------------------------------------------*/
.mq-mini-feature {
  margin-bottom: 18px;
}

.mq-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f6ecd4;
  color: var(--mq-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-bottom: 10px;
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.mq-mini-feature:hover .mq-mini-icon {
  background: var(--mq-gold);
  color: #fff;
  transform: scale(1.1);
}

.mq-mini-feature h6 {
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 13.5px;
  color: var(--mq-text);
}

.mq-mini-feature p {
  color: var(--mq-muted);
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}

.mq-about-quote {
  color: var(--mq-gold);
  font-weight: 700;
  font-style: italic;
  margin-top: 12px;
}

/*--------------------------------------------------------------
# CTA bar (inline, above footer)
--------------------------------------------------------------*/
.mq-cta-bar {
  background: #fff;
  border-top: 1px solid var(--mq-border);
  border-bottom: 1px solid var(--mq-border);
  padding: 22px 0;
}

.mq-cta-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mq-cta-bar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--mq-green-light);
  color: var(--mq-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mq-cta-bar-left h6 {
  color: var(--mq-green);
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 2px;
}

.mq-cta-bar-left p {
  color: var(--mq-muted);
  font-size: 12.5px;
  margin: 0;
  max-width: 340px;
}

.mq-cta-bar-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.mq-cta-bar-stats div {
  text-align: center;
}

.mq-cta-bar-stats i {
  display: block;
  color: var(--mq-green);
  font-size: 20px;
  margin-bottom: 4px;
}

.mq-cta-bar-stats span {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--mq-text);
}

.mq-cta-bar-stats .mq-counter {
  display: inline;
}

.mq-cta-bar-stats small {
  color: var(--mq-muted);
  font-size: 11.5px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.mq-footer {
  background: var(--mq-green-dark);
  color: #cfe0d2;
  padding-top: 40px;
}

.mq-ft-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mq-ft-logo img {
  height: 48px;
}

.mq-ft-logo span {
  color: #fff;
  font-weight: 800;
}

.mq-ft-logo span strong {
  color: var(--mq-gold);
}

.mq-ft-about {
  color: #b9cdbb;
  font-size: 13px;
}

.mq-ft-title {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
}

.mq-ft-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mq-ft-menu li {
  margin-bottom: 10px;
}

.mq-ft-menu a {
  color: #b9cdbb;
  font-size: 13px;
}

.mq-ft-menu a:hover {
  color: var(--mq-gold-light);
}

.mq-ft-contact li {
  color: #b9cdbb;
  font-size: 13px;
  display: flex;
  gap: 8px;
}

.mq-ft-contact i {
  color: var(--mq-gold);
  margin-top: 3px;
}

.mq-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0;
  font-size: 12.5px;
  color: #b9cdbb;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}

.mq-footer-credit {
  text-align: center;
  color: #b9cdbb;
}

.mq-footer-credit a {
  color: #b9cdbb;
  font-weight: 600;
}

.mq-footer-credit a:hover {
  color: var(--mq-gold-light);
}

.mq-footer-bottom-links {
  justify-self: end;
}

.mq-footer-bottom-links a {
  color: #b9cdbb;
  margin-left: 18px;
}

@media (max-width: 767px) {
  .mq-footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .mq-footer-bottom-links {
    justify-self: center;
  }

  .mq-footer-bottom-links a {
    margin: 0 9px;
  }
}

.mq-footer-bottom-links a:hover {
  color: var(--mq-gold-light);
}

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
#topBtn3 {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--mq-green);
  color: #fff;
  border: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
  z-index: 998;
}

#topBtn3.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#topBtn3:hover {
  background: var(--mq-green-dark);
}

/*--------------------------------------------------------------
# WhatsApp floating button
--------------------------------------------------------------*/
.mq-whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 80px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  z-index: 998;
  transition: transform .25s ease, box-shadow .25s ease;
}

.mq-whatsapp-btn:hover {
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 26px rgba(37, 211, 102, .55);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .mq-hero {
    min-height: auto;
    padding: 60px 0;
  }

  .mq-hero-blob {
    display: none;
  }

  .mq-hero-title {
    font-size: 30px;
    max-width: 100%;
  }

  .mq-hero-text {
    max-width: 100%;
  }

  .mq-hero-overlay {
    display: block;
    background: linear-gradient(180deg, #fff 0%, #fff 62%, rgba(255, 255, 255, .55) 78%, rgba(255, 255, 255, 0) 100%);
  }

  .mq-nav {
    background: #fff;
    padding: 10px 0;
  }

  .mq-cta-bar-stats {
    justify-content: flex-start;
    margin-top: 16px;
  }

  .mq-founder-card {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Inner page header (About Us, etc.)
--------------------------------------------------------------*/
.mq-page-header {
  background: linear-gradient(120deg, var(--mq-green-dark) 0%, var(--mq-green) 100%);
  padding: 60px 0;
}

.mq-page-header-title {
  color: #fff;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.mq-breadcrumb {
  font-size: 13px;
  color: #cfe0d2;
}

.mq-breadcrumb a {
  color: #cfe0d2;
}

.mq-breadcrumb a:hover {
  color: var(--mq-gold-light);
}

.mq-breadcrumb i {
  font-size: 10px;
  margin: 0 8px;
  color: var(--mq-gold-light);
}

.mq-breadcrumb span {
  color: var(--mq-gold-light);
  font-weight: 600;
}

/*--------------------------------------------------------------
# Chairman's Message
--------------------------------------------------------------*/
.mq-chairman {
  background: var(--mq-green);
  color: #fff;
}

.mq-chairman .mq-section-title {
  color: #fff;
}

.mq-chairman p {
  color: #dbe9dd;
  font-size: 14.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/*--------------------------------------------------------------
# Founder profile timeline
--------------------------------------------------------------*/
.mq-timeline {
  position: relative;
  padding-left: 46px;
}

.mq-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--mq-border);
}

.mq-timeline-item {
  position: relative;
  display: flex;
  gap: 18px;
  padding-bottom: 30px;
}

.mq-timeline-item-last {
  padding-bottom: 0;
}

.mq-timeline-icon {
  position: absolute;
  left: -46px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--mq-green-light);
  color: var(--mq-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--mq-border);
  transition: transform .3s ease, background-color .3s ease, color .3s ease;
}

.mq-timeline-item:hover .mq-timeline-icon {
  background: var(--mq-gold);
  color: #fff;
  transform: scale(1.1);
}

.mq-timeline-item h6 {
  font-weight: 700;
  font-size: 15.5px;
  margin-bottom: 6px;
  color: var(--mq-text);
}

.mq-timeline-item p {
  color: var(--mq-muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .mq-page-header-title {
    font-size: 26px;
  }
}

/*--------------------------------------------------------------
# Contact page
--------------------------------------------------------------*/
.mq-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.mq-contact-info-item .mq-mini-icon {
  width: 46px;
  height: 46px;
  font-size: 17px;
  flex-shrink: 0;
  margin-bottom: 0;
}

.mq-contact-info-item h6 {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 4px;
  color: var(--mq-text);
}

.mq-contact-info-item p {
  color: var(--mq-muted);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}

.mq-contact-info-item a {
  color: var(--mq-muted);
}

.mq-contact-info-item a:hover {
  color: var(--mq-green);
}

.mq-contact-form-card {
  background: #fff;
  border: 1px solid var(--mq-border);
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(20, 83, 45, .08);
}

.mq-form-label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--mq-text);
  margin-bottom: 6px;
}

.mq-form-control {
  width: 100%;
  border: 1px solid var(--mq-border);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--mq-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mq-form-control:focus {
  outline: none;
  border-color: var(--mq-green);
  box-shadow: 0 0 0 3px rgba(20, 83, 45, .12);
}

.mq-form-alert {
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  margin-bottom: 18px;
}

.mq-form-alert-success {
  background: var(--mq-green-light);
  color: var(--mq-green);
  border: 1px solid rgba(20, 83, 45, .2);
}

.mq-form-alert-error {
  background: #fdecec;
  color: #b3261e;
  border: 1px solid rgba(179, 38, 30, .2);
}

.mq-map-wrap {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(20, 83, 45, .1);
}

/*--------------------------------------------------------------
# Legal content (Privacy Policy / Terms & Conditions)
--------------------------------------------------------------*/
.mq-legal-content h3 {
  color: var(--mq-green);
  font-weight: 800;
  font-size: 20px;
  margin-top: 36px;
  margin-bottom: 14px;
}

.mq-legal-content h3:first-of-type {
  margin-top: 0;
}

.mq-legal-content h4 {
  color: var(--mq-text);
  font-weight: 700;
  font-size: 15.5px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.mq-legal-content p {
  color: var(--mq-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.mq-legal-content ul {
  color: var(--mq-muted);
  font-size: 14.5px;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 14px;
}

.mq-legal-content ul li {
  margin-bottom: 6px;
}

.mq-legal-content strong {
  color: var(--mq-text);
}

.mq-legal-content a {
  color: var(--mq-green);
  font-weight: 600;
}

.mq-legal-content a:hover {
  color: var(--mq-gold);
}

/*--------------------------------------------------------------
# Success modal
--------------------------------------------------------------*/
.mq-success-modal {
  border: none;
  border-radius: 18px;
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
}

.mq-success-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--mq-cream);
  color: var(--mq-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background-color .2s ease, color .2s ease;
}

.mq-success-modal-close:hover {
  background: var(--mq-border);
  color: var(--mq-text);
}

.mq-success-modal-btn {
  min-width: 160px;
  justify-content: center;
}

.mq-success-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mq-green-light);
  color: var(--mq-green);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.mq-success-modal h4 {
  font-weight: 800;
  color: var(--mq-green);
  margin-bottom: 10px;
}

.mq-success-modal p {
  color: var(--mq-muted);
  font-size: 14px;
  margin-bottom: 22px;
}

/*--------------------------------------------------------------
# Product detail modal
--------------------------------------------------------------*/
.mq-product-modal {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.mq-product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, .92);
}

.mq-product-modal-img {
  height: 260px;
  overflow: hidden;
}

.mq-service-modal-header {
  padding: 40px 34px 30px;
  background: linear-gradient(135deg, var(--mq-green) 0%, var(--mq-green-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.mq-service-modal-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--mq-gold-light);
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.mq-service-modal-header .mq-eyebrow-light {
  margin-bottom: 8px;
}

.mq-service-modal-header h4 {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin: 0;
  max-width: 100%;
}

.mq-service-modal-body {
  padding-top: 26px;
}

.mq-product-modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mq-product-modal-body {
  padding: 30px 34px 34px;
}

.mq-product-modal-body h4 {
  color: var(--mq-green);
  font-weight: 800;
  font-size: 24px;
  margin: 6px 0 14px;
}

.mq-product-modal-body p {
  color: var(--mq-muted);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 22px;
}

/*--------------------------------------------------------------
# Global enquiry modal
--------------------------------------------------------------*/
.mq-nav-enquiry-btn {
  padding: 9px 18px;
  font-size: 13px;
}

.mq-enquiry-modal {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.mq-enquiry-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
}

.mq-enquiry-modal-header {
  background: var(--mq-green);
  padding: 18px 44px 18px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.mq-enquiry-modal-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: var(--mq-gold-light);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mq-enquiry-modal-header h4 {
  color: #fff;
  font-weight: 800;
  font-size: 16.5px;
  margin: 0 0 2px;
}

.mq-enquiry-modal-header p {
  color: #d9e6db;
  font-size: 12.5px;
  margin: 0;
}

.mq-enquiry-modal-body {
  padding: 22px 28px 28px;
}

select.mq-form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 34px;
}

.mq-captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mq-captcha-img {
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--mq-border);
  border-radius: 8px;
  background: #f5f5f5;
}

.mq-captcha-refresh {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--mq-border);
  background: #fff;
  color: var(--mq-green);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background-color .2s ease, color .2s ease;
}

.mq-captcha-box .mq-captcha-input {
  flex: 1 1 140px;
  min-width: 0;
  margin: 0;
}

.mq-captcha-refresh:hover {
  background: var(--mq-green);
  color: #fff;
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Trade capabilities (Global Trade page)
--------------------------------------------------------------*/
.mq-capability-item {
  text-align: center;
}

.mq-capability-item h6 {
  font-weight: 700;
  font-size: 14.5px;
  margin-bottom: 6px;
  color: var(--mq-text);
}

.mq-capability-item p {
  color: var(--mq-muted);
  font-size: 12.5px;
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Responsive — tablet & phone refinements
--------------------------------------------------------------*/
@media (max-width: 991px) {
  section {
    padding: 50px 0;
  }

  .mq-section-title {
    font-size: 27px;
  }

  .mq-page-header {
    padding: 44px 0;
  }

  .mq-cta-bar-left {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .mq-contact-form-card {
    padding: 26px 22px;
  }

  .mq-timeline {
    padding-left: 38px;
  }

  .mq-timeline-icon {
    left: -38px;
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  section {
    padding: 40px 0;
  }

  .mq-section-title {
    font-size: 24px;
  }

  .mq-section-lead {
    font-size: 14px;
  }

  .mq-hero {
    padding: 40px 0;
  }

  .mq-hero-title {
    font-size: 26px;
  }

  .mq-hero-text {
    font-size: 13.5px;
  }

  .mq-service-card,
  .mq-cat-card .mq-cat-body {
    padding: 22px 18px;
  }

  .mq-cta-bar {
    padding: 20px 0;
  }

  .mq-cta-bar-stats {
    gap: 20px;
  }

  .mq-footer {
    padding-top: 30px;
  }

  .mq-whatsapp-btn {
    width: 44px;
    height: 44px;
    font-size: 22px;
    right: 16px;
    bottom: 70px;
  }

  #topBtn3 {
    width: 38px;
    height: 38px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 575px) {
  .mq-hero-title {
    font-size: 22px;
  }

  .mq-eyebrow {
    font-size: 12px;
  }

  .mq-page-header-title {
    font-size: 22px;
  }

  .mq-btn-primary,
  .mq-btn-gold,
  .mq-btn-outline {
    width: 100%;
    justify-content: center;
  }

  .mq-hero-btns {
    width: 100%;
  }

  .mq-hero-btns a {
    flex: 1 1 auto;
  }

  .mq-topbar-right {
    display: none;
  }

  .mq-logo img {
    height: 36px;
  }

  .mq-logo span {
    font-size: 16px;
  }

  .mq-captcha-box {
    justify-content: center;
  }

  .mq-captcha-box .mq-captcha-input {
    flex-basis: 100%;
  }

  .mq-cta-bar-stats {
    justify-content: center;
    text-align: center;
  }
}
