/*--------------------------------------------------------------
# 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;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--mq-text);
  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;
}

.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: 6px 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  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: none;
}

.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 {
  background: #fff;
  border: 1px solid var(--mq-border);
  border-radius: 16px;
  padding: 30px 26px;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

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

/*--------------------------------------------------------------
# Product categories
--------------------------------------------------------------*/
.mq-cat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--mq-border);
  border-radius: 14px;
  text-align: left;
  height: 100%;
  overflow: hidden;
  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;
}

.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-card .mq-cat-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mq-gold);
  color: #fff;
  transition: transform .3s ease, background-color .3s ease;
}

.mq-cat-card:hover .mq-cat-arrow {
  background: var(--mq-green);
  transform: translateX(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;
}

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

.mq-global2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  transition: transform .4s ease;
}

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

.mq-global2-card {
  flex: 1;
  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-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-photo {
    height: 260px;
  }
}

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

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

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

/*--------------------------------------------------------------
# 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;
}

/*--------------------------------------------------------------
# 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;
}
