/* =========================================================
   Tectignis – custom overrides (header + hero)
   Loaded after style.css so these rules win.
   ========================================================= */

/* ---------- Dark header theme (from design mockup) ----------
   The whole header — top utility bar and the main navigation — sits on a
   deep navy background with a white wordmark, light menu text and magenta
   accents, matching docs/images. Covers the JS sticky state too. */
.header-area--default {
    background-color: #0c0a26;
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.header-top-wrap.border-bottom {
    background-color: #08061b;
    border-color: rgba(255, 255, 255, 0.07) !important;
}

.header-bottom-wrap {
    background-color: #0c0a26;
}

/* Sticky header (JS toggles .is-sticky and switches it to white by default) */
.header-area .is-sticky,
.header-area .header-bottom-wrap.is-sticky {
    background-color: #0c0a26 !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

/* ---------- Header top bar ---------- */
.header-top-wrap .header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 7px 0;
}

.header-top-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header-top-info li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.header-top-info li i {
    color: #C10897;
    margin-right: 6px;
}

.header-top-info a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s;
}

.header-top-info a:hover {
    color: #ffffff;
}

/* ---------- Main navigation: white text on dark ---------- */
.navigation-menu > ul > li > a,
.navigation-menu > ul > li > a span {
    color: #ffffff;
}

.navigation-menu > ul > li.has-children > a:after {
    color: rgba(255, 255, 255, 0.7);
}

.navigation-menu > ul > li:hover > a span,
.navigation-menu > ul > li.active > a span,
.navigation-menu > ul > li:hover > a:after,
.navigation-menu > ul > li.active > a:after {
    color: #ff3db4;
}

/* Brighten the active/hover underline so it reads on the dark bar */
.navigation-menu > ul > li > a:before {
    background-color: #ff1fae;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.header-top-btn {
    display: inline-block;
    background: #C10897;
    color: #fff !important;
    padding: 7px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
    transition: background 0.2s;
}

.header-top-btn:hover {
    background: #a3067f;
    color: #fff !important;
}

@media only screen and (max-width: 991px) {
    .header-top-wrap .header-top-inner {
        justify-content: center;
        text-align: center;
    }
    .header-top-right .header-top-info {
        display: none;
    }
}

@media only screen and (max-width: 575px) {
    .header-top-left .header-top-info li.d-sm-hide {
        display: none;
    }
}

/* ---------- Mega menu: service categories + CTA row ----------
   One column per live service category (driven by the admin). */
.navigation-menu > ul > li .megamenu.megamenu--mega.megamenu--services {
    min-width: 880px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .navigation-menu > ul > li .megamenu.megamenu--mega.megamenu--services {
        min-width: 780px;
    }
}

.megamenu--services > li {
    flex-basis: 33.333%;
    max-width: 33.333%;
}

.megamenu--services > li .page-list-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.megamenu--services > li .page-list-title > a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.megamenu--services > li .cap-title-icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, #C10897 0%, #7b1fa2 100%);
    padding: 6px;
}

.megamenu--services > li .cap-title-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.megamenu--services > li > ul > li > a {
    padding: 7px 0;
    font-size: 13.5px;
}

/* CTA row inside the mega menu */
.megamenu--services > li.megamenu-cta-row {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 18px;
    padding: 0 15px;
}

