
.box {
    min-width: 300px;
    max-width: 300px;
    background-color: white; /* Default color */
    color: black;
    margin: 10px;
    padding: 40px;
    flex: 1 1 200px; /* Grow, shrink, basis */
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s, transform 0.2s;
	border-bottom: 5px solid red;
}

.box:hover {
    transform: scale(1.05);
}

/* Change color on hover */
.box1:hover { background-color: #c0392b; }
.box2:hover { background-color: #f39c12; }
.box3:hover { background-color: #27ae60; }
.box4:hover { background-color: #8e44ad; }
.box5:hover { background-color: #2c3e50; }
.box6:hover { background-color: #8e44ad; }

/* Initial colors */
.box1 { border-bottom: 5px solid #c0392b; }
.box2 { border-bottom: 5px solid #f39c12; }
.box3 { border-bottom: 5px solid #27ae60; }
.box4 { border-bottom: 5px solid #8e44ad; }
.box5 { border-bottom: 5px solid #2c3e50; }
.box6 { border-bottom: 5px solid #2c3e50; }

.icon-box {
  width: 60px;
  height: 50px;
  background-color: #f09f35;
  border: 1px solid #ddd;
  padding: 2px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   font-size: 48px;
}

.icon-box i {
  font-size: 48px;
  color: #007bff;
  margin-bottom: 20px;
}
