/* banner  */
.our-products-banner2 {
  background: url('https://thumb.photo-ac.com/80/80848644353aff89ea2da5ad2de0e09f_t.jpeg') 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;
  }
}

/* ================================ */
  .acrylic-trophy-section {
  padding: 20px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', sans-serif;
}

.acrylic-container {
  max-width: 1200px;
  margin: auto;
}

.acrylic-header {
  text-align: center;
  margin-bottom: 40px;
}

.acrylic-subtitle {
  color: #473391;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.acrylic-title {
  font-size: 2.5rem;
  margin: 10px 0;
  color: #222;
}

.acrylic-description {
  color: #555;
  font-size: 1rem;
  max-width: 700px;
  margin: auto;
}

.acrylic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.acrylic-card {
  background: #e4dfdf;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  transition: 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
}

.acrylic-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.acrylic-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1; /* Makes it square automatically */
  overflow: hidden;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acrylic-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}


/* .acrylic-card:hover img {
  transform: scale(1.05);
} */

.acrylic-card-body {
  padding: 20px;
  text-align: center;
}

.acrylic-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #000000;
}

.acrylic-card-body p {
  font-size: 0.95rem;
  color: #666;
}

.acrylic-tags {
  margin: 15px 0;
}

.acrylic-tags span {
  display: inline-block;
  background: #473391;
  color: #fff;
  font-size: 0.75rem;
  padding: 5px 10px;
  border-radius: 50px;
  margin: 0 5px;
}

.acrylic-card-body button {
background: linear-gradient(to right, #a56f48, #e0a96f);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  color: #222;
  transition: background 0.3s ease;
}

.acrylic-card-body button:hover {
background: linear-gradient(to right,#e0a96f, #a56f48);
  color: #fff;
}