h3 {
font-family: 'Boogaloo', cursive, sans-serif; flex:1; text-align: center; color:#002e59; font-size: 20px;
}

h2 {
width:100%; font-size: 32px; color:#002e59; text-align: center; margin: 0px;
}

.hover-glow {
  width: 100%;
  height: 60vh;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-glow:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(0, 46, 89, 0.3);
}

.products-section {
    min-height: 90vh;
    padding-bottom: 60px;
    background: #fff6ed;
    font-family: 'Nunito', sans-serif;
  }

.products-heading {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    font-size: 40px;
    color: #002e59;
    text-decoration: underline;
  }

.products-flex {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

.product-card {
    flex: 1 1 400px;
    max-width: 650px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease;
  }

.product-card:hover {
    transform: translateY(-5px);
  }

.product-card h2 {
    color: #002e59;
    margin-bottom: 8px;
  }

.product-card h3 {
    font-weight: normal;
    margin-bottom: 16px;
  }

.product-image {
  width: 100%;
  display: block;
  max-height: none; 
  object-fit: cover;
  border-radius: 0;
  margin: 0;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-image:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 46, 89, 0.2);
  }

.product-button {
    background-color: #f1255e;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
  }

  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 768px) {
    .products-flex {
      flex-direction: column;
      align-items: center;
    }
  }
  