a {
    color: #2563eb;
    text-decoration: none;
}
p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}
.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    color: #ffffff;
}
    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    }
section {
    padding: 60px 0;
}

.bg-light {
    background: var(--bg-section);
}

.bg-white {
    background: #ffffff;
}
.small-text {
    color: #9CA3AF;
}
.accent-color {
    color: #2563EB; /* primary blue */
    letter-spacing: 1.5px;
    font-size: 0.75rem;
    text-transform: uppercase;
    background: rgba(37, 99, 235, 0.08); /* light blue bg */
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
}
.section-subtitle {
    color: #6B7280;
    line-height: 1.7;
}
.text-center span {
    opacity: 1 !important;
    visibility: visible !important;
}
/* ===== FOOTER BASE ===== */
.footer-animated {
    background: #0f1538;
    position: relative;
    overflow: hidden;
}

/* ===== GLASS EFFECT CARDS ===== */
.footer-animated .col-lg-3 {
   /* backdrop-filter: blur(10px);*/
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.footer-animated .col-lg-3:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.06);
}

/* ===== LINKS HOVER ===== */
.footer-animated a {
    transition: all 0.3s ease;
}

.footer-animated a:hover {
    color: #4dabff !important;
    padding-left: 5px;
}

/* ===== SOCIAL ICON HOVER ===== */
.footer-animated .btn {
    transition: all 0.3s ease;
}

.footer-animated .btn:hover {
   /* background: #4dabff;*/
    border-color: #4dabff;
    transform: scale(1.1);
}

/* ===== GLOW LINE ===== */
    .footer-animated::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        top: 0;
        left: 0;
        background: var(--primary);
        animation: glowMove 3s linear infinite;
    }

@keyframes glowMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}


.google-reviews {
    background: #F1F5F9;
    color: var(--text-main);
}

.review-card {
    background: #FFFFFF;
    border: 1px solid var(--border);
    padding: 25px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

    .review-card:hover {
        transform: translateY(-5px);
    }

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

    .review-header img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

    .review-header h6 {
        margin: 0;
        font-weight: 600;
    }

.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Swiper spacing */
.reviewSwiper {
    padding-bottom: 40px;
}
/* TEXT ANIMATION */
.hero-content > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

/* Active animation */
.hero-content.active > * {
    opacity: 1;
    transform: translateY(0);
}

/* Delay for smooth sequence */
.hero-content.active h1,
.hero-content.active h2 {
    transition-delay: 0.2s;
}

.hero-content.active p:nth-of-type(1) {
    transition-delay: 0.4s;
}

.hero-content.active p:nth-of-type(2) {
    transition-delay: 0.6s;
}

.hero-content.active a {
    transition-delay: 0.8s;
}
.swiper-slide-active .hero-img {
    transform: scale(1);
    opacity: 1;
}



/* Main Swiper Height */
.heroSwiper {
    width: 100%;
    height: 500px; /* Desktop fixed height */
}

    /* Each Slide */
    .heroSwiper .swiper-slide {
        display: flex;
        align-items: center;
    }

/* Container Full Height */
.hero-section {
    height: 100%;
    display: flex;
    align-items: center;
    background: #FFFFFF;
}

    /* Image Control */
    .hero-section img {
        max-height: 450px;
        width: 100%;
        object-fit: contain; /* important */
    }

    /* Text spacing */
    .hero-section h1 {
        font-size: 38px;
    }
/* Common sidebar styles */
.social-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    transition: all 0.4s ease;
}
    /* Left and right positions */
    .social-sidebar.left {
        left: 0;
    }

    .social-sidebar.right {
        right: 0;
    }

    /* Hide effect */
    .social-sidebar.left.hide-social {
        transform: translateY(-50%) translateX(-100%);
        opacity: 0;
    }

    .social-sidebar.right.hide-social {
        transform: translateY(-50%) translateX(100%);
        opacity: 0;
    }

    /* Icons styling */
    .social-sidebar a {
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        /*  background: #2563EB;*/
        color: #fff;
        /* border-radius: 50%;*/
        transition: all 0.3s ease;
    }

        .social-sidebar a:hover {
            transform: scale(1.1);
            background: #0056b3;
        }

    .social-sidebar.left {
        left: 0 !important;
    }

    .social-sidebar.right {
        right: 0 !important;
    }

