.our-products-banner7 {
  background: url('https://i.diplomaframe.com/chc-blog/wp-content/uploads/2023/06/how-to-frame-a-diploma-main.jpg') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

}
.our-products-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  margin: 20px;
  text-align: center;
  border-radius: 15px;
}

.our-products-title {
  font-size: 3rem;
  color: #f1c40f;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
  margin-bottom: 20px;
  font-weight: 700;
}

.our-products-subtitle {
  font-size: 1.2rem;
  color: #ecf0f1;
  margin-bottom: 30px;
}

.our-products-btn {
  padding: 12px 30px;
  background-color: #f1c40f;
  color: #2c3e50;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.our-products-btn:hover {
  background-color: #d4ac0d;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .our-products-title {
    font-size: 1.5rem;
  }
  .our-products-subtitle {
    font-size: 1rem;
  }
  .our-products-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
/* ============================================ */
/* ---------------------------------------------
   🌲 Wooden Certificate Section Base Styles
--------------------------------------------- */
.wooden-certificate-section {
  background-color: white;
  padding: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

/* -------------------------
   🔠 Section Header Text
------------------------- */
.wooden-certificate-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.wooden-certificate-section .section-subtitle {
  font-size: 16px;
  color: #7a5c3d;
  font-weight: 600;
  text-transform: uppercase;
}

.wooden-certificate-section .section-title {
  font-size: 32px;
  color: #4b2e1e;
  font-weight: bold;
  margin: 10px 0;
}

.wooden-certificate-section .section-description {
  color: #0a0a0a;
  max-width: 700px;
  margin: auto;
  font-size: 16px;
}

/* ---------------------------------
   🪵 Certificate Grid Layout
--------------------------------- */
.wooden-certificate-section .trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* -------------------------------
   🏆 Individual Certificate Card
------------------------------- */
.wooden-certificate-section .trophy-card {
  background-color:#e4dfdf;
  border: 1px solid #e6dccb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.wooden-certificate-section .trophy-card:hover {
    transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(101, 56, 30, 0.15);
}

/* -------------------------------
   🖼️ Certificate Image Section
------------------------------- */
.wooden-certificate-section .trophy-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* ✅ Keeps the image square on all screens */
  overflow: hidden;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wooden-certificate-section .trophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* .wooden-certificate-section .trophy-card:hover .trophy-img {
  transform: scale(1.05);
} */

/* 🌓 Dark Overlay on Image */
.wooden-certificate-section .image-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;

}

/* -------------------------------
   📄 Certificate Text Content
------------------------------- */
.wooden-certificate-section .trophy-content {
  padding: 20px;
  text-align: center;
}

.wooden-certificate-section .trophy-title {
  font-size: 18px;
  font-weight: 700;
  color: #3e2a1c;
  margin-bottom: 8px;
}

.wooden-certificate-section .trophy-description {
  font-size: 14px;
  color: #6d5743;
  margin-bottom: 12px;
}

/* 🔖 Features Badges */
.wooden-certificate-section .trophy-features {
  margin-bottom: 12px;
}

.wooden-certificate-section .feature-badge {
  display: inline-block;
  background-color: #c3a98b;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  margin: 3px;
  font-weight: 600;
}

/* 🛒 Order Now Button */
.wooden-certificate-section .trophy-button {
background: linear-gradient(to right, #a56f48, #e0a96f);
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.wooden-certificate-section .trophy-button:hover {
  background: linear-gradient(to right,  #e0a96f,#a56f48);
}

/* -----------------------------------------
   📱 Responsive Design - Mobile & Tablet
----------------------------------------- */
@media (max-width: 991px) {
  .wooden-certificate-section .section-title {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .wooden-certificate-section {
    padding: 50px 15px;
  }

  .wooden-certificate-section .section-title {
    font-size: 24px;
  }

  .wooden-certificate-section .section-description {
    font-size: 14px;
  }

  .wooden-certificate-section .trophy-title {
    font-size: 16px;
  }

  .wooden-certificate-section .trophy-description {
    font-size: 13px;
  }

  .wooden-certificate-section .feature-badge {
    font-size: 11px;
    padding: 4px 8px;
  }

  .wooden-certificate-section .trophy-button {
    font-size: 14px;
    padding: 8px 16px;
  }
}
