/* ==========================
   Root Variables
========================== */
:root {
  --shadow1: 0 2px 4px #00000026, 0 3px 6px #0000001f;
  --shadow2: 0 2px 6px #00000044, 0 4px 7px #00000022;
 
}

/* ==========================
   Cloud Container
========================== */
.cloud-container {
  display: grid;
  place-items: center;
  }

/* ==========================
   InfoGraphic List
========================== */
ul.infoGraphic {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  
}

/* ==========================
   Individual Cloud Item
========================== */
ul.infoGraphic li {
  position: relative;
  width: 100%;
  max-width: 24em;
  border-radius: 0.5em;
  /*padding: 0.5em;
  margin: 1em;*/
  z-index: 1;
  cursor: pointer;
  transition: all 0.2s;
  
}

/* ==========================
   Number Wrap (Decorative Arc)
========================== */
ul.infoGraphic li .numberWrap {
  position: absolute;
}

ul.infoGraphic li .coverWrap {
  transform: rotate(130deg);
  position: absolute;
  width: 18em;
  height: 15em;
  left: -3em;
  top: -1em;
  
}

ul.infoGraphic li .numberCover {
  position: absolute;
  width: 18em;
  height: 6em;
  background: white;
  border-radius: 50% 50% 0 0;
  border-bottom: 3px solid #f5f8f7;
  transition: all 0.4s;
}

/* Shadow and gradient effects for arc */
ul.infoGraphic li .numberCover::before {
  content: "";
  position: absolute;
  top: 5em;
  bottom: 5px;
  left: 4em;
  right: 4em;
  box-shadow: 0 0 30px 17px #48668577;
  border-radius: 100px / 10px;
  z-index: -1;
}

ul.infoGraphic li .numberCover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10%;
  width: 120%;
  height: 150%;
  background: radial-gradient(at bottom, #48668533, transparent, transparent);
  z-index: 1;
}

/* Hover Effect */
ul.infoGraphic li:hover .coverWrap .numberCover {
  border-radius: 100%; /* Circular effect on hover */
}

/* ==========================
   Content Section
========================== */
ul.infoGraphic li .content {
  margin: 8em 3em 1em 7em; /* Top, right, bottom, left */
  position: relative;
  
}

/* Heading inside content */
ul.infoGraphic li .content h4 {
  color: var(--blue);
  text-align: center;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Paragraph styling 
ul.infoGraphic li .content p {
  line-height: 1.2em;
}
*/
/* Nested List inside content */
.content ul {
  list-style: outside;
  padding-left: 1.2em;
}

.content ul li {
  margin: 0.2em 0; /* spacing between items */
}

.content ul li::marker {
  color: var(--blue);
}

/* ==========================
   Icon Styling
========================== */
.icon {
  position: absolute;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  text-align: center;
  color: #666;
}

/* Individual Icon Mappings */
.iconStrategy::before { content: "\f0e8"; }
.iconMigration::before { content: "\f382"; }
.iconCost::before { content: "\f155"; }
.iconService::before { content: "\f085"; }
.iconBackup::before { content: "\f1c0"; }
.iconRecovery::before { content: "\f3ed"; }
.iconHybrid::before { content: "\f0c2"; }
.iconSecurity::before { content: "\f023"; }

/* Gradient effect on icons */
.icon::before {
  background: linear-gradient(45deg, #51afdc, #8df39b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
