* {
    font-family: 
    Arial,
    Helvetica,
    sans-serif,
    Arial,
    Helvetica,
    sans-serif,
    
  }
  




  /* card */

  .product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.overlay .content {
    text-align: center;
    color: white;
    padding: 20px;
}

.product-card:hover .overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .product-card img {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .product-card img {
        height: 200px;
    }
    
    .overlay .content h3 {
        font-size: 1.2rem;
    }
    
    .overlay .content p {
        font-size: 0.9rem;
    }
}

/* card */


/* start aboutus */
.about-section {
  background-color: #fff;
  margin-top: 10px;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content h2 {
  font-weight: 600;
  letter-spacing: 1px;
  font-family:  "Oswald", serif;;
}

.about-content .us {
   color: green;
}

.about-content h6 {
  font-weight: 700;
  line-height: 1.3;
  font-family:  "Oswald", serif;;
}

.about-content p {
  color: #666;
  line-height: 1.7;
}

.btn-outline-dark {
  padding: 12px 30px;
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-outline-dark:hover {
  background: #000;
  color: #fff;
}
/* end aboutus */