body {
    padding: 0;
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.navbar-brand {
    width: 150px;
}

.banner-bg-shape-reverse {
    transform: scaleX(-1);
}

.counter-inner-box.with-white-bg-color {
    margin-left: auto;
}

.wrapper-aia {
    position: relative;
    width: 90%;
    max-width: 600px;
    height: fit-content;
    margin: auto;
}

.container-aia {
    padding-top: 100%;
}

/* Layer for lines */
.lines-layer-aia {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Below circles */
}

/* Lines */
.line-aia {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 30%;
    background-color: #ebebeb;
    transform-origin: top;
    transform: rotate(var(--angle));
    z-index: 1; /* Lines are beneath circles */
}

.line-aia:after {
    content: "";
    display: block;
    position: absolute;
    height: 50%;
    width: 50%;
    top: -50%;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        #1877f2 75%,
        #1877f2 100%
    );
    animation: runCustom 3.5s 0s infinite;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}

/* Circles */
.circle-aia {
    position: absolute;
    width: 20%;
    height: 20%;
    border-radius: 50%;
    border: 0px solid #1877f2;
    box-sizing: content-box;
    background-color: white;
    transform: translate(-50%, -50%);
    z-index: 2; /* Above lines */
    cursor: pointer;
    box-shadow: 0 0 10px rgb(64 114 255 / 43%);
    transition: all 1s;
    display: grid;
    place-content: center;
    color: #1877f2;
}

.circle-aia-hover,
.circle-aia:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: #1877f2;
    color: white;
}

.circle-aia-hover p,
.circle-aia:hover p {
    color: white;
}

.circleTitle {
    font-size: 8px;
    font-weight: bold;
    text-align: center;
    color: #1877f2;
    line-height: 10px;
    padding: 0 16px 5px;
    transition: all 1s;
}

.orbitingCircle,
.orbitingCircle-clicked {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    animation-name: rotateme;
    animation-duration: 20s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.orbitingCircle:hover,
.orbitingCircle-clicked {
    outline: 1px solid #59b8f8;
    outline-offset: 8px;
}

.orbitingCircle:hover:after,
.orbitingCircle-clicked:after {
    content: "";
    display: block;
    position: absolute;
    height: 7px;
    width: 7px;
    border-radius: 100%;
    top: -12px;
    left: 50%;
    background-color: rgb(144, 250, 45);
}

.center-aia {
    top: 50%;
    left: 50%;
}

.outer-aia {
    --radius: 38%;
    --x: calc(50% + var(--radius) * sin(var(--angle)));
    --y: calc(
        50% - var(--radius) * cos(var(--angle))
    ); /* Negative because Y-axis is inverted in CSS */
    top: var(--y);
    left: var(--x);
}

.servicesImage {
    width: 40%;
    margin: auto;
}

.servicesImage2 {
    width: 55px;
    color: #1877f2;
    margin: auto;
}

.starContentWrapper {
    max-width: 820px;
    margin-top: 50px;
    background: #ffffff;
    box-shadow: -2px 8px 30px rgba(39, 176, 230, 0.09);
    padding: 24px 12px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
}

.aiaCustomStars {
    margin-top: 50px;
}

.aiaCustomStarsTitle {
    font-size: 32px;
}

.meanmenu-reveal span {
    display: inline-block;
    margin-bottom: 10px;
}
.aiaCustomStarsSubtitle {
    font-size: 20px;
}

.computer-vision-banner-content h1 {
    margin-bottom: 4rem;
}

.computer-vision-banner-content h1,
.computer-vision-banner-content p {
    text-align: center;
}

.computer-vision-banner-content-btn {
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
    padding-left: 0rem;
    gap: 1rem;
}

.computer-vision-banner-content-btn p {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.aia-btn-color {
    background: #ffac00;
    color: white;
}

.aia-btn-color:hover {
    background: #ff9900;
    color: white;
}

.heroList {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-left: 0rem;
}

.heroList li {
    list-style: none;
    font-size: 18px;
    text-align: center;
}

@media screen and (min-width: 425px) {
    .circleTitle {
        font-size: 10px;
        line-height: 13px;
    }
}

@media screen and (min-width: 525px) {
    .circleTitle {
        font-size: 12px;
        line-height: 13px;
    }
}

@media screen and (min-width: 768px) {
    .circleTitle {
        font-size: 14px;
        line-height: 18px;
    }

    .aiaHero {
        padding: 4rem;
    }
}

@media screen and (min-width: 1024px) {
    .aiaCustomStars {
        margin-top: 0px;
    }

    .starContentWrapper {
        padding: 30px 50px;
    }

    .servicesImage2 {
        width: 70px;
    }

    .heroList {
        padding-left: 7rem;
    }

    .heroList li {
        font-size: 24px;
        text-align: left;
    }

    .computer-vision-banner-content-btn {
        flex-direction: row;
        justify-content: space-between;
        padding-left: 7rem;
    }

    .computer-vision-banner-content-btn p {
        font-size: 24px;
        text-align: left;
    }

    .computer-vision-banner-content h1,
    .computer-vision-banner-content p {
        text-align: left;
    }
}

@keyframes runCustom {
    0% {
        top: 110%;
    }
    100% {
        top: -25%;
    }
}
