.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
   .company-card{
    display: flex;
    flex-direction: column;
}
.related-products{
    order: -1;   /* slider upar aa jaega */
    margin-bottom: 7px;
}
.company-card-inner{
    order: 2;
} 

 .company-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    width: 100%;
    padding: 10px 20px;
    border: 1px solid #e3e3e3;
} 
    
  .company-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

/* .company-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
} */
.company-row {
    display: flex;
    gap: 10px;
    padding-bottom: 10px;
    align-items: center;
justify-content: space-between;
}


 .company-category-text {
    background: #000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
z-index:1;
}   
.company-image {
    position: relative;
    min-height: 100%;
/*     overflow: hidden; */
    display: flex;
    align-items: center;
    padding: 0px;
   max-width: 28%;
height: 57px !important;
    width: 100%;
    text-decoration: none !important;
    color: inherit;
}

.company-image img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    transition: transform 0.3s ease;
}
 .product-thumb img {
   
    width:100% !important;
    max-height: 150px;
    height:150px;
    object-fit: contain;
    padding:0px;
}
.product-list {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.slick-slider
 {
    margin-bottom: 0px !important;
}
.product-item.slick-slide {
    text-align: center !important;
}
.company-details {
    padding: 20px;
    width: 60%;
}
    
    .company-card:hover .company-image img {
        transform: scale(1.05);
    }

   .company-details {
    padding: 0px !important;
    width: 100% !important;
}
.company-address {
	display:flex !important;
	align-items: flex-start !important;
	font-size: 12px !important;
}
    .company-title {
        margin: 0 0 15px 0;
        font-size: 18px;
        font-weight: 600;
    }
    
    .company-title a {
        color: #333;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .company-title a:hover {
        color: #ff6b35;
    }
    
    .company-website,
    .company-address {
        display: flex;
        align-items: center;
        margin: 10px 0;
        font-size: 14px;
        color: #666;
    }
    
    .company-icon {
        margin-right: 8px;
        font-size: 16px;
    }
    
    .company-website a {
        color: #0066cc;
        text-decoration: none;
    }
    
    .company-website a:hover {
        text-decoration: underline;
    }
    
    .company-actions {
        display: flex;
        gap: 10px;
        margin-top: 20px;
    }

.product-title {
    padding-top: 10px;
    line-height: 15px !important;
    font-size: 12px !important;
    color: #000;
    display: flex;
    justify-content: center;
}
    .btn {
        padding: 10px 16px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.3s ease;
        text-align: center;
        flex: 1;
        border: none;
        cursor: pointer;
    }
    
    .btn-inquiry {
        background: #005b2f;
        color: white;
    }
    
    .btn-inquiry:hover {
        background: #f59c0b;
		color:#fff !important;
        transform: translateY(-2px);
    }
    
    .btn-call {
        background: #f59c0b;
        color: white;
    }
    
    .btn-call:hover {
        background:#005b2f;
		color:#fff !important;
        transform: translateY(-2px);
    }
    
    .load-more-container {
        text-align: center;
        margin-top: 30px;
    }
    
    .load-more-btn {
        background: #f59c0b;
        color: white;
        padding: 12px 30px;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .load-more-btn:hover {
        background: #005b2f;
        transform: translateY(-2px);
    }
    
    .load-more-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
    } 
    
    /* Responsive Design */
   @media (max-width: 1024px) {
	 .company-category-text {
       z-index: 1;
       width: 50%;
      }
	   .company-image img {
      width: 100%;
      height: 100% !important;
      object-fit: contain;
      transition: transform 0.3s ease;
      padding: 0px 0px 0px 0px !important;
     }
    .company-category-text {
       background: #000;
       color: white;
       padding: 5px 12px;
       border-radius: 20px;
       font-size: 12px;
       font-weight: 600;
       z-index:1;
		text-align: center;
		width:60%;
     }   
	   .company-image {
       position: relative;
       min-height: 150px !important;
       overflow: hidden;
        display: flex;
       justify-content: flex-end;
       align-items: center;
       padding: 10px;
       max-width: 100%;
       width: 40%;
       text-decoration: none !important;
       color: inherit;
      }
    }


    @media (max-width: 768px) {
        .company-grid {
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
        }
        
        .company-actions {
            flex-direction: column;
        }
        
        .company-details {
            padding: 15px;
        }
		.company-image img {
             width: 80% !important;
             height: 100% !important;
             object-fit: contain;
             transition: transform 0.3s ease;
         }
		.company-row {
    
             flex-direction: column;
        }
		.company-image {
			 min-height: 150px !important;
            justify-content: center;
       }
		.company-card {

            padding: 20px 20px;
   
        }
}
    
    @media (max-width: 480px) {
        .company-grid {
            grid-template-columns: 1fr;
        }
    }