.service-title {
    font-weight: 700;
    text-align: center;
    padding: 0.5em;
    border: 1px solid #eee;
    font-size: small;
    color: #fff;
    animation: bounce; /* referring directly to the animation's @keyframe declaration */
    animation-duration: 2s; /* don't forget to set a duration! */
}
.services {
    position: relative;
    margin-top: 0.8em;
}
.services .st-1 {
    background-color: #0457a7;
}
.services .st-2 {
    background-color: #e02a1d;
}
.services .st-3 {
    background-color: #00a050;
}
.services .st-4 {
    background-color: #aa4788;
}
.services .sb-1 {
    border: #e02a1d;
}
.services .sb-2 {
    border: #0457a7;
}
.services .sb-3 {
    border: #00a050;
}
.services .sb-4 {
    border: #aa4788;
}
.services::after {
    width: 650px;
    height: 650px;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 0%;
    left: -20%;
    background-color: rgba(110, 69, 226, 0.3);
    z-index: -9;
    animation: float 4s ease-in-out infinite;
}
.about {
    position: relative;
}
.about::after {
    width: 650px;
    height: 650px;
    border-radius: 100%;
    content: "";
    position: absolute;
    top: 5%;
    left: -20%;
    background-color: #e91e623a;
    z-index: -9;
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-40px); /* Adjust pixels for height of bounce */
    }
    100% {
        transform: translateY(0px);
    }
}
section {
    position: relative;
}

.alien-ship {
    position: absolute;
    top: 20%; /* Adjust height */
    width: 150px; /* Adjust size */
    z-index: 10;

    /* Animation: Name | Duration | Timing | Iteration | Direction */
    animation: flyAcross 12s linear infinite alternate;
}

@keyframes flyAcross {
    from {
        left: -150px; /* Start hidden off-screen left */
        transform: translateY(0px) rotate(-5deg);
    }
    to {
        left: 100%; /* End at the right edge */
        transform: translateY(50px) rotate(10deg); /* Adds a slight "wobble" */
    }
}

.features{
    position: relative;
}
.cloud-animation1 {
    position: absolute;
    top: 5%;
    left: 0;
    animation: naturalDrift 10s ease-in-out infinite alternate;
    width: 200px;
}
.cloud-animation2 {
    position: absolute;
    right: 30%;
    bottom: 10%;
    animation: naturalDrift 6s ease-in-out infinite alternate;
    width: 200px;
}
@keyframes naturalDrift {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translate(50%, -50px); /* Moves right and slightly up */
    }
}


/* Our Services */
.service-wrap {
  margin-top: 30px;
}

.service-wrap .service-title {
  display: flex;
  align-items: center;
  gap: 30px;
  border: none;
}
.service-wrap .service-title span {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: darkslateblue;
}
.service-title h3 {
  font-size: 35px;
  font-weight: 400;
  letter-spacing: -1px;
}
@media (max-width: 767px) {
  .service-wrap .service-title h3 {
    font-size: 24px;
  }
}
.service-wrap p {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .service-wrap p {
    margin-top: 30px;
  }
}
.features .service-icon {
    margin-top: 30px;
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: darkslategrey;
    transform: rotate(-45deg);
}