/*!
Animate colors css - */


.bestAI {
    background: linear-gradient(to right, #5C33FF 20%, #00FFB1 30%, #5C33FF 70%, #1ec995 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 64px;
    font-weight: 700;
    line-height: 100px;
    background-size: 500% auto;
	-webkit-animation: gradientMove 6s ease-in-out infinite alternate;
  animation: gradientMove 6s ease-in-out infinite alternate;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    color: #FFF;
    z-index: 1;
    border-radius: 10px;
    background: linear-gradient(270deg, rgb(21 35 68 / 75%) 0%, rgb(16 27 78 / 78%) 49.65%);
    border: 2px solid transparent;
}
.button2 {
    position: relative;
    border-radius: 10px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: conic-gradient(from var(--r) at var(--x) 50%, #222 0%, #00FFB1 20%, #1A1A1A 25%);
    animation: rotateAnimation 5s linear infinite, moveX 5s ease-in-out infinite alternate;
    padding: 12px 24px;
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
.button2 span {
    position: relative;
    z-index: 2;
}
@property --r {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}
@property --x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 0%;
}
@keyframes rotateAnimation {
    0% {
        --r: 0deg;
    }
    100% {
        --r: 360deg;
    }
}
.button::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 10px;
    padding: 2px;
    background: linear-gradient(90deg, #5C33FF, #00FFB1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: -1;
}
.button2::after {
    content: "";
    display: block;
    position: absolute;
    background: #101383;
    inset: 2px;
    border-radius: 10px;
    z-index: 0;
    transition: opacity .3s ease;
}
.greenBtn, .orangeBtn {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
    overflow: hidden;
    border-radius: 8px;
}
.greenBtn span {
    background: linear-gradient(90deg, #21148d 10%, #10A79A 100%);
    width: 18rem;
    height: 12rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 5s linear;
    opacity: 1.8;
    overflow: hidden;
}

.orangeBtn span {
	    background: linear-gradient(90deg, #341707 0%, #FE9D58 100%);
    width: 18rem;
    height: 12rem;
    transition: 0.4s;
    filter: blur(20px);
    animation: effect infinite 5s linear;
    opacity: 1.8;
    overflow: hidden;
}
@keyframes effect {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.about-wrapper .nav {
    display: grid;
    gap: 16px;
    padding: 0;
    /* border-right: 1px solid rgba(207, 208, 212, 0.2); */
    padding-right:60px;
	
	border-width: 1px;
    border-style: solid;
    border-left:0;
    border-image: 
    linear-gradient(#ffffff00, #F0CCB5, #ffffff00) 0 100%;
}
.about-wrapper .nav .nav-item .nav-link.active {
    background-color: #696BFF;
    color: #fff;
	border: #fff;
}
.about-wrapper .nav .nav-item .nav-link {
    border-radius: 50px;
    border: 1px solid rgb(29 29 33);
    font-size: 22px;
    color: var(--white);
    font-family: "Satoshi Variable", sans-serif;
    padding: 20px 20px;
    line-height: 1;
    text-align: center;
}
.footer-info {
    background-color: #5a37fd;
    color: white;
}
.footer-info .left-line{
	border-width: 1px;
    border-style: solid;
    border-right: 0;
    border-image: linear-gradient(#ffffff00, #F0CCB5, #ffffff00) 0 100%;
	padding: 0 0 0 12px;
}	
.footer-info .icon-wrapper {
    /* background-color: white; */
    /* border-radius: 50%; */
    padding: 1rem;
    flex-shrink: 0;
}

.footer-info .icon-wrapper .material-icons {
    color: #6366f1;
    font-size: 40px;
}
.footer-info .stat-number {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #fff;
	font-size: 5.5rem !important;
}
.footer-info .stat-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #fff;
}
.footer-info .stat-description {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #fff;
    max-width: 167px;
    line-height: 1.2;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .footer-info .d-flex {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-info .icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .footer-info .stat-number {
        font-size: 1.75rem;
    }
    
    .footer-info .stat-title {
        font-size: 1.1rem;
    }
}
