* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

.our-products {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5rem 1rem;
  background: #020e1e;
}

.our-products h1 {
  font-size: 3rem;
  color: #f1f1f1;
  margin-bottom: 25px;
  text-align: center;
}

.our-products h5 {
  color: #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.our-products h5 i {
  color: #f7ff00;
}

.ins-product-container {
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.single-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* margin: 0 5px; */
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.single-image {
  width: 100%;
  position: relative;
  text-align: center;
  background: #f4f7f8;
}

.single-card img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.single-card:hover .single-image img {
  transform: scale(1.05);
}

.single-card .single-image i {
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 5px;
  font-size: 16px;
  color: #f7ae04;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.04);
}

.single-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single-content h3 {
  color: #00131d;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single-content a {
  text-decoration: none;
  padding: 5px 10px;
  color: #1a2a3a;
  border: 1px solid #1a2a3a;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease-in;
}

.single-content:hover a {
  color: #f1f1f1;
  background: #1a2a3a;
}

