.container_a{
    text-align: center;
   background: linear-gradient(95deg, #000000, #2f5d3a);
    color: aliceblue;
}

.imgs{
    height: 300px;
    width:300px;
   
    
}

.para{
    height: 120px;
    width: 300px;
    text-align: center;
    background-color: bisque;
}

.container1{
    width: 33.33%;
    text-align: center; 
      
    box-shadow:rgb(0, 0, 0);
}


/* Base product card */
.product-card {
    width: 300px;
    
    
    background: #ffffff;
    text-align: center;
    transition: all 0.4s ease;
    
}

/* Premium Version */
.premium {
    background: linear-gradient(145deg, #fdfdfd, #f3f3f3);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.12),
        0 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

/* Premium Glow Border Effect */
.premium::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2e7d32, #66bb6a, #2e7d32);
    z-index: -1;
    
    opacity: 0.6;
}

/* Image Styling */
.premium img {
    width: 100%;
    
    transition: transform 0.4s ease;
}

/* Hover Effects */
.premium:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.18),
        0 10px 20px rgba(0, 0, 0, 0.12);
}

.premium:hover img {
    transform: scale(1.05);
}

/* Title */
.premium h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 600;
    color: #1b5e20;
}

/* Description */
.premium p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-top: 10px;
}


.mobile-buttons {
  display: flex;
  justify-content: center;   /* center horizontally */
  gap: 12px;                 /* space between buttons */

  margin: 20px 0;            /* space above footer */
}
.mobile-btn {
  display: flex;
  align-items: center;
  justify-content: center;
background-color: black;
  padding: 12px 18px;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;

  min-width: 130px;
}
.mobile-btn:last-child {
  background: #1b5e20;
}
.contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #1f7a3a, #145c2a);
  color: white;
  padding: 12px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.contact-btn:hover {
  transform: scale(1.05);
}

.product-btn {
  background-image: url('/logopic.webp'); /* adjust path if needed */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 6px;
}

.contact-btn {
  background: linear-gradient(135deg, #1f7a3a, #145c2a);
  color: white;
}

.product-btn {
  background-image: url('/logopic.webp');
  background-size: cover;
  background-position: center;
  color: white;
}