/* Custom Styles */
.custom-container {
  background: linear-gradient(66deg, #061206 28%, #4e6830 62%, #94e631 80%);
  color: white;
  text-align: justify;
  padding: 0%;
}

.row{
  padding-top: 40px;
}
.card{
  width: 100%;
  padding: 20px;
  
}

.card:hover{
  transform: scale(1.05); /* Slight zoom on hover */
  z-index: 1; /* Ensure it appears above others */

}


.card ul{
  list-style: circle; 
  padding: 20px; 
  margin: 0;
  text-align: left;
}
.custom-container h1,
.custom-container p {
  color: white;
}

.custom-container p {
  width: 100%;
}

.icon-container {
  position: relative;
  width: 60px;  /* Width of the stacked icons */
  height: 60px; /* Height of the stacked icons */
}

/* Stack the icons vertically and make them hidden */
.icon-container a {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 10px;
  background-color: transparent;
}

/* On hover, icons become visible */
.icon-container:hover a {
  opacity: 1;
}

/* Stack each icon */
.icon-container a:nth-child(1) {
  top: 0;
}
.icon-container a:nth-child(2) {
  top: 20px; /* Adjust spacing between icons */
}
.icon-container a:nth-child(3) {
  top: 40px;
}
.icon-container a:nth-child(4) {
  top: 60px;
}

/* Icon size styling */
.icon-container svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}