.megamenu-cta {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.megamenu-cta-box {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    background: #faf6fb;
    border: 1px solid #f0e6f2;
    border-radius: 8px;
    padding: 16px 20px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.megamenu-cta-box:hover {
    box-shadow: 0 8px 20px rgba(193, 8, 151, 0.12);
    transform: translateY(-2px);
}

.megamenu-cta-box .cta-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #C10897;
    color: #fff;
    font-size: 18px;
}

.megamenu-cta-box h6 {
    margin: 0 0 2px;
    font-size: 15px;
    color: #1a1a3d;
}

.megamenu-cta-box span {
    font-size: 13px;
    color: #6b6b7b;
}

/* =========================================================
   Navbar dropdowns – stable hover + content-sized panels
   Replaces the old translate/slide reveal that jittered and
   the fixed-width slab that left big empty gaps.
   ========================================================= */

/* A wide panel that extends past the viewport edge used to spawn a
   horizontal scrollbar; the scrollbar flipping on/off reflowed the page
   and made the menu flicker. Clip the overflow so that can never happen.
   (The sticky header is JS `position: fixed`, so clip does not affect it.) */
html,
body {
    overflow-x: clip;
}

/* Anchor each compact dropdown under its own menu item. The wide mega panel
   is excluded so it keeps the full-width header as its positioning context
   and can be centered on the page (see the .megamenu--services rule below). */
.navigation-menu > ul > li.has-children:not(:has(.megamenu--services)) {
    position: relative;
}

/* Base panel: instant, opacity-only reveal — no sliding transform and no
   transition-delay (those were the source of the "lag then snap" feel). */
.navigation-menu > ul > li .megamenu {
    top: 100%;
    left: 0;
    transform: none;
    width: auto;
    min-width: 0;
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transition-delay: 0s;
}

.navigation-menu > ul > li.has-children:hover .megamenu {
    transform: none;
    width: auto;
}

/* Compact single-column menus (Solutions, Industries, Resources):
   sized to their content instead of a 980px slab. */
.navigation-menu > ul > li .megamenu--mega:not(.megamenu--services) {
    display: block;
    min-width: 230px;
    padding: 16px 12px;
}

.navigation-menu > ul > li .megamenu--mega:not(.megamenu--services) > li {
    flex-basis: auto;
    max-width: none;
    padding-left: 8px;
    padding-right: 8px;
}

/* Wide Capabilities mega panel: keep the multi-column grid but center it
   under the bar and clamp it inside the viewport so it cannot overflow. */
.navigation-menu > ul > li .megamenu.megamenu--services,
.navigation-menu > ul > li.has-children:hover .megamenu.megamenu--services {
    left: 50%;
    transform: translateX(-50%);
    min-width: 0;
    width: min(880px, calc(100vw - 40px));
}

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
    .navigation-menu > ul > li .megamenu.megamenu--services,
    .navigation-menu > ul > li.has-children:hover .megamenu.megamenu--services {
        width: min(780px, calc(100vw - 40px));
    }
}

/* Mobile capabilities sub-menu: category captions between service links */
.offcanvas-navigation .sub-menu .mobile-sub-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    padding: 12px 0 4px;
    border: 0;
}

.offcanvas-navigation .sub-menu .mobile-sub-heading:first-child {
    padding-top: 0;
}

/* ---------- Hero fix (was a broken 120px heading) ---------- */
.software-innovation-hero-wrapper {
    background: linear-gradient(120deg, #f6f1fb 0%, #fdf3f9 100%);
}

.software-innovation-hero-text h1 {
    color: #1a1a3d;
    font-size: 46px;
    line-height: 1.22;
    font-weight: 700;
    margin-bottom: 18px;
}

.software-innovation-hero-text h1 .text-color-primary {
    color: #C10897;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .software-innovation-hero-text h1 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .software-innovation-hero-text h1 {
        font-size: 34px;
        line-height: 1.25;
    }
}

@media only screen and (max-width: 767px) {
    .software-innovation-hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }
}

.software-innovation-hero-text .info-heading {
    margin-top: 16px;
}

/* Keep the hero illustration inside its column */
.software-innovation-hero-image {
    margin-left: 0;
    margin-right: 0;
}

@media only screen and (min-width: 992px) {
    .software-innovation-hero-image {
        margin-left: 10px;
    }
}

.software-innovation-hero-text .hero-button .ht-btn {
    margin-bottom: 10px;
}

/* =========================================================
   Service detail page – redesigned sections (scoped `.svc-`)
   These classes are used only by resources/views/components/
   public/service/* so they never affect other pages.
   ========================================================= */
:root {
    --svc-primary: #C10897;
    --svc-accent: #ff3db4;
    --svc-dark: #14132e;
    --svc-navy: #0c0a26;
    --svc-body: #5b5b72;
    --svc-line: #ececf3;
    --svc-soft: #faf6fb;
}

/* ---------- Shared building blocks ---------- */
.svc-section {
    padding: 55px 0;
}


.svc-section-head {
    max-width: 720px;
    margin: 0 auto 36px;
}

.svc-section-head.text-left {
    margin-left: 0;
}

.svc-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--svc-primary);
    background: rgba(193, 8, 151, 0.08);
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.svc-eyebrow--light {
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.svc-section-title {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0;
}

.svc-accent {
    color: var(--svc-primary);
}

/* ---------- Buttons ---------- */
.svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding: 15px 30px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
    cursor: pointer;
}

.svc-btn--primary {
    background: var(--svc-primary);
    color: #fff;
    box-shadow: 0 10px 24px rgba(193, 8, 151, 0.28);
}

