/* ===== MD INTERNATIONAL PRODUCT CARD ===== */

.mdi-product-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  transition: all 0.35s ease;
}

.mdi-product-card:hover {
  transform: translateY(-6px);
  border-color: #cfd4dc;
}

/* Image */
.mdi-img-wrap {
  display: block;
  background: #f7f7f7;
  /* padding: 20px; */
}

.mdi-img-wrap img {
  width: 100%;
  /* height: 220px; */
  object-fit: contain;
  transition: transform 0.4s ease;
}

.mdi-product-card:hover img {
  transform: scale(1.06);
}

/* Content */
.mdi-card-body {
  padding: 18px 16px 22px;
  text-align: center;
}

.mdi-category {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.mdi-title {
  font-size: 16px;
  font-weight: 600;
  margin: 6px 0 14px;
  line-height: 1.4;
}

.mdi-title a {
  color: #111827;
  text-decoration: none;
}

.mdi-title a:hover {
  color: #0f766e;
}

/* WhatsApp Button */
.mdi-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #25D366;
  color: #25D366;
  transition: all 0.3s ease;
}

.mdi-wa-btn:hover {
  background: #25D366;
  color: #fff;
}

/* Responsive */
@media (max-width: 576px) { 
 .mdi-title {
    font-size: 15px;
  }
}
  .mgn-b{
  margin-bottom: 20px;
}
 /* ===== MD Decor Certification Section ===== */
.md-certification-section {
    padding: 70px 0;
    background-color: #f9fafb6b;
}

.md-cert-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.md-cert-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.md-cert-image {
    flex: 0 0 40%;
    text-align: center;
}

.md-cert-image img {
    max-width: 100%;
    height: auto;
    max-height: 420px; /* A4 proportional */
    border: 1px solid #e5e7eb;
    padding: 10px;
    background: #fff;
}

.md-cert-content {
    flex: 0 0 60%;
}

.md-cert-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.md-cert-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.md-cert-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .md-cert-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .md-cert-image,
    .md-cert-content {
        flex: 0 0 100%;
    }

    .md-cert-image img {
        max-height: 360px;
    }
}