.plist-hero{
    height: 450px;
    padding-top: 4%;
    flex-direction: column;
    align-items: center;
}
.plist-hero-text{
    max-width:900px;
}

.soluc-footer {
  margin: 50px auto;
}
.soluc-button {
  display: inline-block;
  height: 50px;
  padding: 10px 40px;
  background-color: #7b0903;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  box-sizing: border-box;
  line-height: 30px;
  font-size:16px;
  transition: background 0.3s;
  border-radius: 5px;
}


.soluc-button:hover {
    background: #5d0702;
}




.solution-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 1480px;
}
.solution-card {
    display: flex;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    position: relative;
    margin-top: 90px;
}
.solution-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.solution-card:hover .solution-title{
    color:#7b0903;
}

.solution-card:hover .solution-button{
    background:#7b0903;
}

.solution-image {
    width: 33%;
}
.solution-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-top: -50px;
    border-radius: 10px;
    padding-bottom:25px;
    margin-left:5%;
}
.solution-content {
    flex: 1;
    padding: 20px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.solution-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color:#5d5d5d;
}
.solution-details {
    font-size: 16px;
    color: #5d5d5d;
    margin-bottom: 5px;
    line-height: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
        
    
}
.solution-icon {
    color: #7b0903;
    margin-right: 5px;
    font-size:15px;
}
.solution-button {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #bfbfbf;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    padding: 10px 20px;
    border-top-left-radius: 30px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius:0px;
}


@media(min-width: 769px) and (max-width: 1200px) {
.solution-image img{
    margin-top:27px;
}

 .solution-title{
        font-size:22px;
    }
    .solution-details{
        font-size:19px;
        line-height: 28px;
    }
    
     .plist-hero {
        height: 420px;
        padding: 18% 30px 50px;
    }


}

@media (max-width: 768px) {
    .solution-card {
        flex-direction: column;
    }
    .solution-image {
        width: 100%;
    }
     .solution-image img{
        width: 90%;
    }
    .solution-title{
        font-size:21px;
    }
    .solution-details{
        font-size:18px;
        line-height: 28px;
    }
    
    .plist-hero {
        height: 350px;
        padding: 14% 30px 50px;
    }
    .plist-hero h1{
        font-size:22px;
    }
    .soluc-footer{
        margin:21px auto;
    }
    .soluc-button{
        padding:10px 21px;
        font-size:14px;
    }
    
    
}



