canvas {
    background: radial-gradient(circle at top, #0f1c3f, #050b1e);
}

.welcome-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1000;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 0 0 60px rgba(0, 229, 255, 0.6), 0 0 120px rgba(124, 124, 255, 0.4);
    opacity: 0;
    animation: welcomeIn 1.5s ease forwards, pulseGlow 3s ease-in-out infinite 1.5s;
    transition: opacity 1s ease;
    box-shadow: none !important;
}

.welcome-message.fade-out {
    opacity: 0;
    animation: none;
}

@keyframes welcomeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5) rotateY(90deg);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 60px rgba(0, 229, 255, 0.6), 0 0 120px rgba(124, 124, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 80px rgba(0, 229, 255, 0.8), 0 0 160px rgba(124, 124, 255, 0.6);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.main-section {
    display: none;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
    position: absolute;
}



#particles-js {
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 0;
}

/* Home */

.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    margin-top: 80px;
}

.hero-box {
    position: relative;
    z-index: 5;
    width: 80%;
    padding: 30px;
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(5px);
    border-radius: 18px;
    color: #fff;
    text-align: justify;
    animation: heroIn 1.4s ease;
}

.hero-box span {
    color: #00e5ff;
}

@keyframes heroIn {
    from {
        opacity: 0;
        transform: translateY(40px) rotateX(12deg);
    }

    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
}

.cube {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00e5ff, #7c4dff);
    opacity: 0.25;
    border-radius: 12px;
    filter: blur(0.5px);
    animation: floatCube 18s infinite linear;
    transform-style: preserve-3d;
}

.cube:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-duration: 22s;
}

.cube:nth-child(2) {
    top: 70%;
    left: 25%;
    animation-duration: 26s;
}

.cube:nth-child(3) {
    top: 30%;
    left: 70%;
    animation-duration: 20s;
}

.cube:nth-child(4) {
    top: 65%;
    left: 75%;
    animation-duration: 24s;
}

.cube:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-duration: 30s;
}

@keyframes floatCube {
    0% {
        transform: translateZ(-200px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: translateZ(200px) rotateX(180deg) rotateY(180deg);
    }

    100% {
        transform: translateZ(-200px) rotateX(360deg) rotateY(360deg);
    }
}

@media(max-width:768px) {
    .hero {
        height: auto;
    }

    .hero-box {
        width: 90%;
        padding: 15px;
    }
}

/* end home */

/* Our Process*/
.our-process-section {
    padding: 90px 6%;
    max-width: 85%;
    margin: auto;
}

@media (max-width: 768px) {
    .our-process-section {
        max-width: 100%;
    }
}

.curve {
    width: 100%;
}

circle {
    fill: #00e5ff;
    filter: drop-shadow(0 0 8px #00e5ff);
}

.dot-number {
    fill: #0f1629;
    font-size: 10px;
    font-weight: bold;
    text-anchor: middle;
    dominant-baseline: middle;
    pointer-events: none;
}

.timeline {
    position: relative;
}

.card {
    position: absolute;
    width: 30%;
    background: rgba(255, 255, 255, 0.08);
    padding: 18px 10px;
    border-radius: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    text-align: center;
    backdrop-filter: blur(2px);
    color: white;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #00e5ff, #7c7cff);
    opacity: 0.25;
}

.desktop .c1 {
    left: 0%;
    top: 150px;
}

.desktop .c2 {
    left: 17%;
    top: -80px;
}

.desktop .c3 {
    left: 50%;
    top: 150px;
}

.desktop .c4 {
    left: 70%;
    top: -60px;
}

.mobile {
    display: none;
}


.mobile .card {
    position: absolute;
}

@media (max-width: 768px) {

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
        position: relative;
        min-height: 900px;
        padding-left: 70px;
    }

    .mobile .card {
        position: absolute;
        left: 90px;
        width: calc(100vw - 110px);
        min-width: 140px;
        max-width: 320px;
        margin-bottom: 30px;
        text-align: left;
        z-index: 2;
    }

    .mobile .m1 {
        top: 40px;
        left: 55px
    }

    .mobile .m2 {
        top: 275px;
        left: 55px
    }

    .mobile .m3 {
        top: 525px;
        left: 55px
    }

    .mobile .m4 {
        top: 780px;
        left: 55px
    }

    .dot-number {
        font-size: 15px;
    }
}

@media (min-width: 768px) {
    .mb-150 {
        margin-bottom: 150px;
    }
}

d-flex {
    display: flex;
}

/* end Our Process */

/* Trust Indicators */
.trust-orb-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.orb-wrapper {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 500px;
    perspective: 1200px;
}

.orb {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 14px;
    overflow: hidden;
    transition: transform 0.4s ease, width 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
    animation: float 6s ease-in-out infinite;
}

.orb::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e5ff, #7c7cff);
    opacity: 0.25;
    filter: blur(30px);
    z-index: -1;
}

