/* Import original Tendzify homepage CSS */
@import url("/assets/web/css/main.css");
@import url("/assets/web/css/header-footer.css");
@import url("/assets/web/css/auth.css");
@import url("/assets/web/css/responsive.css");
@import url("/assets/web/css/chat.css");

/* Inline page-specific styles copied from homepage Blade */
body.index {
    background: none !important;
    background-color: transparent !important;
}

/* ShaderGradient Background */
.shader-gradient-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #000070 0%, #000428 50%, #000850 100%);
    background-size: 200% 200%;
    animation: gradientShift 20s ease infinite;
}

.shader-gradient-container.animated-fallback {
    background: 
        linear-gradient(135deg, #000070 0%, #000428 25%, #000850 50%, #000428 75%, #000070 100%),
        linear-gradient(225deg, #000428 0%, #000850 25%, #000070 50%, #000850 75%, #000428 100%);
    background-size: 400% 400%;
    background-position: 0% 50%, 100% 50%;
    animation: seamlessGradient 25s ease-in-out infinite;
}

@keyframes seamlessGradient {
    0% {
        background-position: 0% 50%, 100% 50%;
    }
    25% {
        background-position: 50% 0%, 50% 100%;
    }
    50% {
        background-position: 100% 50%, 0% 50%;
    }
    75% {
        background-position: 50% 100%, 50% 0%;
    }
    100% {
        background-position: 0% 50%, 100% 50%;
    }
}

.shader-gradient-container canvas {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.shader-gradient-container:has(canvas) {
    background: none;
    animation: none;
}

/* Ensure content is above background */
main {
    position: relative;
    z-index: 1;
}

header, section, footer {
    position: relative;
    z-index: 1;
}

/* ========== Shared card design system (consistent radius, border, glow, hover) ========== */
:root {
    --card-radius: 13px;
    --card-border: 1px solid rgba(100, 160, 255, 0.25);
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
                   0 0 1px 0 rgba(100, 160, 255, 0.15);
    --card-hover-lift: -5px;
    --card-hover-shadow: 0 10px 40px rgba(0, 0, 0, 0.28), 0 10px 30px rgba(1, 150, 255, 0.15),
                        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    --card-hover-border: rgba(100, 160, 255, 0.5);
}

.platform-card {
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.platform-card:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: linear-gradient(180deg, rgba(18, 30, 72, 0.9) 0%, rgba(10, 22, 55, 0.95) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.08) 0%, rgba(1, 150, 255, 0.14) 97.48%);
}

.platform-card__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: rgba(180, 220, 255, 0.9);
    font-size: 18px;
}

.platform-card__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.platform-card__description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    margin: 0 0 14px 0;
}

.platform-card__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 4px 0 14px 0;
    border: none;
}

.platform-card__meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.card-meta-panel {
    background: rgba(248, 250, 252, 0.95);
    border-radius: 10px;
    padding: 12px 14px;
    margin-top: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.card-meta-panel .meta-line {
    font-size: 13px;
    color: #374151;
    margin: 0;
    line-height: 1.5;
}

.card-meta-panel .meta-line + .meta-line {
    margin-top: 4px;
}

.project_card .card-meta-chip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 0 10px;
    background: rgba(248, 250, 252, 0.92);
    border-radius: 10px;
    padding: 10px 14px;
    height: 44px;
    min-height: 44px;
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.03);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.project_card:hover .card-meta-chip {
    background: rgba(252, 253, 254, 0.96);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.project_card .card-meta-chip .card-meta-chip__text,
.project_card .card-meta-chip .card-meta-chip__separator,
.project_card .card-meta-chip .card-meta-chip__budget {
    flex-shrink: 0;
}

.project_card .card-meta-chip .card-meta-chip__category {
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.card-meta-chip__text {
    font-size: 12px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
}

.card-meta-chip__separator {
    color: #d1d5db;
    font-weight: 500;
    user-select: none;
    font-size: 10px;
    margin: 0 4px;
}

.card-meta-chip__budget {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(26, 71, 229, 0.14);
    color: #1e40af;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    transition: background 0.25s ease, color 0.25s ease;
}

.project_card:hover .card-meta-chip__budget {
    background: rgba(26, 71, 229, 0.18);
    color: #1d4ed8;
}

.card-meta-chip__category {
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card-meta-chip__actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    margin-left: auto;
    padding-left: 12px;
}

.card-meta-chip__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(26, 71, 229, 0.08);
    color: #1e40af;
    font-size: 12px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.card-meta-chip__actions a:hover {
    background: rgba(26, 71, 229, 0.18);
    color: #1d4ed8;
    box-shadow: 0 0 12px rgba(26, 71, 229, 0.25);
}

.project_card:hover .card-meta-chip__actions a {
    background: rgba(26, 71, 229, 0.1);
}

.project_card__activity {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project_card__activity::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.95);
    flex-shrink: 0;
}

.project_card__status { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; }
.project_card__action { margin-top: 12px; }

.work_blog .row {
    display: flex;
    flex-wrap: wrap;
}

.work_blog .row > [class*="col-"] {
    display: flex;
    align-items: stretch;
}

.work_blog .work_bx {
    width: 100%;
    min-height: 248px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    border-radius: var(--card-radius);
    padding: 44px 28px 40px 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.work_blog .work_bx .no_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-width: 60px;
    width: 60px;
    height: 60px;
    font-size: 20px;
    font-weight: 600;
    margin-top: -20px;
    margin-bottom: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.work_blog .work_bx h4 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.35;
}

.work_blog .work_bx p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.65;
}

