.connected {
  margin-bottom: 5rem;
  padding-top: 6rem !important;
  /* Outer Circle */
  /* Center Logo */
  /* Points */
  /* SVG Lines */
  /* Responsive positioning */
  /* Mobile fix */
}
.connected p {
  text-align: justify;
}
.connected ul {
  padding-inline: 15px;
  list-style-type: circle;
}
.connected ul li {
  list-style: disc;
}
.connected .circle-container {
  position: relative;
  width: 100%;
  background: var(--themesecondaryclr);
  /* Laptop/Desktop ke liye limit */
  aspect-ratio: 1/1;
  /* Hamesha square shape maintain karega */
  margin: auto;
  border-radius: 12px;
}
.connected h1 {
  font-weight: 700;
  line-height: 1.2;
}
.connected .outer-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px dotted rgb(255, 255, 255);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.76);
  animation: rotate 40s linear infinite;
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.connected .center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--themeprimaryclr);
  color: var(--darkclr);
  font-weight: 900;
  font-size: clamp(14px, 2vw, 16px);
  border-radius: 50%;
  width: 20%;
  height: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* box-shadow: 0 0 40px rgba(0, 180, 255, 0.9); */
  z-index: 3;
  padding: 10px;
}
.connected .point {
  position: absolute;
  width: 30%;
  height: 30%;
  border-radius: 50%;
  background: #111a2f;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 17px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
  border: 2px solid rgba(0, 170, 255, 0.4);
  z-index: 2;
  transition: 0.3s;
  line-height: 20px;
}
.connected .point:hover {
  transform: scale(1.1);
  box-shadow: var(--themeprimaryclr);
  border-color: var(--themeprimaryclr);
}
.connected .point i {
  display: block;
  font-size: clamp(14px, 2vw, 20px);
  margin-bottom: 6px;
  color: #00aaff;
}
.connected svg path {
  stroke: #00aaff;
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px #00aaff);
  animation: dash 4s linear infinite;
}
@keyframes dash {
  to {
    stroke-dashoffset: -12;
  }
}
.connected .point-top {
  top: 2%;
  left: 35%;
}
@media (max-width: 768px) {
  .connected .point-top {
    top: 2%;
    left: 35%;
  }
}
.connected .point-tr {
  top: 20%;
  right: 4%;
}
.connected .point-br {
  bottom: 12%;
  right: 10%;
}
.connected .point-bl {
  bottom: 12%;
  left: 10%;
}
.connected .point-tl {
  top: 20%;
  left: 6%;
}
@media (max-width: 576px) {
  .connected .point {
    width: 30%;
    height: 30%;
    font-size: 10px;
    padding: 5px;
    line-height: 14px;
  }
  .connected .center-logo {
    width: 30%;
    height: 30%;
    font-size: 12px;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .connected .connected {
    padding: 0px 0px 40px;
  }
  .connected .connected .main-heading {
    margin-top: 25px;
  }
}

@media (min-width: 767px) and (max-width: 992px) {
  .connected .circle-container {
    margin-bottom: 27px;
  }
}
@media (max-width: 767px) {
  .connected {
    padding-bottom: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 2rem;
  }
  .connected h1 {
    margin-top: 20px;
  }
}/*# sourceMappingURL=connected-ecosystem.css.map */