.custom-btn {
    font-size: 22px;
    padding-top: 5px;
    cursor: pointer;
}

/* From Uiverse.io by asgardOP */
.loader {
    width: 100%;
    height: 3px;
    background-color: rgb(15, 15, 15);
    border-radius: 20px;
    overflow: hidden;
}

.child {
    width: 60%;
    height: 3px;
    background-color: rgb(107, 27, 255);
    border-radius: 20px;
    z-index: 0;
    margin-left: -60px;
    animation: go 1s 0s infinite;
}

@keyframes go {
    from {
        margin-left: -100px;
        width: 80px;
    }

    to {
        width: 30px;
        margin-left: 110px;
    }
}

ul {
    list-style: none;
}

.text {
    width: 100px;
    height: 30px;
    background-color: transparent;
    margin-top: 20px;
    text-align: center;
    color: #000;
}

.text::before {
    content: "Loading";
    animation: text 1s 0s infinite;
}

@keyframes text {
    0% {
        content: "Loading";
    }

    30% {
        content: "Loading.";
    }

    60% {
        content: "Loading..";
    }

    100% {
        content: "Loading...";
    }
}

.loading-box {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.34);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* From Uiverse.io by mrhyddenn */
.spinner-container {
    position: fixed;
    /* Ensures the spinner stays in place while scrolling */
    z-index: 999;
    top: 0;
    /* Position it at the top */
    left: 0;
    /* Position it at the left */
    width: 100%;
    /* Full width */
    height: 100vh;
    /* Full height */
    background: rgba(255, 255, 255, 0.34);
    display: flex;
    /* Flexbox layout for easy centering */
    justify-content: center;
    /* Horizontally center the spinner */
    align-items: center;
    /* Vertically center the spinner */
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.spinner {
    font-size: 28px;
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.spinner.center {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.spinner .spinner-blade {
    position: absolute;
    left: 0.4629em;
    bottom: 0;
    width: 0.074em;
    height: 0.2777em;
    border-radius: 0.0555em;
    background-color: transparent;
    -webkit-transform-origin: center -0.2222em;
    -ms-transform-origin: center -0.2222em;
    transform-origin: center -0.2222em;
    animation: spinner-fade9234 1s infinite linear;
}

.spinner .spinner-blade:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

.spinner .spinner-blade:nth-child(2) {
    -webkit-animation-delay: 0.083s;
    animation-delay: 0.083s;
    -webkit-transform: rotate(30deg);
    -ms-transform: rotate(30deg);
    transform: rotate(30deg);
}

.spinner .spinner-blade:nth-child(3) {
    -webkit-animation-delay: 0.166s;
    animation-delay: 0.166s;
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
}

.spinner .spinner-blade:nth-child(4) {
    -webkit-animation-delay: 0.249s;
    animation-delay: 0.249s;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.spinner .spinner-blade:nth-child(5) {
    -webkit-animation-delay: 0.332s;
    animation-delay: 0.332s;
    -webkit-transform: rotate(120deg);
    -ms-transform: rotate(120deg);
    transform: rotate(120deg);
}

.spinner .spinner-blade:nth-child(6) {
    -webkit-animation-delay: 0.415s;
    animation-delay: 0.415s;
    -webkit-transform: rotate(150deg);
    -ms-transform: rotate(150deg);
    transform: rotate(150deg);
}

.spinner .spinner-blade:nth-child(7) {
    -webkit-animation-delay: 0.498s;
    animation-delay: 0.498s;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.spinner .spinner-blade:nth-child(8) {
    -webkit-animation-delay: 0.581s;
    animation-delay: 0.581s;
    -webkit-transform: rotate(210deg);
    -ms-transform: rotate(210deg);
    transform: rotate(210deg);
}

.spinner .spinner-blade:nth-child(9) {
    -webkit-animation-delay: 0.664s;
    animation-delay: 0.664s;
    -webkit-transform: rotate(240deg);
    -ms-transform: rotate(240deg);
    transform: rotate(240deg);
}

.spinner .spinner-blade:nth-child(10) {
    -webkit-animation-delay: 0.747s;
    animation-delay: 0.747s;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
}

.spinner .spinner-blade:nth-child(11) {
    -webkit-animation-delay: 0.83s;
    animation-delay: 0.83s;
    -webkit-transform: rotate(300deg);
    -ms-transform: rotate(300deg);
    transform: rotate(300deg);
}

.spinner .spinner-blade:nth-child(12) {
    -webkit-animation-delay: 0.913s;
    animation-delay: 0.913s;
    -webkit-transform: rotate(330deg);
    -ms-transform: rotate(330deg);
    transform: rotate(330deg);
}

@keyframes spinner-fade9234 {
    0% {
        background-color: #69717d;
    }

    100% {
        background-color: transparent;
    }
}

.highlights-container {
    padding: 50px 0;
    text-align: center;
}

.highlight-card {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.highlight-card h1 {
    color: #000;
    font-size: 3rem;
    margin-bottom: 10px;
}

.highlight-card p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #666;
}

.highlight-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

/* language  */

/* Flexbox container for equal width and height */
.tabs-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
}

.tabs-nav .nav-item .nav-link.active h6 {
    color: #fff;
}

.tech-list {
    padding: 0;
    list-style: none;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    flex-wrap: wrap
}

.tech-list li:last-child {
    margin-right: 0;
}

.tech-item {
    border-radius: 10px;
    background: #fff;
    padding: 20px 0px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52, 73, 106, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 150px;
    max-height: 150px;
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px rgba(52, 73, 106, 0.15);
}

.tech-item img {
    /* max-width: 36px; */
    height: 52px;
}

.tech-item h4 {
    font-size: 18px;
    color: #151221;
    line-height: 24px;
    margin: 16px 0 0;
    line-break: anywhere;
    word-wrap: break-word;
}

.tech-item:hover h4 {
    color: #1e90ff;
    /* Optional hover text color */
}

.tabs-nav .nav-item .nav-link.active {
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

/* Tabs Hover Link */
.tabs-nav .nav-item .nav-link:hover {
    color: #007bff;
}


@media screen and (max-width: 768px) {
    .tech-item img {
        max-width: 40px;
        height: auto;
    }
}

@media screen and (max-width: 520px) {
    .tech-item img {
        max-width: 35px;
        height: auto;
    }

    .tabs-nav li h6 {
        font-size: 16px;
    }

    .tech-item h4 {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .testimonial__six-card {
        margin-top: 5px;
    }
}

@media (max-width: 1300px) {
    .testimonial__six-card {
        margin-top: 5px;
    }
}