
.social-sidebar {
    position: fixed;
    top: 40%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

    .social-sidebar a {
        display: block;
        padding: 12px 16px;
        color: #fff;
        font-size: 18px;
        text-align: center;
        transition: 0.3s;
    }

        .social-sidebar a:hover {
            padding-right: 25px;
        }

.facebook {
    background: #1877f2;
}

.instagram {
    background: #E4405F;
}

.linkedin {
    background: #0077b5;
}

.youtube {
    background: #ff0000;
}

.twitter {
    background: #000;
}

.telegram {
    background: #0088cc;
}

.whatsapp {
    background: #25D366;
}

.email {
    background: #ff9800;
}

.call {
    background: #28a745;
}

@media(max-width:768px) {

    .social-sidebar {
        top: 55%;
    }

        .social-sidebar a {
            padding: 6px 7px;
            font-size: 12px;
            width: 32px;
        }

            .social-sidebar a i {
                font-size: 12px;
            }
}

.social-sidebar.hide-social {
    opacity: 0;
    transform: translateY(-50%) translateX(100%);
    transition: all 0.4s ease;
}

.social-sidebar {
    transition: all 0.4s ease;
}
.value-card,
.approach-card,
.service-card,
.trust-card {
    background: #ffffff08;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: .3s;
    box-shadow: 0 5px 20px rgba(0,0,0,.05);
    height: 100%;
}

    .value-card:hover,
    .approach-card:hover,
    .service-card:hover,
    .trust-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,.1);
    }

    .value-card i,
    .approach-card i,
    .service-card i,
    .trust-card i {
        font-size: 28px;
        margin-bottom: 15px;
        color: #0d6efd;
    }

/* Mobile View Fix */
@media (max-width: 767px) {
    .nexa-card {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

        .nexa-card .icon-circle {
            margin-right: 0 !important;
            margin-bottom: 15px;
        }
}
@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        max-width: 95%;
    }
}
:root {
    --nexa-navy: #0a1d37;
    --nexa-blue: #007bff;
    --nexa-blue-dark: #0056b3;
    --nexa-light-bg: #f8fbff;
    --nexa-text-gray: #5e6d82;
    --primary: #0d6efd;
    --secondary: #6610f2;
    --accent: #20c997;
    --bg-main: #0b0f19;
    --bg-section: #11162a;
    --bg-card: #151a30;
    --text-main: #ffffff;
    --text-muted: #b8c1ec;
    --radius-lg: 18px;
    --theme-color: #5b3df5;
    🔵 change to your brand color --light-bg: #f4f6fb;
}

.why-choose-section {
    background-color: #b0b6c7;
    border-radius: 12px;
}