.orb:hover {
    width: 230px;
    height: 230px;
    z-index: 10;
    box-shadow: 0 30px 80px rgba(0, 229, 255, 0.45);
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }

    100% {
        transform: translateY(0);
    }
}

.orb h4 {
    font-size: 16px;
    line-height: 1.2;
    margin: 6px 0 4px;
}

.orb p {
    font-size: 13px;
    line-height: 1.3;
    color: #cfe9ff;
    /* margin: 0; */
}

.orb1 {
    top: 40px;
    left: 13%;
    animation-delay: 0s;
}

.orb2 {
    top: 0;
    left: 42%;
    animation-delay: 1s;
}

.orb3 {
    top: 40px;
    right: 10%;
    animation-delay: 2s;
}

.orb4 {
    top: 280px;
    left: 28%;
    animation-delay: 3s;
}

.orb5 {
    top: 280px;
    right: 25%;
    animation-delay: 4s;
}

@media (max-width: 768px) {

    .trust-orb-section {
        padding: 80px 5%;
    }

    .orb-wrapper {
        position: relative;
        width: 100%;
        height: 900px;
    }

    .orb {
        position: absolute;
        width: 190px;
        height: 190px;
        animation: none;
        transform: none !important;
    }

    .orb:hover {
        width: 210px;
        height: 210px;
    }

    .orb1 {
        top: 0;
        left: 38%;
    }

    .orb2 {
        top: 20%;
        left: 5%;
    }

    .orb3 {
        top: 40%;
        left: 38%;
    }

    .orb4 {
        top: 60%;
        left: 5%;
    }

    .orb5 {
        top: 80%;
        left: 38%;
    }
}

/* end Trust Indicators */

/* Why Choose Us */
.why-section {
    padding: 90px 6%;
    max-width: 85%;
    margin: auto;
}

.flow {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why-section-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 35px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    transform: translateY(60px) scale(0.96);
    transition: 0.8s ease;
}

.why-section-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(10deg, #00e5ff, #7c7cff);
    opacity: 0.25;
}

.why-section-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.why-section-card h4 {
    margin: 0 0 12px;
    font-size: 22px;
}

.why-section-card p {
    margin: 0;
}

.why-section-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 229, 255, 0.25);
}

@media(max-width:600px) {
    .why-section h2 {
        font-size: 30px;
    }

    .why-section-card {
        padding: 24px;
    }
}

.curve circle {
    opacity: 0;
    transform: scale(0.5);
    transition: all 3s ease;
}

.curve.path-animate circle {
    opacity: 1;
    transform: scale(1);
}

/* end Why Choose Us */

/* contact */

.main-contact-section {
    margin-top: 60px;
}

.contact-hero {
    text-align: center;
    padding: 100px 8%;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.floating-circle {
    position: absolute;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #00e5ff33, transparent);
    border-radius: 50%;
    top: -60px;
    left: -60px;
    animation: float 8s infinite ease-in-out;
}

.floating-circle.small {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: -50px;
    top: auto;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40px);
    }
}

.contact-info {
    padding: 0px 10% 70px;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 14px;
    margin-bottom: 25px;
    width: 82%;
    place-self: anchor-center;
}

.info-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #00e5ff, #7c7cff);
    opacity: 0.25;
}

.testimonial-section {
    padding: 50px 8%;
    overflow: hidden;
}

.testimonial-wrapper {
    max-width: 900px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    animation: slide 12s infinite;
}

.testimonial-card {
    min-width: 100%;
    padding: 35px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    text-align: center;
    box-sizing: border-box;
}

.testimonial-card span {
    display: block;
    margin-top: 15px;
    opacity: 0.7;
}

@keyframes slide {

    0%,
    30% {
        transform: translateX(0);
    }

    35%,
    65% {
        transform: translateX(-100%);
    }

    70%,
    100% {
        transform: translateX(-200%);
    }
}

.contact-footer {
    text-align: center;
    padding: 80px 8%;
    background: #0b1120;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards;
}

.delay {
    animation-delay: .3s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media(max-width:768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .main-contact-section {
        margin-top: 0px;
    }
}

.faq-animated {
    padding: 30px 0%;
    max-width: 900px;
    margin: auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: transform .3s;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #00e5ff;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question .icon {
    font-size: 1.6rem;
    transition: transform .4s;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s;
    opacity: 0;
    padding: 0 26px;
}

.faq-item.active .faq-answer {
    max-height: fit-content;
    opacity: 1;
    padding-bottom: 22px;
}

.faq-answer p {
    opacity: .85;
    line-height: 1.6;
}

.service-section {
    padding: 90px 6% 0px;
    max-width: 85%;
    margin: auto;
}
.service-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    animation: fadeUp 0.8s ease forwards;
    height: 290px;
}
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 15px;
    background: linear-gradient(135deg, #00e5ff, #7c7cff);
    opacity: 0.25;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.2);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #0ee5ff;
    transition: all 0.4s ease;
}

.service-card:hover .icon-box {
    background: #0d6efd;
    color: #fff;
    transform: rotate(360deg);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}