/* fire products section coding */

.image-container {
    position: relative;
    display: inline-block;
    text-align: center;
    width:100%;
    height:100%;
    /* background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent); */
    /* background-image: linear-gradient(to right, red , yellow); */
  }

  .image-container img {
    display: block;
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    background-size: cover;
    border-radius: 16px;
    background-position: center;
    background-image: linear-gradient(to right, red , yellow);

}

  .overlay-text {
    position: absolute;
    top: 50%; /* Adjust this to position the text vertically */
    left: 50%; /* Adjust this to position the text horizontally */
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2.6rem;
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: background for better contrast */
    padding: 10px 20px;
    border-radius: 16px;
    
  }

    .overlay-text a{
    text-decoration: none;
    font-size: 1.2rem;
    color:#fff;
    font-weight: 500;
    transition: all 0.5s;
    }

  .overlay-text button{
    padding:8px 20px;
    border-radius: 16px;
    border: none;
    background-color: #2563EB;
    cursor: pointer;
    transition: all 0.5s;
    /* margin-top: 10px; */
    /* color: #fff; */
    /* font-size: 1.2rem; */
  }

    .overlay-text button:hover{
    background-color: #2148A2;
    }