.svc-btn--primary:hover {
    background: #a3067f;
    color: #fff;
    transform: translateY(-2px);
}

.svc-btn--ghost {
    background: transparent;
    color: var(--svc-dark);
    border-color: rgba(20, 19, 46, 0.18);
}

.svc-btn--ghost:hover {
    border-color: var(--svc-primary);
    color: var(--svc-primary);
    transform: translateY(-2px);
}

.svc-btn--white {
    background: #fff;
    color: var(--svc-primary);
}

.svc-btn--white:hover {
    background: var(--svc-dark);
    color: #fff;
    transform: translateY(-2px);
}

.svc-btn--block {
    width: 100%;
}

/* ---------- Hero ---------- */
.svc-hero {
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
    background: linear-gradient(120deg, #f6f1fb 0%, #fdf3f9 100%);
}

.svc-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.35;
    z-index: 0;
}

.svc-hero__blob--1 {
    width: 420px;
    height: 420px;
    top: -120px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 61, 180, 0.35), transparent 70%);
}

.svc-hero__blob--2 {
    width: 320px;
    height: 320px;
    bottom: -120px;
    left: -80px;
    background: radial-gradient(circle, rgba(123, 31, 162, 0.25), transparent 70%);
}

.svc-hero .container {
    position: relative;
    z-index: 1;
}

.svc-hero__title {
    font-size: 46px;
    line-height: 1.18;
    font-weight: 800;
    color: var(--svc-dark);
    margin: 0 0 18px;
}

.svc-hero__intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--svc-body);
    margin-bottom: 30px;
    max-width: 540px;
}

.svc-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 42px;
}

.svc-hero__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.svc-stat {
    flex: 1 1 0;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc-stat__top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-stat__icon {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #7b1fa2 100%);
    box-shadow: 0 6px 14px rgba(193, 8, 151, 0.25);
}

.svc-stat__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--svc-dark);
    line-height: 1.1;
}

.svc-stat__label {
    font-size: 12.5px;
    line-height: 1.3;
    color: var(--svc-body);
}

.svc-hero__media {
    position: relative;
}

.svc-hero__image-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(20, 19, 46, 0.18);
}

.svc-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.svc-hero__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    font-size: 80px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #7b1fa2 100%);
}

/* ---------- Sub-services (rectangle cards) ---------- */
.svc-sub-services {
    padding-top: 50px;
}

/* Heading + eyebrow on a single row, compact spacing. */
.svc-sub-services .svc-section-head {
    max-width: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}

.svc-sub-services .svc-section-head .svc-eyebrow {
    margin-bottom: 0;
}

.svc-sub-services__grid {
    row-gap: 24px;
}

.svc-rect-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--svc-line);
    border-radius: 14px;
    padding: 24px 16px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.svc-rect-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: 0 18px 40px rgba(20, 19, 46, 0.1);
}

.svc-rect-card__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    color: var(--svc-primary);
    background: rgba(193, 8, 151, 0.08);
    transition: background 0.25s, color 0.25s;
}

.svc-rect-card:hover .svc-rect-card__icon {
    background: var(--svc-primary);
    color: #fff;
}

.svc-rect-card__icon img {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
}

.svc-rect-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 6px;
}

.svc-rect-card__text {
    font-size: 13px;
    line-height: 1.55;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Process ---------- */
.svc-process {
    background: var(--svc-soft);
}

.svc-process__intro {
    padding-right: 30px;
}

.svc-process__lead {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 18px 0 28px;
}

.svc-process__steps .row {
    row-gap: 30px;
    --bs-gutter-x: 0;
}

.svc-step {
    position: relative;
    height: 100%;
    text-align: center;
    padding: 0 10px;
}

/* Connecting line that runs through the row of circles. The white circle
   background masks the line within each icon, so it reads as a journey. */
.svc-step::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--svc-line);
    z-index: 0;
}

.svc-process__steps .col:first-child .svc-step::before {
    left: 50%;
}

.svc-process__steps .col:last-child .svc-step::before {
    right: 50%;
}

.svc-step__icon {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid rgba(193, 8, 151, 0.25);
    font-size: 22px;
    color: var(--svc-primary);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.svc-step:hover .svc-step__icon {
    border-color: var(--svc-primary);
    box-shadow: 0 10px 24px rgba(193, 8, 151, 0.18);
}

.svc-step__icon img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

.svc-step__num {
    display: block;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    color: var(--svc-primary);
    margin-bottom: 8px;
}

.svc-step__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 8px;
}

