.midsect {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 0 8%;
  position: relative;
  overflow: hidden;
}

/*Decorative dots (section background) */
.dots {
  width: 8px;
  height: 8px;
  background: #2ee6c9;
  border-radius: 50%;
  position: absolute;
}

.dot-1 { top: 15%; right: 10%; }
.dot-2 { top: 60%; left: 5%; }
.dot-3 { bottom: 20%; right: 15%; }

/*Decorative circles*/
.circle {
  position: absolute;
  border: 2px solid #2ee6c9;
  border-radius: 50%;
}

.circle-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 8%;
  opacity: 0.3;
}

.circle-2 {
  width: 80px;
  height: 80px;
  bottom: 15%;
  right: 8%;
  opacity: 0.3;
}

/*Decorative lines*/
.line {
  position: absolute;
  background: #2ee6c9;
  opacity: 0.2;
}

.line-1 {
  width: 200px;
  height: 2px;
  top: 30%;
  right: 20%;
  transform: rotate(45deg);
}

.line-2 {
  width: 150px;
  height: 2px;
  bottom: 30%;
  left: 10%;
  transform: rotate(-30deg);
}

/*Main left content*/
.mid-content {
  max-width: 900px;
  z-index: 2;
}

.mid-content h1 {
  font-size: 64px;
  color: white;
  margin: 0 0 10px 0;
}

.cyan {
  color: #2ee6c9;
}

.role {
  color: #2ee6c9;
  font-size: 18px;
  margin: 0 0 15px 0;
}

.desc {
  color: #cfd3da;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  max-width: 500px;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.main {
  background: #2ee6c9;
  color: #1c1f26;
}

.btn.main:hover {
  opacity: 0.9;
}

.btn.outline {
  border: 1px solid #2ee6c9;
  color: #2ee6c9;
}

.btn.outline:hover {
  background: #2ee6c9;
  color: #1c1f26;
}

/*Decorative card (right side)*/
.deco-card {
  width: 450px;
  background: #1c1f26;
  padding: 25px;
  border-radius: 30px;
  border: 1px solid #333;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.card-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.card-dots {
  display: flex;
  gap: 6px;
}

.card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.card-dot.red    { background: #ff5f57; }
.card-dot.yellow { background: #ffbd2e; }
.card-dot.green  { background: #28c840; }

/*line below the dots*/
.deco-card::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 20px;
  width: calc(100% - 40px);
  height: 2px;
  background: linear-gradient(to right, transparent, #333, transparent);
  opacity: 0.8;
}



/*Card heading & text */
.deco-card h3 {
  color: #10bdbd;
  font-size: 20px;
  margin: 15px 0 20px 0;
  text-align: center;
  font-family:'Times New Roman', Times, serif;
}

.card-text {
  color: #cfd3da;
  font-size: 17px;
  line-height: 1.7;
  margin: 10px 0;
  font-family:'Times New Roman', Times, serif;
}
