
  /* Featured Products Section */

.medical-products {

  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}


.section-header p {
  color: #3863a0;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.instrument-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.instrument-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #1c59a8;
  display: flex;
  flex-direction: column;
}

.instrument-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.instrument-image {
  height: 200px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.instrument-image img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.instrument-card:hover .instrument-image img {
  transform: scale(1.05);
}

.instrument-details {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.instrument-type {
  display: inline-block;
  background: #eff6ff;
  color: #1e40af;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.instrument-details h3 {
  font-size: 1.3rem;
  color: #1e293b;
  margin-bottom: 1rem;
  font-weight: 600;
}

.instrument-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.instrument-features li {
  color: #475569;
  font-size: 0.95rem;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.instrument-features li:before {
  content: "•";
  color: #1e40af;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.inquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #58a7c2;
  color: white;
  border: none;
  padding: 0.7rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.inquiry-btn:hover {
  background: #605759;
  transform: translateY(-2px);
}

.inquiry-btn i {
  font-size: 1rem;
}

/* Responsive */

        @media (max-width: 1350px) {
            .instrument-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

  .instrument-details h3 {
    font-size: 1rem
  }
  .instrument-image{
      height: 170px;
  }
  .inquiry-btn{
      font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .instrument-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1.5rem;
  }
  
  .instrument-image {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .instrument-grid {
    grid-template-columns: 1fr;
  }
}