.work_blog .work_bx:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: linear-gradient(180deg, rgba(18, 30, 72, 0.9) 0%, rgba(10, 22, 55, 0.95) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.08) 0%, rgba(1, 150, 255, 0.14) 97.48%);
}

.better_blog .row {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch !important;
    margin-left: -15px;
    margin-right: -15px;
}

.better_blog .row > .col-lg-6 {
    display: flex !important;
    align-items: stretch !important;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}

.better_bx.client-card,
.better_bx.vendor-card {
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%);
    border-radius: var(--card-radius);
    padding: 36px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    position: relative;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    margin: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.better_bx.client-card {
    border-color: rgba(100, 160, 255, 0.32);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.04) inset,
                0 0 1px 0 rgba(100, 160, 255, 0.15), 0 0 20px rgba(1, 150, 255, 0.08);
}

.better_bx.vendor-card {
    border-color: rgba(100, 160, 255, 0.22);
}

.better_bx.client-card .start_btn {
    background: linear-gradient(135deg, #1A47E5 0%, #0196FF 100%) !important;
    color: #ffffff !important;
    border: none !important;
}

.better_bx.vendor-card .start_btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

@media (max-width: 991px) {
    .better_blog .row > .col-lg-6 {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .better_blog .row > .col-lg-6 {
        margin-bottom: 15px;
    }

    .better_bx.client-card,
    .better_bx.vendor-card {
        padding: 30px 20px;
    }
}

.better_bx.client-card .card-title,
.better_bx.vendor-card .card-title {
    font-weight: 700;
    font-size: 18px;
    color: #1A47E5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(26, 71, 229, 0.3);
}

.better_bx.client-card h3,
.better_bx.vendor-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.better_bx.client-card p,
.better_bx.vendor-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 12px 0;
    line-height: 1.55;
}

.better_bx.client-card p:last-of-type,
.better_bx.vendor-card p:last-of-type {
    margin-bottom: 20px;
}

.better_bx.client-card .start_btn,
.better_bx.vendor-card .start_btn {
    margin-top: auto !important;
    margin-bottom: 0;
}

.banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0 56px;
    overflow: hidden;
}

