.our-products-banner5 {
  background: url('https://t3.ftcdn.net/jpg/15/22/68/56/360_F_1522685606_qnXRRmFHoHi0TuXWW0IlaAy7sWhobu1P.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;
  }
}
/* ========================================================== */
/* Section Wrapper */
.trophy-product-section {
  padding: 20px 20px;
  background-color: #f4f7fc;
  font-family: 'Segoe UI', sans-serif;
}

.trophy-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.trophy-header {
  text-align: center;
  margin-bottom: 50px;
}

.trophy-subtitle {
  font-size: 1rem;
  color: #b8860b;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 600;
}

.trophy-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.trophy-description {
  font-size: 1.1rem;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

/* Grid Layout */
.trophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card */
.trophy-card {
  background: #e4dfdf;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e3eaf4;
}

.trophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(184, 134, 11, 0.15);
}

/* Image */
.trophy-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; /* Makes it square automatically */
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trophy-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* .trophy-card:hover .trophy-img-wrapper img {
  transform: scale(1.05);
} */

/* Card Content */
.trophy-card-body {
  padding: 20px;
  text-align: center;
}

.trophy-card-body h3 {
  font-size: 1.2rem;
  color: #000000;
  font-weight: 600;
  margin-bottom: 8px;
}

.trophy-card-body p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 12px;
}

/* Tags */
.trophy-tags {
  margin-bottom: 15px;
}

.trophy-tags span {
  display: inline-block;
  background: #fdf5e6;
  color: #b8860b;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 30px;
  margin-right: 8px;
  margin-bottom: 6px;
  text-transform: capitalize;
  font-weight: 500;
}

/* Button */
.trophy-card-body button {
background: linear-gradient(to right, #a56f48, #e0a96f);
  color: #222;
  border: none;
  padding: 10px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trophy-card-body button:hover {
background: linear-gradient(to right, #e0a96f, #a56f48);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .trophy-title {
    font-size: 2rem;
  }

  .trophy-description {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .trophy-title {
    font-size: 1.7rem;
  }

  .trophy-description {
    font-size: 0.95rem;
  }

  .trophy-card-body {
    padding: 15px;
  }

  .trophy-card-body button {
    padding: 8px 14px;
    font-size: 0.9rem;
  }

  .trophy-tags span {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

