* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Poppins', sans-serif;
  background-color: #65de50;
  color: #333;
}


.container {
  display: flex;
  flex-direction: row;
  width: 90%;
  max-width: 600px;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow:0px 0px 15px 5px rgba(0, 0, 0, 0.1);
}

.left-panel {
  width: 100%;
  padding: 40px;
  background-color: #2e6fac!important;
  /*background: linear-gradient(to bottom, #ff9800, #ffffff);*/
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow:2px 5px 10px 5px rgba(0, 0, 0, 0.1);
}

.left-panel h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.input-group input {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background-color: white;
  color: #2e6fac;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #c5e5ba;
}


.right-panel {
  width: 0%;
  padding: 40px;
  background-color: #f0f4f8;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cycle-container {
  position: relative;
  width: 32rem;
  height: 32rem;
  margin-bottom: 20px;
}

.cycle {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid #2e6fac;
  display: flex;
  justify-content: center;
  align-items: center;
}


.center-logo {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  background-color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.center-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}


.stage {
  position: absolute;
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.stage p {
  margin-top: 5px;
  color: white;
  font-weight: bold;
}

#education {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ff9800;
}

#work {
  right: 30px;
  top: 35%;
  transform: translateY(-50%);
  background-color: #2196f3;
}

#growth {
  bottom: 80px;
  left: 78%;
  transform: translateX(-50%);
  background-color: #8bc34a;
}

#retirement {
  left: 162px;
  top: 83%;
  transform: translateY(-50%);
  background-color: #e91e63;
}
#reflection {
  left: 26px;
  top: 66.5%;
  transform: translateY(-50%);
  background-color: #9c4896;
}
#prayas {
  left: 28px;
  top: 34%;
  transform: translateY(-50%);
  background-color: #58ab91;
}
