
/* Container */
.tabs-container {
  /* max-width: 420px; */
  margin: auto;
}

/* Hide radios */
.tabs-container input {
  display: none;
}

/* Tabs header */
.tabs {
  position: relative;
  display: flex;
  background: #ffffff;
  border-radius: 14px;
  /* padding: 6px; */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Tab buttons */
.tabs label {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Active tab text */
#tab1:checked ~ .tabs label:nth-child(1),
#tab2:checked ~ .tabs label:nth-child(2),
#tab3:checked ~ .tabs label:nth-child(3) {
  color: #ffffff;
}

/* Indicator */
.indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(33.333% - 6px);
  height: calc(100% - 12px);
  /* background: linear-gradient(135deg, #22c55e, #16a34a); */
  background-color: #E5ECFF;
  border-radius: 12px;
  transition: transform 0.3s ease;
}


/* Move indicator */
#tab2:checked ~ .tabs .indicator {
  transform: translateX(100%);
}

#tab3:checked ~ .tabs .indicator {
  transform: translateX(200%);
}

/* Content */
.tab-content {
  margin-top: 20px;
  /* background: #ffffff; */
  border-radius: 14px;
  padding: 20px;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06); */
}

.content {
  display: none;
  font-size: 14px;
  color: #374151;
}

/* Show active content */
#tab1:checked ~ .tab-content .content-1,
#tab2:checked ~ .tab-content .content-2,
#tab3:checked ~ .tab-content .content-3 {
  display: block;
}
.blog-text {
  /* display: block; */
  text-align: center;
  width: 100%;
  /* font-weight: 400; */
  /* color: #16a34a; */
  /* text-decoration: none; */
}

.blog-text i {
  /* margin-right: 6px; */
  /* font-size: 14px; */
}
.mr-5{
  margin-right: 100px;
}
