/* General Styling */
.products-row {
    padding: 40px 0;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-cont {
    padding: 20px;
}

.about-cont ul {
    padding-left: 20px;
}

.about-cont ul li {
    margin-bottom: 10px;
}

a.btn.btn-primary {
    background-color: #b01920;
    border-color: #00000000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-cont {
        text-align: center;
    }

    .about-cont ul {
        padding-left: 10px;
    }

    .about-cont ul li {
        font-size: 14px;
    }
}







/* General Styles */
.all-services-section {
    padding: 60px 20px;
    /*background-color: #f9f9f9;*/
  }
  
  .section-title h3 {
    font-size: 1.5rem;
    color: #555;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .section-title h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
  }
  
  .section-title p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  
  .services-grids {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .grid {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .img-overlay {
    position: relative;
    overflow: hidden;
  }
  
  .img-overlay img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }
  
  .img-overlay:hover img {
    transform: scale(1.1);
  }
  
  .img-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .img-overlay:hover .overlay {
    opacity: 1;
  }
  
  .img-overlay .overlay a {
    color: #fff;
    font-size: 1.5rem;
  }
  
  .details {
    padding: 20px;
    text-align: center;
  }
  
  .details h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .details p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .details .read-more a {
    font-size: 0.9rem;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .details .read-more a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .services-grids {
      flex-direction: column;
      align-items: center;
    }
  
    .grid {
      max-width: 100%;
    }
  }