/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7fb;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 50px;
  /* padding: 0 20px; */
}

.browse {
  text-align: center;
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 400px);
  /* 6 equal columns */
  gap: 20px;
  width: 90%;
  /* Controls total width */
  max-width: 1200px;
  /* Optional limit */
  justify-items: center;
}

.grid-index {
  display: grid;
  grid-template-columns: repeat(4, 400px);
  /* 6 equal columns */
  gap: 12px;
  width: 90%;
  /* Controls total width */
  max-width: 1200px;
  /* Optional limit */
  justify-items: center;
}


/* Card Styles */
.card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  width: 390px;
  height: 330px;
}

.card .card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.card .card-name {
  height: 42px;
}

.card .card-name p {
  padding: 5px 5px;
  font-size: 20px;
  color: black;
  font-weight: 500;
  color: black;
  /* background-color:blue; */
}

.card .Contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  background-color: #EEFBFE;
  height: 38px;
}

.card .Contact button.call
{
  font-size: 20px;
  color:blue ;
  border: none;
  background: transparent;
  cursor: pointer;
}
.card .Contact button.whatsapp
{
  font-size: 20px;
  color: green;
  border: none;
  background: transparent;
  cursor: pointer;
}

/* Hover Effect */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

