.our-products-banner3 {
  background: url('https://trophyhousepune.com/img/slider/best-trophy-shop-in-pune.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: yellow;
  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;
  }
}
/* ============================================================= */
/* METAL TROPHY SECTION */
.metal-trophy-section {
  padding: 20px 20px;
  background: linear-gradient(to bottom, #f8f9fb, #e5e7eb); /* metallic base */
  font-family: 'Segoe UI', sans-serif;
}

.metal-trophy-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.metal-trophy-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.metal-trophy-section .section-subtitle {
  font-size: 1rem;
  color: #B8860B; /* golden tone */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.metal-trophy-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 15px;
}

.metal-trophy-section .section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

/* GRID */
.metal-trophy-section .trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.metal-trophy-section .trophy-card {
  background: #e4dfdf;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.metal-trophy-section .trophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.metal-trophy-section .trophy-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* ✅ Keeps the image square on all screens */
  overflow: hidden;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metal-trophy-section .trophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* .metal-trophy-section .trophy-card:hover .trophy-img {
  transform: scale(1.05);
} */

.metal-trophy-section .image-overlay {
  display: none;
}

/* CONTENT */
.metal-trophy-section .trophy-content {
  padding: 20px;
  text-align: center;
}

.metal-trophy-section .trophy-title {
  font-size: 1.25rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

.metal-trophy-section .trophy-description {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 12px;
}

/* FEATURES / TAGS */
.metal-trophy-section .trophy-features {
  margin-bottom: 15px;
}

.metal-trophy-section .feature-badge {
  display: inline-block;
  background: #eee;
  color: #444;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 30px;
  margin-right: 8px;
  margin-bottom: 6px;
  text-transform: capitalize;
  font-weight: 500;
  border: 1px solid #ccc;
}

/* METAL COLOR VARIANTS (Optional Customization) */
.metal-trophy-section .feature-badge:nth-child(1) {
  background-color: #ffd700; /* gold */
  color: #222;
}
.metal-trophy-section .feature-badge:nth-child(2) {
  background-color: #c0c0c0; /* silver */
  color: #111;
}

/* BUTTON */
.metal-trophy-section .trophy-button {
background: linear-gradient(to right, #a56f48, #e0a96f);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.metal-trophy-section .trophy-button:hover {
background: linear-gradient(to right,  #e0a96f,#a56f48);
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
  .metal-trophy-section .section-title {
    font-size: 2rem;
  }
  .metal-trophy-section .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .metal-trophy-section .section-title {
    font-size: 1.7rem;
  }
  .metal-trophy-section .section-description {
    font-size: 0.95rem;
  }
  .metal-trophy-section .trophy-content {
    padding: 16px;
  }
  .metal-trophy-section .trophy-button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }
  .metal-trophy-section .feature-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}
