

html{
    scroll-behavior: smooth;
}

.hero-image{
    animation: heroFloat 5s ease-in-out infinite;
}

@keyframes heroFloat{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }

    100%{
        transform: translateY(0px);
    }
}

.hero-border{
    animation: heroGlow 4s ease-in-out infinite;
}

@keyframes heroGlow{
    0%{
        box-shadow: 0 0 20px rgba(34, 211, 238, .35);
    }

    50%{
        box-shadow: 0 0 40px rgba(168, 85, 247, .55);
    }

    100%{
        box-shadow: 0 0 20px rgba(34, 211, 238, .35);
    }
}

.floating{
    animation: floating 4s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floating{
    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }
}

.btn-hover{
    transition: .4s ease;
}

.btn-hover:hover{
    transform: translateY(-5px) scale(1.04);
}

.card-hover{
    transform: .4s ease;
}

.card-hover:hover{
    transform: translateY(-10px);
}

html{
    scroll-behavior: smooth;
}

.service-card{
    position: relative;
    overflow: hidden;
    transition: all .45s ease;
}

.service-card:hover{
    transform: translateY(-12px);
    border-color: rgba(34, 211, 238, .45);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .35);
}

.service-card::before{
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255. 0.8)) ;
    transform: rotate(25deg);
    transition: .8s;
    
}

.service-card:hover::before{
    top: 100%;
    left: 100%;
}

.icon-box{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

.service-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #67e8f9;
    font-weight: 600;
    transition: .35s;
}

.service-btn i{
    transition: .35s;
}

.service-btn:hover{
    transform: translateX(8px);
}

.why-image{
    animation: whyFloat 5s ease-in-out infinite;
}

@keyframes whyFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-15px);
    }
}

.why-image-border{
    animation: whyGlow 4s ease-in-out infinite;
}

@keyframes whyGlow{
    0%{
        box-shadow: 0 0 18px rgba(34, 211, 238, .30);
    }

    50%{
        box-shadow: 0 0 40px rgba(168, 85,247, .55);
    }

    100%{
        box-shadow: 0 0 18px rgba(34, 211, 238, .30);
    }
}


.process-step{
    transition: .35s;
    cursor: pointer;
}

.process-step:hover{
    transform: translateY(-8px) scale(1.05s);
}

.process-step div{
    transform: scale(1.12);
    box-shadow: 0 0 0 rgba(59, 130, 246, .5);
    transition: .35s;
}

.process-step:hover div{
    box-shadow: 0 0 20px rgba(59, 130, 246, .45), 0 0 45px rgba(168, 85,247, .55);

}

.process-step h3{
    margin-top: 16px;
    color: #fff;
    font-weight: 700;
}

.process-step p{
    margin-top: 6px;
    color: #9CA3AF;
    font-size: .9rem;
}

@keyframes floatVan{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-6px);
    }
}

.process-van{
    position: absolute;
    z-index: 30;
    width: 80px;
    offset-path:path("M40 210 C170 40 310 40 430 210 S700 380 870 210 S1120 80 1180 190"); 
    offset-distance: 0%;
    offset-rotate: auto;
    animation: driveRoad 10s linear infinite;
}

@keyframes driveRoad{
    from{
        offset-distance: 0%;
    }

    to{
        offset-distance: 100%;
    }
}

.road-line{
    animation: roadMove 10s linear infinite;
}

@keyframes roadMove{
    from{
        stroke-dashoffset: 0;
    }

    to{
        stroke-dashoffset: 100;
    }
}



.road-line-Mobile{
    animation: roadMoveMobile 30s linear infinite;
}

@keyframes roadMoveMobile{
    from{
        stroke-dashoffset: 0;
    }

    to{
        stroke-dashoffset: -100;
    }
}

.testimonial-card{
    position: relative;
    overflow: hidden;
    transition: .4s;
}

.testimonial-card:hover{
    transform: translateY(-10px);
    border-color: rgba(34, 211, 238, .45);
    box-shadow: 0 0 30px rgba(34, 211, 238, .45), 0 0 60px rgba(168, 85, 247, .12);
}

.testimonial-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, .08));
    opacity: 0;
    transition: .4s;
}

.testimonial-card:hover::before{
    opacity: 1;
}

