:root {
    --primary: #0f172a;
    --secondary: #1e293b;
    --brand-blue: #0d6efd;
    --brand-blue-dark: #0d3f9f;
    --brand-cyan: #19c2ff;
    --brand-orange: #ff8a00;
    --brand-yellow: #ffc107;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --border: rgba(15, 23, 42, 0.08);
    --soft-bg: #f8fbff;
    --radius: 24px;
    --shadow: 0 20px 60px rgba(2, 6, 23, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

a {
    text-decoration: none;
}

.topbar {
    background: linear-gradient(90deg, #071120, #0d3f9f);
    color: rgba(255,255,255,.9);
    font-size: 13px;
    padding: 9px 0;
}

    .topbar a {
        color: rgba(255,255,255,.92);
    }

.main-navbar {
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.brand-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.brand-tagline {
    color: var(--text-muted);
    font-size: .85rem;
    font-weight: 600;
}

.navbar .nav-link {
    color: var(--primary);
    font-weight: 600;
    padding: .85rem 1rem;
}

    .navbar .nav-link:hover {
        color: var(--brand-blue);
    }

.btn-brand {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-yellow));
    color: #111827;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    padding: .9rem 1.5rem;
    box-shadow: 0 12px 30px rgba(255, 193, 7, .25);
}

    .btn-brand:hover {
        color: #111827;
        transform: translateY(-1px);
    }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 88px 0 72px;
    background: radial-gradient(circle at top left, rgba(255,193,7,.20), transparent 26%), radial-gradient(circle at top right, rgba(25,194,255,.18), transparent 28%), linear-gradient(135deg, #071120 0%, #0d3f9f 55%, #19c2ff 120%);
    color: #fff;
}

.section-kicker {
    display: inline-block;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--brand-orange);
    margin-bottom: 1rem;
}

.hero-title,
.section-title.large {
    font-size: clamp(2.5rem, 5vw, 3.35rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -.03em;
}

.hero-subtitle {
    color: rgba(255,255,255,.88);
    font-size: 1.03rem;
    line-height: 1.9;
    margin-top: 1.1rem;
}

.btn-ghost-light {
    border-radius: 999px;
    border-width: 1.5px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

    .hero-points span {
        padding: .65rem 1rem;
        border-radius: 999px;
        background: rgba(255,255,255,.12);
        border: 1px solid rgba(255,255,255,.12);
        font-size: .92rem;
        font-weight: 600;
    }

.hero-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 30px 70px rgba(0,0,0,.15);
    backdrop-filter: blur(14px);
}

.hero-logo-wrap {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,.95);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hero-logo {
    max-width: 78px;
}

.hero-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero-card p {
    color: rgba(255,255,255,.84);
    line-height: 1.8;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

    .hero-metrics div {
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 20px;
        padding: 18px 14px;
        text-align: center;
    }

    .hero-metrics strong {
        display: block;
        font-size: 1.35rem;
        font-weight: 900;
    }

    .hero-metrics span {
        font-size: .9rem;
        color: rgba(255,255,255,.78);
    }

.tech-strip-section,
.products-showcase-section,
.feature-grid-section,
.development-section {
    padding: 90px 0;
}

.tech-strip-section {
    background: var(--soft-bg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -.025em;
}

.section-description {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.04rem;
    margin-top: 1rem;
}

    .section-description.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .section-description.narrow {
        max-width: 760px;
    }

.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logo-track {
    display: inline-flex;
    gap: 18px;
    animation: marquee 24s linear infinite;
    min-width: max-content;
    padding: 12px 0;
}

    .logo-track span {
        padding: 16px 26px;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 999px;
        box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
        font-weight: 800;
        color: var(--secondary);
    }

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.text-link {
    color: var(--brand-blue-dark);
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
}

.highlight-card,
.service-box,
.dev-card {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    height: 100%;
}

    .product-card h3,
    .service-box h4,
    .dev-card h4 {
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 14px;
    }

    .product-card p,
    .dev-card p,
    .service-box ul {
        color: var(--text-muted);
        line-height: 1.8;
        margin-bottom: 0;
    }

    .service-box ul {
        padding-left: 18px;
    }

    .service-box li {
        margin-bottom: 8px;
    }

.feature-grid-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
}

.development-section {
    background: #f8fbff;
}

.contact-cta-section {
    padding: 0 0 90px;
    background: #f8fbff;
}

.contact-panel {
    border-radius: 34px;
    padding: 34px;
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 60%, #19c2ff 120%);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.18);
    color: #fff;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 900;
    margin-bottom: 14px;
}

.cta-text {
    color: rgba(255,255,255,.84);
    line-height: 1.85;
    font-size: 1.02rem;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
    margin-top: 24px;
}

    .cta-contact-grid div {
        color: rgba(255,255,255,.92);
    }

.cta-form-box {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 28px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.form-control {
    border-radius: 16px;
    border: 0;
    min-height: 56px;
}

textarea.form-control {
    min-height: 130px;
}

.site-footer {
    background: #071120;
    color: #fff;
}

.footer-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
}

.footer-tagline,
.footer-text,
.footer-list li {
    color: rgba(255,255,255,.72);
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 10px;
    }

.footer-line {
    border-color: rgba(255,255,255,.12);
    margin: 28px 0 18px;
}

@media (max-width: 991.98px) {
    .hero-section,
    .tech-strip-section,
    .products-showcase-section,
    .feature-grid-section,
    .development-section {
        padding: 72px 0;
    }

    .cta-contact-grid,
    .hero-metrics {
        grid-template-columns: 1fr;
    }

    .brand-title {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        display: none;
    }

    .hero-card,
    .contact-panel,
    .cta-form-box,
    .highlight-card,
    .service-box,
    .dev-card {
        padding: 22px;
        border-radius: 22px;
    }

    .hero-title,
    .section-title.large,
    .cta-title {
        font-size: 2.1rem;
    }
}
.inner-hero-section {
    padding: 90px 0 70px;
    background: radial-gradient(circle at top left, rgba(255,193,7,.15), transparent 22%), radial-gradient(circle at top right, rgba(25,194,255,.15), transparent 26%), linear-gradient(135deg, #071120 0%, #0d3f9f 60%, #19c2ff 120%);
}

.inner-hero-text {
    max-width: 860px;
    margin: 18px auto 0;
    color: rgba(255,255,255,.85);
    line-height: 1.9;
    font-size: 1.04rem;
}

.page-section {
    padding: 90px 0;
}

.soft-section {
    background: #f8fbff;
}

.about-panel-card,
.info-card,
.founder-message-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    height: 100%;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

    .about-stat-grid div {
        border-radius: 20px;
        background: linear-gradient(135deg, #f8fbff, #ffffff);
        border: 1px solid rgba(15, 23, 42, 0.07);
        padding: 22px;
    }

    .about-stat-grid strong {
        display: block;
        font-size: 1.25rem;
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .about-stat-grid span,
    .info-card p,
    .founder-contact-box li {
        color: var(--text-muted);
        line-height: 1.8;
    }

.info-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 12px;
}

.about-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.3rem;
    color: #fff;
    background: linear-gradient(135deg, #ff8a00, #0d6efd);
    box-shadow: 0 12px 25px rgba(13, 110, 253, .18);
}

.founder-message-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.founder-contact-box {
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    color: #fff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.18);
}

    .founder-contact-box h5 {
        font-weight: 800;
        margin-bottom: 16px;
    }

    .founder-contact-box li {
        color: rgba(255,255,255,.9);
        margin-bottom: 10px;
    }

@media (max-width: 767.98px) {
    .about-stat-grid {
        grid-template-columns: 1fr;
    }

    .page-section,
    .inner-hero-section {
        padding: 70px 0;
    }
}
.service-detail-card,
.services-cta-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

    .service-detail-card h4,
    .services-cta-card h3,
    .process-item h5 {
        color: var(--primary);
        font-weight: 800;
    }

    .service-detail-card p,
    .service-detail-card li,
    .services-cta-card p,
    .process-item p {
        color: var(--text-muted);
        line-height: 1.8;
    }

    .service-detail-card ul {
        margin: 16px 0 0;
        padding-left: 18px;
    }

    .service-detail-card li {
        margin-bottom: 8px;
    }

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #0d6efd, #19c2ff);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.18);
}

.process-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

.process-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 16px 40px rgba(2, 6, 23, 0.06);
}

    .process-item span {
        width: 52px;
        height: 52px;
        min-width: 52px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        color: #fff;
        background: linear-gradient(135deg, #ff8a00, #ffc107);
    }

    .process-item h5 {
        margin-bottom: 6px;
    }

    .process-item p {
        margin-bottom: 0;
    }

.services-cta-card {
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

    .services-cta-card h3,
    .services-cta-card p {
        color: #fff;
    }

.mini-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.95);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.services-contact-grid {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

    .services-contact-grid div {
        color: rgba(255,255,255,.92);
    }

@media (max-width: 767.98px) {
    .service-detail-card,
    .services-cta-card,
    .process-item {
        padding: 22px;
        border-radius: 22px;
    }
}
.product-detail-card,
.mini-product-card,
.products-cta-card,
.featured-product-side {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    height: 100%;
}

    .product-detail-card h3,
    .mini-product-card h4,
    .featured-product-side h5 {
        color: var(--primary);
        font-weight: 800;
    }

.product-subtitle {
    color: var(--brand-blue-dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.product-detail-card p,
.product-detail-card li,
.mini-product-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.product-detail-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
}

.product-detail-card li {
    margin-bottom: 8px;
}

.product-icon,
.mini-product-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.4rem;
    color: #fff;
    background: linear-gradient(135deg, #ff8a00, #0d6efd);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.18);
}

.mini-product-card {
    text-align: left;
}

.featured-product-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.featured-product-side {
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    border: 0;
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

    .featured-product-side h5 {
        color: #fff;
        margin-bottom: 14px;
    }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .tag-list span {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255,255,255,.14);
        color: rgba(255,255,255,.95);
        font-size: .88rem;
        font-weight: 700;
    }

.products-cta-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

@media (max-width: 767.98px) {
    .product-detail-card,
    .mini-product-card,
    .products-cta-card,
    .featured-product-side {
        padding: 22px;
        border-radius: 22px;
    }
}
.contact-info-card,
.contact-form-card,
.contact-bottom-cta {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.contact-tagline {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-blue-dark);
    background: rgba(13, 63, 159, 0.08);
    padding: 10px 16px;
    border-radius: 999px;
}

.contact-list {
    display: grid;
    gap: 16px;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.contact-list-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    background: linear-gradient(135deg, #ff8a00, #0d6efd);
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.18);
}

.contact-list-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 4px;
}

.contact-list-item p {
    margin-bottom: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.contact-list-item a {
    color: var(--brand-blue-dark);
    font-weight: 600;
}

.contact-side-note {
    padding: 16px 18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    color: rgba(255,255,255,.95);
    font-weight: 700;
    line-height: 1.7;
}

.contact-label {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    min-height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: none;
    padding-left: 16px;
    padding-right: 16px;
}

    .contact-form-card .form-control:focus {
        border-color: rgba(13, 110, 253, 0.45);
        box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.10);
    }

.contact-textarea {
    min-height: 160px !important;
    padding-top: 14px;
}

.contact-bottom-cta {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

@media (max-width: 767.98px) {
    .contact-info-card,
    .contact-form-card,
    .contact-bottom-cta {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-list-item {
        padding: 14px;
        border-radius: 18px;
    }
}
.blog-card,
.blog-feature-panel {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    height: 100%;
}

.blog-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-tag {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 63, 159, 0.08);
    color: var(--brand-blue-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.blog-date {
    font-size: .85rem;
    font-weight: 700;
    color: var(--text-muted);
}

.blog-card h4 {
    color: var(--primary);
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 14px;
}

.blog-card p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 18px;
}

.blog-feature-panel {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

@media (max-width: 767.98px) {
    .blog-card,
    .blog-feature-panel {
        padding: 22px;
        border-radius: 22px;
    }

    .blog-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
.policy-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(15,23,42,0.08);
    box-shadow: 0 20px 60px rgba(2,6,23,0.08);
}

    .policy-card h2 {
        margin-top: 28px;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--primary);
    }

    .policy-card p {
        color: var(--text-muted);
        line-height: 1.9;
    }

    .policy-card ul {
        margin-top: 12px;
        padding-left: 20px;
    }

    .policy-card li {
        margin-bottom: 8px;
        color: var(--text-muted);
    }

.policy-contact {
    margin-top: 20px;
    padding: 20px;
    border-radius: 18px;
    background: linear-gradient(135deg,#071120,#0d3f9f);
    color: #ffffff;
    line-height: 1.8;
}
.portfolio-card,
.portfolio-strength-card,
.portfolio-cta-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    height: 100%;
}

.portfolio-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.portfolio-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 63, 159, 0.08);
    color: var(--brand-blue-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.portfolio-icon,
.strength-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #fff;
    background: linear-gradient(135deg, #ff8a00, #0d6efd);
    box-shadow: 0 14px 30px rgba(13, 110, 253, 0.18);
}

.portfolio-card h3,
.portfolio-strength-card h4 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.portfolio-subtitle {
    color: var(--brand-blue-dark);
    font-weight: 700;
    margin-bottom: 14px;
}

.portfolio-card p,
.portfolio-card li,
.portfolio-strength-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.portfolio-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
}

.portfolio-card li {
    margin-bottom: 8px;
}

.portfolio-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
}

    .portfolio-footer span {
        color: var(--text-muted);
        font-size: .92rem;
        font-weight: 700;
    }

.portfolio-strength-card {
    text-align: left;
}

    .portfolio-strength-card .strength-icon {
        margin-bottom: 18px;
    }

.portfolio-cta-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

@media (max-width: 767.98px) {
    .portfolio-card,
    .portfolio-strength-card,
    .portfolio-cta-card {
        padding: 22px;
        border-radius: 22px;
    }

    .portfolio-card-top {
        align-items: flex-start;
        flex-direction: column;
    }
}
.text-link i.bi-box-arrow-up-right {
    font-size: 0.9rem;
    margin-left: 6px;
}
.career-intro-card,
.career-side-card,
.job-card,
.job-info-box,
.career-cta-card,
.career-products-box {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
    height: 100%;
}

.career-side-card {
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

    .career-side-card h3,
    .career-side-card p {
        color: #fff;
    }

.career-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 26px;
}

.career-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

    .career-meta-item i {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        background: linear-gradient(135deg, #ff8a00, #0d6efd);
        box-shadow: 0 10px 24px rgba(13, 110, 253, 0.18);
    }

    .career-meta-item strong {
        display: block;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .career-meta-item span {
        color: var(--text-muted);
        line-height: 1.7;
    }

.career-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

    .career-contact-list div {
        color: rgba(255,255,255,.92);
        line-height: 1.7;
    }

.job-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.job-card h3,
.job-info-box h5,
.career-products-box h5 {
    color: var(--primary);
    font-weight: 800;
}

.job-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 63, 159, 0.08);
    color: var(--brand-blue-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.job-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
}

.job-summary {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 22px;
}

.job-info-box {
    background: #fff;
}

    .job-info-box ul {
        padding-left: 18px;
        margin: 0;
    }

    .job-info-box li {
        color: var(--text-muted);
        margin-bottom: 8px;
        line-height: 1.75;
    }

.career-products-box {
    background: #fff;
    margin-bottom: 18px;
}

.career-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

    .career-product-tags span {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(13, 63, 159, 0.08);
        color: var(--brand-blue-dark);
        font-size: .9rem;
        font-weight: 700;
    }

.career-cta-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
}

@media (max-width: 991.98px) {
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .career-meta-grid {
        grid-template-columns: 1fr;
    }

    .career-intro-card,
    .career-side-card,
    .job-card,
    .job-info-box,
    .career-cta-card,
    .career-products-box {
        padding: 22px;
        border-radius: 22px;
    }
}
.career-intro-card,
.career-side-card,
.job-card,
.job-info-box,
.career-cta-card,
.career-products-box {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.08);
}

.career-jobs-stack {
    display: grid;
    gap: 28px;
}

.career-side-card {
    background: linear-gradient(135deg, #071120 0%, #0d3f9f 70%, #19c2ff 120%);
    color: #fff;
    box-shadow: 0 24px 60px rgba(2, 6, 23, 0.18);
}

    .career-side-card h3,
    .career-side-card p {
        color: #fff;
    }

.career-meta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 26px;
}

.career-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

    .career-meta-item i {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1rem;
        background: linear-gradient(135deg, #ff8a00, #0d6efd);
        box-shadow: 0 10px 24px rgba(13, 110, 253, 0.18);
    }

    .career-meta-item strong {
        display: block;
        color: var(--primary);
        margin-bottom: 4px;
    }

    .career-meta-item span {
        color: var(--text-muted);
        line-height: 1.7;
    }

.career-contact-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

    .career-contact-list div {
        color: rgba(255,255,255,.92);
        line-height: 1.7;
    }

.job-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    overflow: hidden;
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.job-card h3,
.job-info-box h5,
.career-products-box h5 {
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 10px;
}

.job-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 63, 159, 0.08);
    color: var(--brand-blue-dark);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.job-meta-line {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 8px;
}

.job-summary {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 22px;
}

.job-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.job-info-box {
    background: #fff;
    height: auto;
    min-height: 100%;
}

    .job-info-box ul {
        padding-left: 18px;
        margin: 0;
    }

    .job-info-box li {
        color: var(--text-muted);
        margin-bottom: 8px;
        line-height: 1.75;
    }

.career-products-box {
    background: #fff;
}

.career-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

    .career-product-tags span {
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(13, 63, 159, 0.08);
        color: var(--brand-blue-dark);
        font-size: .9rem;
        font-weight: 700;
    }

.career-cta-card {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    overflow: hidden;
}

.career-cta-title {
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    font-weight: 900;
    color: var(--primary);
    margin: 0 0 14px;
    max-width: 760px;
}

.career-cta-text {
    color: var(--text-muted);
    line-height: 1.9;
    font-size: 1.04rem;
    max-width: 780px;
}

@media (max-width: 991.98px) {
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .job-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .career-meta-grid {
        grid-template-columns: 1fr;
    }

    .career-intro-card,
    .career-side-card,
    .job-card,
    .job-info-box,
    .career-cta-card,
    .career-products-box {
        padding: 22px;
        border-radius: 22px;
    }

    .career-cta-title {
        font-size: 2.2rem;
    }
}
.career-products-box {
    height: auto !important;
    min-height: unset !important;
    display: block !important;
    padding: 26px 28px !important;
}

    .career-products-box h5 {
        margin-bottom: 14px;
    }

.career-product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
}

    .career-product-tags span {
        display: inline-flex;
        align-items: center;
    }