.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;
}

.threads {
    background: #111827;
}
    .value-card i,
    .approach-card i,
    .service-card i,
    .trust-card i {
        font-size: 28px;
        margin-bottom: 15px;
        color: var(--primary);
    }
:root {
    /* PRIMARY (20%) */
    --primary: #2563EB;
    --primary-dark: #1E40AF;
    /* WHITE (60%) */
    --bg-main: #FFFFFF;
    /* GRAY (40%) */
    --bg-section: #F8FAFC;
    --text-main: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    /* REMOVE DARK BLUE */
    --bg-dark: #111827; /* replace old dark blue */
    --bg-soft: #F1F5F9;
}
body {
    background: var(--bg-main);
    color: var(--text-main);
}
.bg-soft {
    background-color: var(--bg-soft);
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    color: var(--text-main);
    font-weight: 600;
}

.why-choose-section {
    background-color: #b0b6c7;
    border-radius: 12px;
}
.section-subtitle {
    line-height: 1.8;
}

.text-gradient {
    -webkit-background-clip: text;
    -webkit-text-fill-color: #ff0000;;
}

.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 4px 12px rgba(0,0,0,0.05);
    transition: all 0.35s ease-in-out;
}

    .nexa-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .nexa-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

.icon-circle {
    background: rgba(0, 123, 255, 0.1);
    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 {
    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;
}

.process-card {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    gap: 25px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: .4s ease;
    overflow: hidden;
    margin-bottom: 20px;
    color: #111827;
    border: 1px solid rgba(255,255,255,0.08);
}

    .process-card::after {
        content: "";
        position: absolute;
        right: -60px;
        top: 0;
        width: 150px;
        height: 100%;
        opacity: 0.07;
        border-radius: 80px;
    }

    .process-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #111827;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.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: --primary;
    margin-bottom: 15px;
}

    .why-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.process-row {
    margin-bottom: 50px;
    position: relative;
}

.process-box {
    position: relative;
    border: 3px solid #111827;
    padding: 10px;
    border-radius: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    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: #111827;
    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;
}

.content h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

img {
    max-width: 100%;
}

section.alt-bg {
    background: #F8FAFC;
}

.btn-outline-primary {
    color: #2563EB;
    border: 2px solid #2563EB;
}

    .btn-outline-primary:hover {
        background: var(--primary);
    }

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    backdrop-filter: none;
    transition: .3s ease;
}

.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;
    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;
}

.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: var(--primary);
    color: #fff;
    font-size: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

    .icon-rotate i {
        font-size: 26px;
        background: var(--primary);
        -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 10px 30px rgba(0,0,0,0.08);
    }

.service-text h3 {
    font-weight: 600;
}

.team-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

    .team-item img {
        border-radius: var(--radius-lg);
    }
.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: #101443;
        font-weight: 400;
    }

        .service-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 2px;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--primary);
            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: #111827;
    
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    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;
    }

@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: #111827;
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    z-index: 9999;
    font-size: 14px;
}

    .cookie-consent a {
        color: #ffe082;
        font-weight: 500;
        text-decoration: underline;
    }

        .cookie-consent a:hover {
            color: #ffffff;
        }

    .cookie-consent .btn {
        background-color: #ffffff;
        color: var(--primary);
        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;
    }
.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: var(--primary);
        background-size: 300% 300%;
        animation: borderMove 8s linear infinite;
        -webkit-mask: var(--primary);
        -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: var(--primary);
        background-size: 300% 300%;
        animation: borderFlow 10s linear infinite;
        -webkit-mask: var(--primary);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

    .premium-border:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 30px 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: var(--primary);
        margin-bottom: 16px;
    }

    .industry-card h6 {
        font-weight: 600;
        margin-bottom: 0;
    }

    .industry-card:hover {
        transform: translateY(-6px);
        border-color: #2563EB;
        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 10px 30px rgba(0,0,0,0.08);
    }

    .job-card h5 {
        font-weight: 600;
    }

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 55px; /* move to left as discussed */

    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