@media (max-width: 1023px){
    .testimonial-card{
        animation: cardFloat 3.5s ease-in-out infinite;
    }

    .testimonial-card:nth-child(2){
        animation-delay: .5s;
    }

    .testimonial-card:nth-child(3){
        animation-delay: 1s;
    }
}

@keyframes cardFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

@media (max-width:1023px){
    .testimonial-card{
        animation: glowPulse 3s ease-in-out infinite;
    }
}

@keyframes glowPulse{
    0%, 100%{
        box-shadow: 0 0 10px rgba(34, 211, 238, .10);
    }

    50%{
        box-shadow: 0 0 25px rgba(34, 211, 238, .20), 0 0 45px rgba(168, 85, 247, .15);
    }
}

.pricing-card{
    position: relative;
    transition: .4s;
}

.pricing-card:hover{
    transform: translateY(-12px);
    box-shadow: 0 0 30px rgba(34, 211, 238, .25), 0 0 70px rgba(168, 85, 247, .15);
}

.pricing-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,211,238,.06), rgba(168,85,247,.05));
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.pricing-card:hover::before{
    opacity: 1;
}

.pricing-card:hover{
    transform: translateY(-12px);
}

.pricing-card button{
    transition: .35s;
}


@media (max-width: 1023px){
    .pricing-card{
        animation: pricingFloat 5s ease-in-out infinite;
    }

    .pricing-card:nth-child(2){
        animation-delay: .4s;
    }

    .pricing-card:nth-child(3){
        animation-delay: .8s;
    }
}

@keyframes pricingFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

.faq-content{
    max-height:0;
    overflow: hidden;
    transition: max-height .4s ese;
}

.faq-content p{
    padding: 0 28px 28px;
    /* color: #9CA3AF; */
    line-height: 1.8;
    font-size: 16px;
}

.faq-item.active .faq-content{
    max-height: 220px;
}

.faq-item{
    transition: .35s;
}

.faq-item:hover{
    border-color: rgba(34,211,238,.35);
    box-shadow: 0 0 25px rgba(34,211,238,.15);
}

.faq-btn{
    cursor: pointer;
}

.faq-icon{
    transition: .35s;
}

.faq-item.active .faq-icon{
    transform: rotate(45deg);
}

.contact-input{
    background: rgba(255, 255, 255. 0.5);
    border: 1px solid rgba(255, 255, 255. 0.10);
    color: #fff;
    outline: none;
    transition: .35s;
}

.contact-input::placeholder{
    color: #94A3B8;
}

.contact-input:focus{
    border-color: #22D3EE;
    box-shadow: 0 0 0 4px rgba(34, 211, 238, .15);
}

.contact-card{
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255. 0.10);
    background: rgba(255, 255, 255, .05);
    transition: .35s;

}

.contact-card:hover{
    transform: translateY(-6px);
    border-color: rgba(34, 211, 238, .35);
    box-shadow: 0 0 30px rgba(34, 211, 238, .15);
}

.contact-card i{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.contact-card h4{
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.contact-card p{
    color: #9CA3AF;
    margin-top: 4px;
    line-height: 1.6;
}

.social-btn{
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .05);
    border: 1px soli rgba(255, 255, 255. 0.10);
    color: #fff;
    font-size: 22px;
    transition: .35s;
}

.social-btn:hover{
    transform: translateY(-6px) scale(1.08);
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(34, 211, 238, .30);
}

.contact button{
    transition: .35s;
}

#contact button:hover{
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(34, 211, 238, .30);
}

@media(max-width: 1023px){
    .contact-card{
        animation: contactFloat 5s ease-in-out infinite;
    }

    .contact-card:nth-child(2){
        animation-delay: .4s;
    }

    .contact-card:nth-child(3){
        animation-delay: .8s;
    }

    .contact-card:nth-child(4){
        animation-delay: 1.2s;
    }

    .contact-card:nth-child(5){
        animation-delay: 1.6s;
    }
}

@keyframes contactFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

.footer-title{
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-link{
    color: #9CA3AF;
    transition: .35s;
    position: relative;
    display: inline-block;
    

}

.footer-link:hover{
    color: #22D3EE;
    transform: translateX(6px);
}

.footer-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #22D3EE;
    transition: .35s;
}

.footer-link::after{
    width: 100%;
}

.footer-social{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255. 0.10);
    color: #fff;
    font-size: 20px;
    transition: .35s;
}