.svc-step__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Technologies ---------- */
.svc-tech__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

@media (max-width: 1199px) {
    .svc-tech__grid { grid-template-columns: repeat(8, 1fr); }
}

@media (max-width: 767px) {
    .svc-tech__grid { grid-template-columns: repeat(6, 1fr); }
}

@media (max-width: 575px) {
    .svc-tech__grid { grid-template-columns: repeat(4, 1fr); }
}

.svc-tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 8px;
    box-shadow: 0 6px 20px rgba(20, 19, 46, 0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    min-width: 0;
}

.svc-tech-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(193, 8, 151, 0.15);
}

.svc-tech-card__logo {
    height: 38px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.svc-tech-card__fallback {
    font-size: 28px;
    color: var(--svc-primary);
    line-height: 1;
}

.svc-tech-card__name {
    font-size: 11px;
    font-weight: 600;
    color: var(--svc-dark);
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
}

/* ---------- Why choose ---------- */
.svc-why {
    background: var(--svc-soft);
}

.svc-why__grid {
    row-gap: 26px;
}

.svc-why-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    height: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 22px 14px;
    box-shadow: 0 10px 30px rgba(20, 19, 46, 0.06);
    transition: transform 0.25s, box-shadow 0.25s;
}

.svc-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(20, 19, 46, 0.1);
}

.svc-why-card__icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--svc-primary) 0%, #7b1fa2 100%);
}

.svc-why-card__icon img {
    max-width: 28px;
    max-height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.svc-why-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--svc-dark);
    margin: 0 0 4px;
    line-height: 1.3;
}

.svc-why-card__text {
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--svc-body);
    margin: 0;
}

/* ---------- Case studies ---------- */
.svc-cases__head {
    max-width: 620px;
    margin-bottom: 46px;
}

.svc-cases__lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--svc-body);
    margin: 16px 0 0;
}

.svc-cases__grid {
    row-gap: 26px;
}

.svc-case-card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 360px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    background-color: var(--svc-dark);
    background-size: cover;
    background-position: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.svc-case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(20, 19, 46, 0.28);
}

.svc-case-card__content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.svc-case-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    background: var(--svc-primary);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.svc-case-card__title {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.svc-case-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 14px;
}

.svc-case-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--svc-accent);
}

.svc-case-card:hover .svc-case-card__link i {
    transform: translateX(5px);
}

.svc-case-card__link i {
    transition: transform 0.25s;
}

/* ---------- FAQ ---------- */
.svc-faq__main {
    padding-right: 30px;
}

.svc-faq .svc-section-head {
    margin-bottom: 30px;
}

.svc-accordion__item {
    border: 1px solid var(--svc-line);
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 14px;
    background: #fff;
}

.svc-accordion__button {
    font-size: 16px;
    font-weight: 600;
    color: var(--svc-dark);
    padding: 18px 20px;
    box-shadow: none !important;
}

.svc-accordion__button:not(.collapsed) {
    color: var(--svc-primary);
    background: rgba(193, 8, 151, 0.05);
}

.svc-accordion__button:focus {
    box-shadow: none;
    border-color: transparent;
}

.svc-accordion__body {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--svc-body);
    padding: 4px 20px 20px;
}

.svc-sell-panel {
    background: linear-gradient(150deg, var(--svc-primary) 0%, #7b1fa2 100%);
    border-radius: 18px;
    padding: 38px 34px;
    color: #fff;
    box-shadow: 0 24px 50px rgba(193, 8, 151, 0.28);
}

.svc-sell-panel__title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
}

.svc-sell-panel__text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 22px;
}

.svc-sell-panel__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.svc-sell-panel__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.svc-sell-panel__list i {
    margin-top: 2px;
    color: #fff;
}

/* ---------- Lets start (contact) ---------- */
.svc-start__card {
    background: #fff;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(12, 10, 38, 0.08);
    border: 1px solid var(--svc-line);
}

.svc-start__info {
    padding: 56px 50px;
}

.svc-start__form-col {
    background: #f7f6fe;
    padding: 56px 50px;
    display: flex;
    flex-direction: column;
}

.svc-start__title {
    font-size: 34px;
    font-weight: 800;
    color: var(--svc-dark);
    margin: 0 0 16px;
}

.svc-start__text {
    font-size: 15.5px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 0 30px;
}