/* Pulse Animation */
@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hover */
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
}
.whatsapp-tooltip {
    position: absolute;
    left: 70px; /* because button is now left */

    background: #1f2937;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}
.portfolio-section {
    padding: 80px 0;
    background: #F1F5F9;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    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: var(--primary);
    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: #2563EB;
        color: white;
    }

.portfolio-cta {
    background: var(--primary);
    color: #fff;
    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 10px 30px rgba(0,0,0,0.08);
    }

.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: #F8FAFC;
    color: #111827;
    border-radius: 10px;
    border: 1px solid #1e1e81;
}

.section-dark-alt {
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    border: 1px solid #000000;
}

.dark-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

    .dark-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.highlight-box {
    background: var(--primary);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
}
.process-section {
    /*  background: var(--primary);*/
    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;
}

.why-card i {
    font-size: 28px;
    color: #2563eb;
    margin-bottom: 10px;
}

.btn-outline-light {
    border-radius: 30px;
}

.feature-card h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 5px;
}


.owl-nav {
    text-align: center;
    font-size: 2em;
}

.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: var(--primary);
        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: var(--primary);
    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-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%;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes floatBg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 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);
    }
.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    color: #2563eb;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    display: none; /* IMPORTANT */
    z-index: 999;
    cursor: pointer;
}

    /* SHOW WHEN SCROLL */
    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    /* HOVER EFFECT */
    .back-to-top:hover {
        background: #2563eb;
        color: #ffffff;
        transform: translateY(-4px);
    }
.hero-text {
    color: #6b7280;
    max-width: 600px;
}

.card-box {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

    .feature-box:hover {
        transform: translateY(-6px);
    }

.benefit-box {
    padding: 15px;
}

/*.cta-dark {
    background: #1e293b;
    color: #fff;
}
*/
.btn-primary {
    background: #2563eb;
    border: none;
    color: #ffffff;
}
/* Common image styling */
.feature-box img {
    width: 100%;
    height: 250px; /* FIXED HEIGHT */
    object-fit: cover; /* crop image nicely */
    border-radius: 10px;
}

/* HERO IMAGE (slightly bigger) */
.hero-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
}
.feature-box img,
.card-box img {
    transition: 0.3s;
}

.feature-box:hover img,
.card-box:hover img {
    transform: scale(1.05);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.feature-card h6 {
    font-weight: 600;
    color: #222;
}

.feature-card .icon {
    width: 55px;
    height: 55px;
    margin: auto;
    border-radius: 50%;
    background: #2563EB;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* REMOVE THESE - They are duplicates of later definitions */
.feature-card, .service-card, .benefit-card, .why-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
}

.value-card, .approach-card, .service-card, .trust-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: .3s;
    height: 100%;
}
/* REMOVE THIS - It clashes with your .footer-animated class */
footer {
    background: var(--primary);
}
.feature-section {
    width: 80%;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
}



/* Updated New Css for Better Padding */

/* Light section background */
.section-light {
    background: #F1F5F9;
    padding: 10px 0; /* Reduced padding */
}

/* White section background */
.section-white {
    background: #ffffff;
    padding: 10px 0; /* Reduced padding */
}

/* Automation Hero Section */
.automation-hero {
    padding: 20px 0; /* Reduced padding */
}

/* Hero Title */
.hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #111827;
}

/* Hero Subtitle */
.hero-subtitle {
   /* max-width: 700px;*/
    margin: 0 auto;
    color: #6B7280;
    font-size: 18px;
}

/* Section Title */
.section-title {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

/* Section Subtitle */
.section-subtitle {
    color: #6B7280;
  /*  max-width: 650px;*/
    margin: 0 auto 10px; /* Reduced bottom margin */
}

/* Card Styles */
.card-nexa {
    padding: 10px; /* Reduced padding */
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    height: 100%;
}

.card-step {
    padding: 10px; /* Reduced padding */
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
}

/* List Items for Nexa */
.nexa-list li {
    margin-bottom: 8px; /* Reduced margin */
    color: #374151;
}

/* Automation CTA Section */
.automation-cta {
    background: #F1F5F9;
    color: #ffffff;
    padding: 60px 0; /* Reduced padding */
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

/* Tech Item */
.tech-item {
    text-align: center;
    background-color: #ffffff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .tech-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .tech-item img.tech-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .tech-item span {
        font-size: 16px;
        font-weight: 600;
        color: #111827;
    }

/* Tech Stack Title */
.tech-stack-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.tech-stack-section p {
    font-size: 16px;
    color: #6B7280;
    margin-top: 20px;
}