* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

body{
  background: #edf2f8;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 27px;
  max-width: 1100;
  padding: 32px;
}

.card {
  padding: 27px;
  border-radius: 17px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  

}

.user img{
  width: 42px;
  border-radius: 50%;
  margin-right: 10px;
}

.user p{
  font-size: 15px;
  opacity:0.7;

}

.card h3{
  margin-bottom: 10px;
  font-size: 17px;
  font-weight: 650;

}
.quote{
  font-size: 15px;
  opacity: 0.6;

}

.card1{
  background-color: maroon;
  color: white;
  grid-column: 1/3;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 27px;
  border-radius: 17px;
}


.card1:hover{
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px 5px teal, 0 15px 30px rgba(0,0,0,0.2);
  background-color: teal
}
.card1::before {
  content: "";
  position: absolute;
  top: 21px;
  right: 21px;
  width: 92px;
  height: 92px;
  background: url('bg-pattern-quotation.svg') no-repeat center;
  background-size: contain;
  filter: brightness(0) invert(1);
  opacity: 0.2;

}

.card2 {
  background: silver;
  color: white;
  padding: 27px;
  transition: all 0.3s ease;
  border-radius: 17px;
}


.card2:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px 5px goldenrod, 0 15px 30px rgba(0,0,0,0.2);
  background-color: goldenrod
}

.card3 {
  background: silver;
  color: white;
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  padding: 27px;
  transition: all 0.3s ease;
  border-radius: 17px;
}


.card3:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px 5px goldenrod, 0 15px 30px rgba(0,0,0,0.2);
  background-color: goldenrod
}

.card4 {
  background: silver;
  color: white;
  padding: 27px;
  transition: all 0.3s ease;
  border-radius: 17px;
}



.card4:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px 5px goldenrod, 0 15px 30px rgba(0,0,0,0.2);
  background-color: goldenrod
}

.card5 {
  background: goldenrod;
  color: white;
  grid-column: 2 / 4;
  padding: 27px;
  transition: all 0.3s ease;
  border-radius: 17px;
}

.card5:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  box-shadow: 0 0 20px 5px purple, 0 15px 30px rgba(0,0,0,0.2);
  background-color:   Purple;
}