.svc-start__contacts {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-start__contacts li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.svc-start__contact-icon {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 17px;
    color: var(--svc-primary);
    background: rgba(193, 8, 151, 0.08);
}

.svc-start__contact-label {
    display: block;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 2px;
}

.svc-start__contacts a,
.svc-start__contacts div > span:last-child {
    color: var(--svc-dark);
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.5;
}

.svc-start__contacts a:hover {
    color: var(--svc-primary);
}

.svc-start__form {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--svc-line);
    flex: 1;
}

.svc-start__form .row {
    row-gap: 16px;
}

.svc-input {
    width: 100%;
    background: #f6f6fa;
    border: 1px solid var(--svc-line);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--svc-dark);
    transition: border-color 0.2s, background 0.2s;
}

.svc-input:focus {
    outline: none;
    background: #fff;
    border-color: var(--svc-primary);
}

.svc-input--area {
    resize: vertical;
    min-height: 120px;
}

/* =========================================================
   Dark footer
   ========================================================= */
.ft-dark__main {
    background-color: #0c0a26;
    padding: 70px 0 50px;
}

.ft-dark__copy {
    background-color: #080619;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ft-dark__row {
    row-gap: 36px;
}

.ft-dark__logo {
    display: inline-block;
    margin-bottom: 20px;
}

.ft-dark__logo img {
    filter: brightness(0) invert(1);
}

.ft-dark__tagline {
    font-size: 13.5px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 22px;
    padding-right: 10px;
}

.ft-dark__socials {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 10px;
}

.ft-dark__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ft-dark__socials a:hover {
    background: #C10897;
    border-color: #C10897;
    color: #fff;
}

.ft-dark__heading {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 18px;
}

.ft-dark__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ft-dark__links li {
    margin-bottom: 10px;
}

.ft-dark__links li:last-child {
    margin-bottom: 0;
}

.ft-dark__links a {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.ft-dark__links a:hover {
    color: #ff3db4;
    padding-left: 4px;
}

.ft-dark__copy-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 24px;
}

.ft-dark__copy-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.ft-dark__copy-text a {
    color: rgba(255, 255, 255, 0.7);
}

.ft-dark__copy-text a:hover {
    color: #fff;
}

.ft-dark__copy-reg {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

@media only screen and (max-width: 991px) {
    .ft-dark__main { padding: 50px 0 36px; }
}

@media only screen and (max-width: 767px) {
    .ft-dark__copy-inner { justify-content: center; text-align: center; }
}

/* ---------- Responsive ---------- */
@media only screen and (max-width: 1199px) {
    .svc-hero__title { font-size: 40px; }
    .svc-section-title { font-size: 32px; }
}

@media only screen and (max-width: 991px) {
    .svc-section { padding: 40px 0; }
    .svc-hero { padding: 70px 0 80px; }
    .svc-hero__title { font-size: 34px; }
    .svc-hero__media { margin-top: 40px; }
    .svc-process__intro { padding-right: 0; margin-bottom: 40px; }
    .svc-faq__main { padding-right: 0; margin-bottom: 40px; }
    .svc-start__info { padding: 44px 34px; }
    .svc-start__form-col { padding: 44px 34px; }
}

@media only screen and (max-width: 575px) {
    .svc-hero__title { font-size: 28px; }
    .svc-section-title { font-size: 26px; }
    .svc-hero__buttons .svc-btn { flex: 1 1 100%; }
    .svc-hero__stats { gap: 18px; }
    .svc-start__info { padding: 32px 22px; }
    .svc-start__form-col { padding: 32px 22px; }
    .svc-start__form { padding: 24px 18px; }
    .svc-rect-card { flex-direction: column; }
}

/* =========================================================
   Home – Our Capabilities cards  (compact + equal height)
   ========================================================= */
.capabilities-row {
    row-gap: 30px;
}

.capabilities-row .projects-wrap.style-04 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.capabilities-row .projects-wrap.style-04 .projects-image-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 62px;
    margin-bottom: 0;
}

.capabilities-row .projects-wrap.style-04 .box-image {
    margin-bottom: 16px;
}