.banner .container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner .bnr_txt {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.banner .bnr_txt h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner .bnr_txt p {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.banner .bnr_btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.banner .bnr_txt h6 {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    text-transform: none;
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .banner {
        min-height: 100vh;
        padding: 50px 0 80px;
    }

    .banner .bnr_txt h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .banner {
        min-height: 100vh;
        padding: 40px 0 60px;
    }

    .banner .bnr_txt h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .banner .bnr_txt p {
        font-size: 16px;
    }

    .banner .bnr_btns {
        flex-direction: column;
        align-items: center;
    }

    .banner .bnr_btns a {
        width: 100%;
        max-width: 280px;
    }
}

header.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: transparent !important;
    padding: 20px 0;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

header.header.header--hidden {
    transform: translateY(-100%);
}

main {
    padding-top: 76px;
}

header .navbar {
    background: rgba(8, 18, 48, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

header .menu .menu-item a {
    color: #ffffff;
    font-weight: 500;
}

header .menu .menu-item .nav-signup {
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1A47E5 0%, #0196FF 100%);
    color: #ffffff !important;
    box-shadow: 0px 4px 16px rgba(1, 150, 255, 0.4);
}

header .menu .menu-item .nav-login {
    opacity: 0.85;
}

header .menu .menu-item {
    margin-left: 0;
}

header .menu .menu-item + .menu-item {
    margin-left: 28px;
}

header .menu .menu-item--cta {
    margin-left: 20px;
}

header.active .navbar {
    background: rgba(8, 18, 48, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0px 6px 32px rgba(0, 0, 0, 0.3);
}

section {
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.work_bx {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.better_bx.client-card,
.better_bx.vendor-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.better_bx.client-card:hover,
.better_bx.vendor-card:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
}

.connection_blog {
    position: relative;
}

.con_bx {
    border-radius: var(--card-radius);
    padding: 40px 36px;
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: var(--card-border) !important;
    box-shadow: var(--card-shadow) !important;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.con_bx:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow) !important;
    border-color: var(--card-hover-border) !important;
    background: linear-gradient(180deg, rgba(18, 30, 72, 0.9) 0%, rgba(10, 22, 55, 0.95) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.08) 0%, rgba(1, 150, 255, 0.14) 97.48%) !important;
}

.trust_blog .row {
    display: flex;
    flex-wrap: wrap;
}

.trust_blog .row > [class*="col-"] {
    display: flex;
    align-items: stretch;
    margin-bottom: 30px;
}

.projects_blog .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.projects_blog .row .col-lg-12 {
    grid-column: 1 / -1;
    margin-bottom: 28px !important;
}

.projects_blog .row > [class*="col-lg-4"],
.projects_blog .row > [class*="col-md-6"],
.projects_blog .row > [class*="col-sm-6"] {
    display: flex;
    align-items: stretch;
    margin-bottom: 0;
    min-width: 0;
    width: 100%;
    max-width: none;
    flex: none;
}

.trust_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 32px 26px 36px;
    border-radius: var(--card-radius);
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.project_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 22px 24px;
    border-radius: var(--card-radius);
    background: linear-gradient(180deg, rgba(15, 25, 65, 0.85) 0%, rgba(8, 18, 48, 0.9) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.06) 0%, rgba(1, 150, 255, 0.1) 97.48%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: var(--card-border);
    box-shadow: var(--card-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
}

.trust_card .platform-card__icon {
    margin-bottom: 12px;
}

.trust_card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 14px 0;
    line-height: 1.35;
}

.project_card .project_card__title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.35;
}

.trust_card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.6;
}

.project_card .platform-card__divider {
    margin: 6px 0 10px 0;
}

footer {
    padding: 56px 0 28px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 32px 48px;
    padding: 32px 0 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px;
}

.footer-col {
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-col-brand {
    min-width: 0;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.footer-logo {
    display: inline-block;
    margin: 0 0 12px 0;
}

.footer-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 12px 0;
    max-width: 100%;
    text-align: left;
}

.footer-col-brand .footer-social {
    margin: 0;
    margin-top: 8px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin: 0;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.footer-social i {
    font-size: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-col:not(.footer-col-brand) .footer-links {
    margin-top: 12px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    margin-top: 32px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

@media (max-width: 991px) {
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
    }
}

.trust_card:hover,
.project_card:hover {
    transform: translateY(var(--card-hover-lift));
    box-shadow: var(--card-hover-shadow);
    border-color: var(--card-hover-border);
    background: linear-gradient(180deg, rgba(18, 30, 72, 0.9) 0%, rgba(10, 22, 55, 0.95) 100%),
                linear-gradient(302.63deg, rgba(0, 81, 254, 0.08) 0%, rgba(1, 150, 255, 0.14) 97.48%);
}

.work_blog {
    padding-top: 36px;
    padding-bottom: 36px;
}

.trust_blog {
    padding-top: 32px;
    padding-bottom: 32px;
}

.better_blog {
    padding-top: 32px;
    padding-bottom: 32px;
}

.projects_blog {
    padding-top: 32px;
    padding-bottom: 36px;
}

@media (max-width: 991px) {
    .projects_blog .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .projects_blog .row {
        grid-template-columns: 1fr;
    }
}

.bnr_txt h1 {
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.work_blog h3,
.trust_blog h3,
.better_blog h3,
.projects_blog h3,
.connection_blog h3 {
    text-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
    text-align: center !important;
    width: 100%;
    display: block;
    margin-left: auto !important;
    margin-right: auto !important;
}

.work_blog .col-lg-12 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px !important;
}

.work_blog .col-lg-12 h3 {
    text-align: center !important;
    margin: 0 auto !important;
    padding-bottom: 0;
}

.work_blog h3 {
    margin-bottom: 40px !important;
}

.trust_blog .col-lg-12 {
    margin-bottom: 28px !important;
}

.better_blog .col-lg-12 {
    margin-bottom: 28px !important;
}

.projects_blog .col-lg-12 {
    margin-bottom: 28px !important;
}

html {
    scroll-behavior: smooth;
}

.look_btn,
.prov_btn {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.look_btn:hover,
.prov_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(1, 150, 255, 0.4) !important;
}

@media (max-width: 991px) {
    header .navbar {
        padding: 12px 20px;
        border-radius: 12px;
    }
}

@media (max-width: 767px) {
    header .navbar {
        padding: 10px 15px;
        border-radius: 10px;
    }

    .work_bx:hover,
    .better_bx.client-card:hover,
    .better_bx.vendor-card:hover,
    .trust_card:hover,
    .project_card:hover {
        transform: translateY(-3px) !important;
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity var(--scroll-animation-duration, 1.5s) cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform var(--scroll-animation-duration, 1.5s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.scroll-animate-delay-1 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.1); }
.scroll-animate-delay-2 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.2); }
.scroll-animate-delay-3 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.3); }
.scroll-animate-delay-4 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.4); }
.scroll-animate-delay-5 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.5); }
.scroll-animate-delay-6 { transition-delay: calc(var(--scroll-animation-duration, 1.5s) * 0.6); }

.work_blog,
.trust_blog,
.better_blog,
.projects_blog,
.connection_blog {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity var(--scroll-animation-duration, 1.6s) cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform var(--scroll-animation-duration, 1.6s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.work_blog.animate-in,
.trust_blog.animate-in,
.better_blog.animate-in,
.projects_blog.animate-in,
.connection_blog.animate-in {
    opacity: 1;
    transform: translateY(0);
}


.contents{
    position: relative;    
    display: flex;
    padding: 100px 0 56px;
    overflow: hidden;
}