.accent-color {
    color: var(--nexa-blue);
    letter-spacing: 2px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.main-title {
    color: var(--nexa-navy);
}

.section-subtitle {
    color: var(--nexa-text-gray);
    line-height: 1.8;
}

.text-gradient {
    background: linear-gradient(135deg, var(--nexa-blue), var(--nexa-blue-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ls-1 {
    letter-spacing: 1px;
}

.text-muted-custom {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.nexa-card {
    background: #ffffff;
    border: 1px solid rgba(0, 123, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(10, 29, 55, 0.05);
    transition: all 0.35s ease-in-out;
}

    .nexa-card:hover {
        transform: translateY(-6px);
        border-color: var(--nexa-blue);
        box-shadow: 0 15px 35px rgba(0, 123, 255, 0.12);
    }

    .nexa-card h3 {
        color: var(--nexa-navy);
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

.icon-circle {
    background: rgba(0, 123, 255, 0.1);
    color: var(--nexa-blue);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.nexa-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--nexa-blue), var(--nexa-blue-dark));
    color: #ffffff;
}

[class*="col-"] {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.btn-link {
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
}

.section-title h2 {
    font-weight: 700;
    font-size: 38px;
}

.section-title .highlight {
    color: var(--theme-color);
}

.section-title p {
    color: #6c757d;
    max-width: 600px;
}

.process-card {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: .4s ease;
    overflow: hidden;
    margin-bottom: 20px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
}

    .process-card::after {
        content: "";
        position: absolute;
        right: -60px;
        top: 0;
        width: 150px;
        height: 100%;
        background: var(--theme-color);
        opacity: 0.07;
        border-radius: 80px;
    }

    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(13,110,253,.25);
    }

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #2d3e50;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-content h4 {
    font-weight: 600;
    margin-bottom: 12px;
}

.premium-section h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.premium-section .subtitle {
    color: #cbd5e1;
    margin: 0 auto 50px;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 10px;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
}

    .glass-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.15);
    }

.process-number {
    font-size: 40px;
    font-weight: 700;
    color: #38bdf8;
    margin-bottom: 15px;
}

.why-card {
    color: #111;
    border-radius: 15px;
    padding: 10px;
    transition: 0.3s;
    height: 100%;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.process-row {
    margin-bottom: 50px;
    position: relative;
}

.process-box {
    position: relative;
    border: 3px solid #2d3e50;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    max-width: 520px;
}

    .process-box.left {
        margin-left: auto;
    }

    .process-box.right {
        margin-right: auto;
    }

.step-number {
    top: 50px;
    right: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 15px;
}

.process-emoji {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: #2d3e50;
    border-radius: 50%;
    margin-bottom: 14px;
}

.process-box h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-section {
    width: 80%;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
}

.feature-card {
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

.content h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.content p {
    margin: 0;
    line-height: 1.6;
}

.feature-card .content {
    margin: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

img {
    max-width: 100%;
}

    section.alt-bg {
        background: linear-gradient(180deg, var(--bg-section), var(--bg-main));
    }

p {
    font-size: 16px;
    color: #ffff;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: #fff;
}

    .btn-outline-primary:hover {
        background: var(--primary);
    }

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9;
    background: transparent;
    backdrop-filter: blur(10px);
    transition: .3s ease;
    border-bottom: 1px solid #733eed;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.navbar-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.25) contrast(1.2) drop-shadow(0 3px 10px rgba(0,0,0,.6));
}

.navbar-nav .nav-link {
    height: 50px;
    padding: 0 22px;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }

.navbar-spacer {
    height: 85px;
}

#header-carousel {
    min-height: 50vh;
    max-height: 50vh;
    overflow: hidden;
}

    #header-carousel .carousel-inner,
    #header-carousel .carousel-item {
        height: 100%;
    }

    #header-carousel img {
        width: 100%;
        height: 100%;
    }

.carousel-caption {
    padding-top: 100px;
    background: linear-gradient(180deg, rgba(11,15,25,0.85), rgba(11,15,25,0.95));
    text-align: center;
}

    .carousel-caption p {
        max-width: 720px;
        margin: 0 auto;
    }

.carousel-image-wrap {
    text-align: center;
}

    .carousel-img,
    .carousel-image-wrap img {
        max-height: 380px;
        width: auto;
        object-fit: contain;
    }

.process-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.process-text h5 {
    font-weight: 600;
    margin-bottom: 8px;
}

.icon-rotate {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fullRotate 6s linear infinite;
    background: linear-gradient(135deg, #4f46e5, #06b6d4);
    color: #fff;
    font-size: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

    .icon-rotate i {
        font-size: 26px;
        background: linear-gradient(135deg,#9b5cff,#ff4fd8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@keyframes fullRotate {

    to {
        transform: rotate(360deg);
    }
}

.service-item {
    position: relative;
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    transition: .4s ease;
}

    .service-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 30px 80px rgba(37,99,235,.3);
    }

.service-text h3 {
    color: #fff;
    font-weight: 600;
}

.service-text p {
    color: #cbd5f5;
}

.team-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .team-item img {
        border-radius: var(--radius-lg);
    }

footer {
    background: linear-gradient(180deg, #0b0f19, #070a14);
}

.footer {
    padding: 70px 0;
    font-size: 14px;
    color: var(--text-muted);
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    max-width: 700px;
}

    .service-list li {
        position: relative;
        padding-left: 42px;
        margin-bottom: 18px;
        font-size: 18px;
        line-height: 1.6;
        color: #e5e7eb;
        font-weight: 400;
    }

        .service-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0d6efd, #6610f2);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

.modal-dialog.modal-responsive {
    max-width: 900px;
    width: 90%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-modal-content {
    background: linear-gradient(135deg, #1a1a2e, #162447);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    color: #ffffff;
}

.consultation-modal-title {
    color: #ffffff;
    font-size: 1.5rem;
}

.consultation-modal-content .form-control,
.consultation-modal-content .form-select {
    background-color: #2c2c44;
    color: #ffffff;
    border: 1px solid #444;
}

    .consultation-modal-content .form-control::placeholder {
        color: #bbb;
    }

.consultation-btn {
    background-color: #6f42c1;
    border: none;
    color: #ffffff;
}

    .consultation-btn:hover {
        background-color: #5a36a0;
    }

.back-to-top {
    position: fixed;
    bottom: 39px;
    left: 50px;
    z-index: 999;
    background: none;
    color: #0d6efd;
    font-size: 67px;
    font-weight: 800;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        color: #6610f2;
    }

.carousel-line-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

    .carousel-line-indicators button {
        width: 35px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .carousel-line-indicators button.active {
            background: #0d6efd;
        }

        .carousel-line-indicators button:hover {
            background: rgba(255, 255, 255, 0.8);
        }

.carousel-item .hero-text,
.carousel-item .hero-image {
    opacity: 0;
}

.carousel-item.active .hero-text {
    animation: textFast 0.4s ease-out forwards;
}

.carousel-item.active .hero-image {
    animation: imageFast 0.45s ease-out forwards;
}

@keyframes textFast {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes imageFast {

    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: auto;
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    z-index: 9999;
    font-size: 14px;
}

    .cookie-consent p {
        margin: 0;
        line-height: 1.6;
    }

    .cookie-consent a {
        color: #ffe082;
        font-weight: 500;
        text-decoration: underline;
    }

        .cookie-consent a:hover {
            color: #ffffff;
        }

    .cookie-consent .btn {
        background-color: #ffffff;
        color: #0d6efd;
        border: none;
        padding: 6px 18px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

        .cookie-consent .btn:hover {
            background-color: #e9ecef;
            color: #0b5ed7;
        }

.cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .cta-row .read-more-btn {
        margin-left: auto;
        border-radius: 30px;
        padding: 10px 22px;
        font-weight: 500;
    }

    .cta-row .btn-primary {
        border-radius: 30px;
        padding: 10px 26px;
        font-weight: 600;
    }

.read-more-btn {
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
}

    .read-more-btn:hover {
        background: rgba(255,255,255,0.1);
    }

.solution-card {
    position: relative;
    border-radius: 18px;
    padding: 10px;
    overflow: hidden;
    z-index: 1;
    background: #88b5f824;
}

    .solution-card::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        border-radius: 18px;
        background: linear-gradient(169deg, #4f46e5, #2d3e50, #2d3e50, #4f46e5);
        background-size: 300% 300%;
        animation: borderMove 8s linear infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

@keyframes borderMove {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.premium-border {
    position: relative;
    border-radius: 18px;
    padding: 22px 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

    .premium-border::before {
        content: "";
        position: absolute;
        inset: 0;
        padding: 1px;
        background: linear-gradient( 120deg, #4f46e5, #06b6d4, #22c55e, #4f46e5 );
        background-size: 300% 300%;
        animation: borderFlow 10s linear infinite;
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .premium-border:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    }

        .premium-border:hover::before {
            animation-duration: 4s;
        }

@keyframes borderFlow {

    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

.premium-border:hover .icon-rotate {
    transform: rotate(12deg) scale(1.08);
}

.industry-card {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

    .industry-card i {
        font-size: 34px;
        color: #0d6efd;
        margin-bottom: 16px;
    }

    .industry-card h6 {
        font-weight: 600;
        margin-bottom: 0;
    }

    .industry-card:hover {
        transform: translateY(-6px);
        border-color: #0d6efd;
        box-shadow: 0 12px 30px rgba(13,110,253,0.15);
    }

.service-card {
    background-color: #141844;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    padding: 36px 26px;
    transition: all 0.3s ease;
}

    .service-card i {
        font-size: 36px;
        color: #0d6efd;
        margin-bottom: 18px;
    }

    .service-card h5 {
        font-weight: 600;
        margin-bottom: 10px;
    }

    .service-card p {
        color: #6c757d;
        margin-bottom: 0;
    }

    .service-card:hover {
        transform: translateY(-6px);
        border-color: #0d6efd;
        box-shadow: 0 14px 35px rgba(13,110,253,0.15);
    }

.benefit-card,
.why-card {
    border: 1px solid #e5e7eb;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .benefit-card i,
    .why-card i {
        font-size: 32px;
        color: #0d6efd;
        margin-bottom: 15px;
    }

    .benefit-card:hover,
    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.career-card,
.job-card,
.process-card {
    border: 1px solid #e5e7eb;
    padding: 28px 22px;
    border-radius: 18px;
    transition: all 0.3s ease;
}

    .career-card i,
    .process-card i {
        font-size: 60px;
        color: #b8a4d0;
        margin-bottom: 15px;
    }

    .career-card:hover,
    .job-card:hover,
    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

    .job-card h5 {
        font-weight: 600;
    }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    z-index: 999;
    cursor: pointer;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #111;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-section {
    padding: 80px 0;
    background: #1b245059;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

    .portfolio-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: 0.4s ease;
    }

    .portfolio-card:hover img {
        transform: scale(1.1);
    }

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: white;
    padding: 25px;
    opacity: 0;
    transition: 0.4s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.filter-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    background: #e2e8f0;
    margin: 5px;
    transition: 0.3s;
}

    .filter-btn:hover,
    .filter-btn.active {
        background: #0d6efd;
        color: white;
    }

.portfolio-cta {
    background: #0d6efd;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.process-card-dark {
    background: rgba(255,255,255,0.04);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s ease;
    height: 100%;
}

    .process-card-dark:hover {
        transform: translateY(-8px);
        border-color: #3b82f6;
        box-shadow: 0 15px 35px rgba(59,130,246,0.3);
    }

.glass-card-dark {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
    height: 100%;
}

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

.icon-glow {
    font-size: 40px;
    margin-bottom: 20px;
    color: #b8a4d0;
}

.hero-dark {
    background: #1b2141;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #1e1e81;
}

.section-dark-alt {
    background: linear-gradient(84deg, #0a0f2966, #0a0f2966);
    color: #fff;
    border-radius: 10px;
    border: 1px solid #000000;
}

.dark-card {
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
}

    .dark-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

.highlight-box {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
}

.testimonial-item {
    min-height: 380px;
    max-height: 380px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0.5em;
    border-radius: 20px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

    .testimonial-item span {
        font-weight: 600;
        margin-top: 15px;
        display: block;
        color: #cbd5e1;
    }

.process-section {
    background: linear-gradient(84deg, #0a0f2966, #0a0f2966);
    color: #fff;
    border-radius: 10px;
    border: 1px solid #000000;
}

    .process-section h1 {
        font-size: 42px;
        margin: auto;
    }
.card {
    border: none;
    border-radius: 18px;
    transition: 0.3s ease;
}

    .card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }

.benefit-card {
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .benefit-card i {
        font-size: 28px;
        color: #3b82f6;
        margin-bottom: 10px;
    }

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

.why-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
}

.btn-outline-light {
    border-radius: 30px;
}

.feature-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}

.feature-card p {
    color: #cbd5e1;
    margin-bottom: 0;
}

.owl-nav {
    text-align: center;
    font-size: 2em;
}

@media (max-width: 768px) {
    .process-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .icon-box {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        position: relative;
        background: #0b0f19;
        z-index: 1040;
    }

    .mobile-menu-wrapper {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: #07122a;
    }

    .mobile-menu {
        position: absolute;
        inset: 0;
        padding: 20px;
        transition: transform 0.4s ease, opacity 0.3s ease;
        background: #07122a;
        transform: translateX(100%);
        opacity: 0;
        pointer-events: none;
    }

    .main-menu {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .services-menu {
        transform: translateX(-100%);
    }

    .company-menu {
        transform: translateX(100%);
    }

    .mobile-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        color: #fff;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .submenu-header {
        display: flex;
        align-items: center;
        gap: 20px;
        font-weight: 600;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        color: #fff;
    }

    .back-main {
        cursor: pointer;
        color: #4da6ff;
    }
}

@media (max-width: 767px) {
    .process-box {
        max-width: 100%;
    }

        .process-box.left,
        .process-box.right {
            margin: 0;
        }
}

@media (max-width: 768px) {
    .feature-section {
        width: auto;
        padding-left: 0;
    }

        .feature-section::before {
            display: none;
        }

    .feature-card {
        padding: 25px;
    }

    .icon-circle {
        position: static;
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    #header-carousel img {
        object-fit: cover;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    #header-carousel img {
        object-fit: cover;
    }
}

@media (max-width: 991px) {
    .navbar {
        position: fixed;
        top: 0;
        background: #0b0f19;
        height: 75px;
    }

    .navbar-spacer {
        height: 95px;
    }

    .navbar-collapse {
        z-index: 1056;
        background-color: #0b0f19;
        margin-top: 10px;
        border-radius: 12px;
        padding: 15px 10px;
    }

    .navbar-nav {
        width: 100%;
        text-align: center;
        margin-top: 1px;
    }

        .navbar-nav .nav-link {
            padding: 12px 0;
            font-size: 16px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

            .navbar-nav .nav-link:last-child {
                border-bottom: none;
            }

    .dropdown-menu {
        position: relative !important;
        float: none;
        background-color: #111827;
        border: none;
        border-radius: 10px;
        margin-top: 8px;
        padding: 8px 0;
        text-align: center;
    }

    .dropdown-item {
        color: #ffffff;
        padding: 12px 20px;
    }

        .dropdown-item:hover {
            background-color: #1f2937;
            color: var(--primary);
        }

    .d-lg-flex {
        display: none !important;
    }

    .mobile-cta {
        margin-top: 15px;
    }

        .mobile-cta .btn {
            width: 100%;
        }

    #header-carousel {
        min-height: 103vh;
        max-height: 103vh;
    }

        #header-carousel .carousel-item img {
            height: 400px;
        }
}

@media (max-width: 768px) {
    #header-carousel {
        min-height: auto;
    }

        #header-carousel .carousel-item {
            padding-bottom: 60px;
        }

    .carousel-image-wrap img {
        max-height: 400px;
    }

    .col-md-4, .col-md-3 {
        width: 100%;
    }

    .service-card, .feature-box {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    #header-carousel {
        min-height: 105vh;
        max-height: 105vh;
    }

        #header-carousel .carousel-item img {
            height: 320px;
        }

    h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    p {
        font-size: 25px;
    }

    p, li {
        font-size: 15px;
        line-height: 1.7;
    }
    .service-list li {
        font-size: 16px;
        padding-left: 34px;
        margin-bottom: 14px;
    }

        .service-list li::before {
            width: 22px;
            height: 22px;
            font-size: 12px;
        }
}

@media (min-width: 992px) {
    .service-list li {
        transition: transform 0.25s ease, color 0.25s ease;
    }

        .service-list li:hover {
            transform: translateX(6px);
            color: #ffffff;
        }
}

@media (max-width: 767px) {
    .modal-dialog.modal-responsive {
        width: 100%;
        height: 100%;
        margin: 0;
        max-width: 100%;
    }

    .modal-content.consultation-modal-content {
        border-radius: 0;
        height: 100%;
    }

    .modal-body {
        overflow-y: auto;
    }
}

@media (min-width: 992px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
        background: linear-gradient(135deg, #0b0f2f, #10173a);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
        padding-top: 12px;
        padding-bottom: 12px;
        transition: all 0.3s ease;
    }

    .navbar-nav .nav-link {
        color: #ffffff;
        font-weight: 500;
        padding: 8px 16px;
        transition: color 0.3s ease;
    }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: #6f42c1;
        }

    .dropdown-menu {
        background: #0f1538;
        border: none;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.45);
    }

    .dropdown-item {
        color: #ffffff;
        padding: 10px 18px;
    }

        .dropdown-item:hover {
            background: rgba(111, 66, 193, 0.15);
            color: #6f42c1;
        }

    .openConsultation {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        border: none;
        border-radius: 25px;
        padding: 10px 22px;
        font-weight: 600;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .openConsultation:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
        }

    body {
        padding-top: 10px;
    }
}

@media (min-width: 576px) {
    .container-sm, .container {
        padding-top: 10px;
    }
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    h1, h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 18px !important;
    }

    h4 {
        font-size: 20px !important;
    }

    p {
        font-size: 15px !important;
    }
    #header-carousel .carousel-item {
        padding-top: 10px;
        padding-bottom: 30px;
    }

    .hero-row {
        flex-direction: column-reverse;
        text-align: center;
    }

        .hero-row .col-lg-6 {
            width: 100%;
        }

    .carousel-image-wrap img {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .carousel-item h5 {
        font-size: 14px !important;
    }

    .carousel-item .btn {
        padding: 10px 22px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .container > .row.align-items-center img {
        margin-bottom: 20px;
    }

    .row.g-4 > div {
        margin-bottom: 15px;
    }

    .service-item {
        margin-bottom: 40px;
    }

        .service-item .row {
            flex-direction: column;
            text-align: center;
        }

    .service-img {
        padding: 15px !important;
    }

    .service-text {
        padding: 0 !important;
    }

        .service-text h3 {
            font-size: 18px !important;
        }

        .service-text h6 {
            font-size: 14px !important;
        }

        .service-text .btn {
            margin-top: 10px;
        }

    .process-card {
        margin-bottom: 15px;
    }

    .process-content {
        flex-direction: row;
        gap: 12px;
    }

    .process-text h5 {
        font-size: 16px !important;
    }

    .testimonial-carousel,
    .process-card p {
        font-size: 14px !important;
        text-align: center;
    }

    .btn {
        width: 100%;
        margin: 8px auto;
        display: block;
    }
}

@media (max-width: 767px) {
    .solution-box,
    .service-item,
    .crm-box,
    .ecommerce-box,
    .app-box {
        display: flex !important;
        flex-direction: column !important;
        text-align: center;
    }

        .solution-box img,
        .service-item img {
            width: 100%;
            max-width: 100%;
            margin-bottom: 20px;
        }

    .solution-content,
    .service-text {
        padding: 0 !important;
    }

        .solution-content h2,
        .service-text h3 {
            font-size: 20px !important;
            line-height: 1.3;
        }

        .solution-content h6,
        .service-text h6 {
            font-size: 14px !important;
        }

        .solution-content p,
        .service-text p {
            font-size: 15px !important;
            line-height: 1.6;
        }

        .solution-content .btn,
        .service-text .btn {
            margin: 16px auto 0;
            display: inline-flex;
            justify-content: center;
        }
}

@media (max-width: 768px) {
    .carousel-line-indicators button {
        width: 25px;
        height: 3px;
    }
}

@media (max-width: 768px) {
    .carousel-item.active .hero-text,
    .carousel-item.active .hero-image {
        animation-duration: 0.35s;
    }
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 18px;
    }

    .feature-card {
        display: flex;
    }
}

@media (max-width: 768px) {
    .cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

        .cta-row .read-more-btn {
            margin-left: 0;
        }
}

@media (max-width: 768px) {
    .back-to-top {
        left: 15px;
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
#header-carousel {
    position: relative;
    overflow: hidden;
}

    /* Overlay */
    #header-carousel::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgb(0 0 0 / 8%);
        z-index: 1;
        pointer-events: none; /* THIS FIXES BUTTON CLICK ISSUE */
    }

    /* Ensure content stays above overlay */
    #header-carousel .carousel-item,
    #header-carousel .carousel-caption,
    #header-carousel .container,
    #header-carousel .row {
        position: relative;
        z-index: 2;
    }
/* Force Nexa Step Breadcrumb */

.fn-breadcrumb {
    font-size: 14px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumb-item-step {
    display: flex;
    align-items: center;
    position: relative;
    padding: 8px 18px;
    background: #f1f5fb;
    border-radius: 30px;
    margin-right: 25px;
    font-weight: 500;
    color: #0a1d37;
    transition: 0.3s ease;
}

    .breadcrumb-item-step a {
        text-decoration: none;
        color: #0a1d37;
    }

    .breadcrumb-item-step.completed {
        background: #e6f0ff;
    }

    .breadcrumb-item-step.active {
        background: linear-gradient(135deg, #007bff, #0056b3);
        color: #fff;
    }

        .breadcrumb-item-step.active::after {
            display: none;
        }

    .breadcrumb-item-step::after {
        content: "›";
        position: absolute;
        right: -18px;
        font-size: 18px;
        color: #999;
    }

    .breadcrumb-item-step:last-child::after {
        display: none;
    }

/* ===== SOLUTIONS PAGE STYLES ===== */

.solutions-hero {
    background: linear-gradient(135deg, #0a1d37, #007bff);
    color: #ffffff;
    padding: 80px 20px;
}

    .solutions-hero h1 {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 20px;
    }

.hero-subtext {
    max-width: 750px;
    margin: 0 auto 30px;
    font-size: 18px;
    opacity: 0.9;
}

.section-header {
    margin-bottom: 60px;
}

    .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 15px;
    }

.solution-block {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

    .solution-block.reverse {
        flex-direction: row-reverse;
    }

.solution-image img {
    width: 100%;
    border-radius: 12px;
}

.solution-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 500;
    transition: 0.3s ease;
}

    .btn-primary-custom:hover {
        background: #0056b3;
    }

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {

    .solution-block,
    .solution-block.reverse {
        flex-direction: column;
        text-align: center;
    }

    .solutions-hero h1 {
        font-size: 28px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .solution-content h3 {
        font-size: 22px;
    }
}
.btn-outline-dark {
    color: #413cfd!important;
    border-color: #0d0d0d;
}
.p-4.rounded.shadow-sm.h-100 {
    background-color: #272175;
    border: 2px solid #5179af;
}
#footerParticles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer {
    position: relative;
    overflow: hidden;
}
/* Animated Gradient Background */
.footer-animated {
    position: relative;
   /* background: linear-gradient(-45deg, #0f172a, #111827, #1e293b, #0f172a);
    background-size: 400% 400%;*/
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Optional subtle overlay pattern */
.footer-animated::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03), transparent 40%), radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03), transparent 40%);
    animation: floatBg 18s linear infinite;
}

@keyframes floatBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Keep content above animation */
.footer-animated .container {
    position: relative;
    z-index: 2;
}

/* Remove default bootstrap icon */
.navbar-toggler {
    border: none;
    background: transparent;
}

.toggler-icon {
    width: 28px;
    height: 2px;
    background: #fff;
    display: block;
    position: relative;
    transition: all 0.3s ease-in-out;
}

    .toggler-icon::before,
    .toggler-icon::after {
        content: "";
        width: 28px;
        height: 2px;
        background: #fff;
        position: absolute;
        left: 0;
        transition: all 0.3s ease-in-out;
    }

    .toggler-icon::before {
        top: -8px;
    }

    .toggler-icon::after {
        top: 8px;
    }

/* When menu open */
.navbar-toggler.active .toggler-icon {
    background: transparent;
}

    .navbar-toggler.active .toggler-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .navbar-toggler.active .toggler-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }