.our-products-banner4 {
  background: url('https://thumbs.dreamstime.com/b/gold-medal-first-place-number-one-award-winning-sports-championship-stadium-background-ribbons-symbol-victory-384904207.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;
  }
}
/* ====================================================== */
/* MEDALS SECTION */
.medals-section {
  padding: 20px 20px;
  background: linear-gradient(to bottom, #fffdf5, #f0f2f7); /* light shine background */
  font-family: 'Segoe UI', sans-serif;
}

.medals-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.medals-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.medals-section .section-subtitle {
  font-size: 1rem;
  color: #DAA520; /* goldenrod - award theme */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 10px;
}

.medals-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.medals-section .section-description {
  font-size: 1.1rem;
  color: #555;
  max-width: 720px;
  margin: 0 auto;
}

/* GRID */
.medals-section .trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* CARD */
.medals-section .trophy-card {
  background: #e4dfdf;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.medals-section .trophy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.medals-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;
}

.medals-section .trophy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* .medals-section .trophy-card:hover .trophy-img {
  transform: scale(1.05);
} */

.medals-section .image-overlay {
  display: none;
}

/* CONTENT */
.medals-section .trophy-content {
  padding: 20px;
  text-align: center;
}

.medals-section .trophy-title {
  font-size: 1.25rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

.medals-section .trophy-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 12px;
}

/* TAGS */
.medals-section .trophy-features {
  margin-bottom: 15px;
}

.medals-section .feature-badge {
  display: inline-block;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 30px;
  margin: 4px;
  font-weight: 500;
  text-transform: capitalize;
  color: #222;
  border: 1px solid #ccc;
}

/* MEDAL COLOR TAGS */
.medals-section .feature-badge:nth-child(1) {
  background: linear-gradient(to right, #ffd700, #fff6b0); /* gold */
}

.medals-section .feature-badge:nth-child(2) {
  background: linear-gradient(to right, #c0c0c0, #f0f0f0); /* silver */
}

.medals-section .feature-badge:contains('Bronze'),
.medals-section .feature-badge:nth-child(1)[data-color="bronze"] {
  background: linear-gradient(to right, #cd7f32, #f4e3d1); /* bronze */
}

/* BUTTON */
.medals-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;
}

.medals-section .trophy-button:hover {
background: linear-gradient(to right, #e0a96f, #a56f48);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .medals-section .section-title {
    font-size: 2rem;
  }

  .medals-section .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .medals-section .section-title {
    font-size: 1.7rem;
  }

  .medals-section .section-description {
    font-size: 0.95rem;
  }

  .medals-section .trophy-content {
    padding: 16px;
  }

  .medals-section .trophy-button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .medals-section .feature-badge {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}
