/*-- Use For Custom Styling --*/

/* Uniform product card grid for Our Products section */
.products-sec .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.products-sec .col-lg-4 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 32px;
}
.products-sec .news-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 420px;
    min-width: 0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 24px 16px 16px 16px;
    width: 100%;
    transition: box-shadow 0.2s;
}
.products-sec .news-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}
.products-sec .news-img {
    width: 100%;
    max-width: 100%;
    max-height: 180px;
    min-height: 120px;
    object-fit: contain;
    margin-bottom: 18px;
    background: #f8f8f8;
    border-radius: 10px;
    display: block;
}
.products-sec .news-text-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1 1 auto;
    width: 100%;
}
.products-sec .news-title {
    margin-top: 12px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a2340;
    text-align: center;
}
.products-sec .btn {
    margin-top: auto;
}
@media (max-width: 991px) {
    .products-sec .news-item {
        height: 380px;
    }
}
@media (max-width: 767px) {
    .products-sec .row {
        flex-direction: column;
        align-items: center;
    }
    .products-sec .col-lg-4 {
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    .products-sec .news-item {
        height: auto;
        min-height: 320px;
    }
}

.contact_btn[disabled] {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}