.footer-social:hover{
    transform: translateY(-6px);
    background: linear-gradient(135deg, #06B6D4, #8B5CF6);
    border-color: transparent;
    box-shadow: 0 0 25px rgba(34,211,238,.35);
}

.footer-contact{
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9CA3AF;
    transition: .35s;
}

.footer-contact i{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #3B82F6);
    counter-reset: #fff;
    flex-shrink: 0;
}

.footer-contact:hover{
    color: #fff;
    transform: translateX(6px);
}

.footer-top{
    transition: .35s;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.footer-top:hover{
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 0 30px rgba(34, 211, 238, .45);

}

@media(max-width:7768px){
    .footer-title{
        margin-top: 10px;
    }

    .footer-social{
        width: 55px;
        height: 55px;
    }

    .footer-contact{
        font-size: .95rem;
    }

    .footer-top{
        width: 50px;
        height: 50px;
        right: 18px;
        bottom: 18px;
    }
}

#about img{
    transition: .5s;
}

#about img:hover{
    transform: scale(1.05);
} 

.about-box{
    padding: 24px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255. 0.10);
    transition: .35s;
}

.about-box:hover{
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, .45);
    box-shadow: 0 0 25px rgba(34, 211, 238, .18);
}

.about-box h4{
    margin-top: 8px;
    
}

.skill-chip{
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255. 0.10);
    transform: .35s;
}

.skill-chip:hover{
    transform: translateY(-5px);
    background: linear-gradient(135deg, #06B6D4, #3B82F6, #8B5CF6);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(34, 211, 238, .30);

}

#about a{
    transition: .05s;
}

#about a:hover{
    transform: translateY(-4px);
}

#about .absolute{
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge{
    0%, 100%{
        transform: translateY(0);

    }

    50%{
        transform: translateY(-8px);
    }
}

@media(max-width:1024px){
    #about .grid{
        gap: 30px;
    }
}

@media(max-width:768px){
    .about-box{
        padding:36px 18px;
    }

    .about-box h4{
        font-size: 1.6rem;
    }

    .skill-chip{
        font-size: .9rem;
        padding: 9px 16px;
    }
}

@media(max-width:640px){
    #about h3{
        font-size: 2rem;
    }

    #about .grid{
        grid-template-columns: 1fr;
    }

    #about .absolute{
        right: 10px;
        bottom: -20px;
    }
}


@media(max-width: 1023px){
    .about-box{
        animation: aboutFloat 5s ease-in-out infinite;
    }

    .contact-card:nth-child(2){
        animation-delay: .4s;
    }

    .contact-card:nth-child(3){
        animation-delay: .8s;
    }

    .contact-card:nth-child(4){
        animation-delay: 1.2s;
    }
}

    

 @keyframes aboutFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-8px);
    }
}

@media (max-width:1023px){
    .about-box{
        animation: aboutPulse 3s ease-in-out infinite;
    }
}

@keyframes aboutPulse{
    0%, 100%{
        box-shadow: 0 0 5px rgba(34, 211, 238, .10);
    }

    50%{
        box-shadow: 0 0 15px rgba(34, 211, 238, .20), 0 0 20px rgba(168, 85, 247, .15);
    }
}

@media (max-width:1023px){
    .glow-container{
        animation: glowContainerPulse 3s ease-in-out infinite;
    }
}

@keyframes glowContainerPulse{
    0%, 100%{
        box-shadow: 0 0 5px rgba(34, 211, 238, .10);
    }

    50%{
        box-shadow: 0 0 15px rgba(34, 211, 238, .20), 0 0 20px rgba(168, 85, 247, .15);
    }
}

@media (max-width:1023px){
    .skill-chip{
        animation: skillChapFloat 3s ease-in-out infinite;
    }
}

@keyframes skillChapFloat{
    0%, 100%{
        transform: translateY(0);
    }

    50%{
        transform: translateY(-4px);
    }
}


.nav-link{
    position: relative;
    transition: .35s;
    color: #E5E7EB;
}

.nav-link:hover{
    color: #22D3EE;
    transform: translateY(-2px);
}

.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    height: 2px;
    background: #22D3EE;
    transition: .35s;
}

.nav-link:hover::after{
    width: 100%;
}

.nav-link.active{
    color: #22D3EE;
    transform: translateY(-2px);
}

.nav-link.active::after{
    width: 100%;
}