.capabilities-row .projects-wrap.style-04 .box-image img {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.capabilities-row .projects-wrap.style-04 .content {
    flex: 1;
    padding: 0 6px 0;
}

/* =========================================================
   Home – Solutions single row (all 8 across on lg+)
   ========================================================= */
@media (min-width: 992px) {
    .solutions-row {
        justify-content: center;
    }
    .solutions-row > [class*="col-"] {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
    .solutions-row .ht-box-images.style-04 {
        padding: 16px 8px !important;
    }
    .solutions-row .ht-box-images.style-04 .box-image {
        margin-bottom: 10px;
    }
    .solutions-row .ht-box-images.style-04 .content h6.heading {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* =========================================================
   Home – Industries compact grid (8 per row on lg+)
   ========================================================= */
@media (min-width: 992px) {
    .industries-row > [class*="col-"] {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

.industries-row .ht-box-images.style-03 {
    padding: 16px 10px !important;
}

.industries-row .ht-box-images.style-03 .box-image {
    margin-bottom: 10px;
}

.industries-row .ht-box-images.style-03 .content h6.heading {
    font-size: 13px;
    line-height: 1.3;
}

/* =========================================================
   Home – Technology Stack (12 per row on lg+)
   ========================================================= */
@media (min-width: 992px) {
    .tech-stack-row > [class*="col-"] {
        flex: 0 0 8.333%;
        max-width: 8.333%;
    }
}

/* =========================================================
   Home – Featured Services  (smaller boxes + equal height)
   ========================================================= */
.featured-services-row {
    row-gap: 24px;
}

.featured-services-row .projects-wrap.style-04 {
    height: 100%;
}

.featured-services-row .projects-wrap.style-04 .projects-image-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 52px;
    margin-bottom: 0;
    height: 100%;
}

.featured-services-row .projects-wrap.style-04 .box-image {
    margin-bottom: 12px;
}

.featured-services-row .projects-wrap.style-04 .box-image img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

.featured-services-row .projects-wrap.style-04 .content {
    flex: 1;
    padding: 0;
}

.featured-services-row .projects-wrap.style-04 .content h5.heading {
    font-size: 15px;
    margin-bottom: 10px;
}

/* =========================================================
   Contact page – info cards (equal height + color accents)
   ========================================================= */
.contact-info-card .icon-box-wrap {
    display: flex;
    flex-direction: column;
    border-top: 4px solid transparent;
}

.contact-info-card .icon-box-wrap .content {
    flex: 1;
}

/* Coloured icon circle */
.contact-info-card__icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

/* Phone card — violet/purple */
.contact-info-card--phone .icon-box-wrap {
    background: linear-gradient(160deg, #faf5ff 0%, #fff 60%);
    border-top-color: #7c3aed;
}

.contact-info-card--phone .contact-info-card__icon-wrap {
    background: #ede9fe;
    color: #7c3aed;
}

.contact-info-card--phone .icon-box-wrap .content .heading {
    color: #6d28d9;
}

.contact-info-card--phone .feature-btn a {
    color: #7c3aed;
}

.contact-info-card--phone .feature-btn a:hover {
    color: #4c1d95;
}

.contact-info-card--phone:hover .icon-box-wrap {
    border-top-color: #7c3aed;
}

/* Address card — teal/emerald */
.contact-info-card--address .icon-box-wrap {
    background: linear-gradient(160deg, #f0fdf4 0%, #fff 60%);
    border-top-color: #059669;
}

.contact-info-card--address .contact-info-card__icon-wrap {
    background: #d1fae5;
    color: #059669;
}

.contact-info-card--address .icon-box-wrap .content .heading {
    color: #047857;
}

/* Email card — amber/orange */
.contact-info-card--email .icon-box-wrap {
    background: linear-gradient(160deg, #fff7ed 0%, #fff 60%);
    border-top-color: #ea580c;
}

.contact-info-card--email .contact-info-card__icon-wrap {
    background: #ffedd5;
    color: #ea580c;
}

.contact-info-card--email .icon-box-wrap .content .heading {
    color: #c2410c;
}

.contact-info-card--email .feature-btn a {
    color: #ea580c;
}

.contact-info-card--email .feature-btn a:hover {
    color: #9a3412;
}

/* =========================================================
   Breadcrumb — compact (all pages)
   ========================================================= */
.breadcrumb-area {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
}

.breadcrumb-title {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 0;
}

.breadcrumb-list {
    margin-top: 8px !important;
}

@media only screen and (max-width: 767px) {
    .breadcrumb-area {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
    .breadcrumb-title {
        font-size: 22px;
    }
}

/* =========================================================
   Contact page — reduce section whitespace
   ========================================================= */
.feature-icon-wrapper.section-space--ptb_100 {
    padding-top: 50px !important;
    padding-bottom: 40px !important;
}

.contact-us-area.section-space--pb_100 {
    padding-bottom: 50px !important;
}
