/* ============================================
   9series Website - Matching Figma Design
   Full-width backgrounds with centered content
   ============================================ */

:root {
    --primary-color: #045DE8;
    --primary-dark: #44209C;
    --gradient-start: #045DE8;
    --gradient-end: #3985FF;
    --black-text: #333333;
    --secondary-text: #444444;
    --light-text: #6C6C6C;
    --white: #FFFFFF;
    --blue-border: #C6DAFA;
    --blue-card-bg: #F6F9FF;
    --light-bg: #F6F6F9;
    --nav-text: #222222;
    --border-color: rgba(39, 39, 39, 0.1);
    --container-width: 1280px;
    --container-padding: 80px;
    --main-color: #142040;
    --card-bg: #e4f0ff;
    --stroke: #c4dbf9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lexend', sans-serif;
    color: var(--black-text);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    overscroll-behavior-y: none;
}

/* Container for content */
.container {
    width: 100%;
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Header / Banner - Full Width Background
   ============================================ */

.header-banner {
    width: 100%;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.2s ease;
}

.header-banner.dropdown-open {
    background: var(--white);
    border-bottom-color: transparent;
}

.header-banner.dropdown-open .nav-dropdown-menu {
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 34px 9px 0px rgba(0, 0, 0, 0);
}

.header-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px var(--container-padding);
    height: 60px;
    position: relative;
}

.logo-img {
    height: 28px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link-item {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--nav-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.nav-link-item.agentic-ai {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.ai-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.agentic-text {
    background: radial-gradient(188.67% 408.58% at 3.51% 12.58%, #297CFF 0%, #001E4D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    z-index: 1002;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--black-text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.25s ease;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 21px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 28px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 21px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-50%) scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 21px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.35s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
}

.mobile-menu-backdrop.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation - Slide-in Panel */
.mobile-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: min(85vw, 380px);
    height: 100dvh;
    background: var(--white);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
    min-height: 60px;
}

.mobile-nav-logo {
    height: 24px;
    width: auto;
}

.mobile-nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--light-bg);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-close:active {
    transform: scale(0.92);
}

.mobile-nav-close svg {
    width: 18px;
    height: 18px;
    color: var(--black-text);
}

.mobile-nav-body {
    padding: 8px 0;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--black-text);
    text-decoration: none;
    padding: 14px 24px;
    border: none;
    transition: background 0.2s ease, color 0.2s ease;
    width: 100%;
    cursor: pointer;
    background: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: var(--light-bg);
    color: var(--primary-color);
}

.mobile-nav-link .bi-chevron-down {
    margin-left: auto;
    font-size: 12px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--light-text);
}

.mobile-nav-link.active .bi-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.ai-icon-mobile {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.mobile-nav-accordion {
    border: none;
}

.accordion-toggle {
    justify-content: space-between;
}

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--light-bg);
}

.mobile-accordion-content.active {
    max-height: 2000px;
}

.mobile-submenu-link {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-text);
    text-decoration: none;
    padding: 12px 24px 12px 40px;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.mobile-submenu-link::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.2s ease;
}

.mobile-submenu-link:hover,
.mobile-submenu-link:active {
    color: var(--primary-color);
    padding-left: 44px;
}

.mobile-submenu-link:hover::before,
.mobile-submenu-link:active::before {
    background: var(--primary-color);
}

/* Nested Sub-Accordion inside Services */
.mobile-sub-accordion {
    border-bottom: 1px solid rgba(39, 39, 39, 0.06);
}

.mobile-sub-accordion:last-child {
    border-bottom: none;
}

.mobile-sub-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px 12px 40px;
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
}

.mobile-sub-accordion-toggle:hover,
.mobile-sub-accordion-toggle:active {
    background: rgba(4, 93, 232, 0.04);
}

.mobile-sub-accordion-link {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.2s ease;
    text-align: left;
}

.mobile-sub-accordion-toggle:hover .mobile-sub-accordion-link,
.mobile-sub-accordion-toggle.active .mobile-sub-accordion-link {
    color: var(--primary-color);
}

.mobile-sub-accordion-toggle .bi-chevron-down {
    font-size: 10px;
    color: var(--light-text);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
}

.mobile-sub-accordion-toggle.active .bi-chevron-down {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.mobile-sub-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(4, 93, 232, 0.02);
}

.mobile-sub-accordion-content.active {
    max-height: 400px;
}

.mobile-deep-link {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--light-text);
    text-decoration: none;
    padding: 10px 24px 10px 56px;
    position: relative;
    transition: color 0.2s ease, background 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-deep-link::before {
    content: '';
    position: absolute;
    left: 44px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--border-color);
    transition: background 0.2s ease;
}

.mobile-deep-link:hover,
.mobile-deep-link:active {
    color: var(--primary-color);
    background: rgba(4, 93, 232, 0.04);
}

.mobile-deep-link:hover::before,
.mobile-deep-link:active::before {
    background: var(--primary-color);
}

.mobile-nav-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    position: sticky;
    bottom: 0;
    background: var(--white);
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border: none;
    border-radius: 8px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-nav-cta:hover {
    opacity: 0.92;
}

.mobile-nav-cta:active {
    transform: scale(0.98);
}

.mobile-nav-cta svg {
    width: 16px;
    height: 16px;
}

/* Dropdown Navigation */
.nav-dropdown-wrapper {
    position: static;
}

.nav-link-item.has-dropdown {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100vw;
    height: auto;
    background: var(--blue-card-bg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.nav-dropdown-wrapper:hover .nav-dropdown-menu,
.nav-dropdown-wrapper.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: flex;
    gap: 0;
    width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    justify-content: space-between;
    align-items: flex-start;
}

.dropdown-columns-wrapper {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    flex-shrink: 0;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 292px;
}

.dropdown-column-left .dropdown-item {
    height: 57px;
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(198, 218, 250, 0.5);
}

.dropdown-column-right .dropdown-item {
    height: 53px;
    padding: 16px 0;
    border-bottom: none;
}

.submenu-group {
    display: none;
}

.submenu-group.active {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 21px;
    color: var(--black-text);
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    white-space: break-spaces;
}

.dropdown-item.no-border {
    border-bottom: none;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: var(--primary-color);
    font-weight: 500;
}

.dropdown-item i {
    font-size: 14px;
    color: inherit;
}

.dropdown-column-left .dropdown-item i {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.dropdown-column-left .dropdown-item:hover i,
.dropdown-column-left .dropdown-item.active i {
    opacity: 1;
}

.dropdown-divider {
    width: 1px;
    height: 325px;
    background: var(--blue-border);
    flex-shrink: 0;
}

.dropdown-card {
    width: 309px;
    border: 1px solid var(--white);
    border-radius: 16px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.dropdown-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/bg/ai-labs-bg.png') no-repeat center center;
    background-size: cover;
    z-index: 0;
    border-radius: 16px;
}

.dropdown-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dropdown-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 277px;
}

.dropdown-card-header>i {
    color: var(--white);
    font-size: 18px;
}

.ai-labs-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--white);
}

.ai-labs-title .light {
    font-weight: 300;
}

.dropdown-card-boxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-sm-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-sm-primary:hover {
    background: #0347b8;
}

.btn-sm-primary i {
    font-size: 14px;
}

.dropdown-card-body {
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    padding: 16px;
    width: 277px;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.dropdown-card-body p {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: var(--secondary-text);
    margin: 0;
    width: 245px;
}

.dropdown-card-icons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    justify-items: center;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 16px;
    padding: 16px;
    width: 277px;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.dropdown-card-icons img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

/* =============================================
   Dropdown Sidebar (Tech Strip + Case Study)
   ============================================= */
.dropdown-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 460px;
    flex-shrink: 0;
}

.dropdown-tech-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 16px 24px;
}

.dropdown-tech-strip img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.dropdown-case-card {
    display: none;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease;
}

.dropdown-case-card.active {
    display: flex;
}

.dropdown-case-card:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
    color: inherit;
}

.dropdown-case-top {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid var(--blue-border);
}

.dropdown-case-image {
    width: 93px;
    height: 93px;
    border-radius: 11px;
    overflow: hidden;
    flex-shrink: 0;
}

.dropdown-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-case-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 92px;
}

.dropdown-case-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #6c6c6c;
    width: fit-content;
}

.dropdown-case-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    color: var(--black-text);
    margin: 0;
}

.dropdown-case-metrics {
    display: flex;
    justify-content: space-between;
    padding: 16px 40px;
}

.dropdown-case-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.dropdown-metric-value {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: normal;
    color: var(--primary-color);
}

.dropdown-metric-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--primary-color);
}

/* Small Dropdown (Industry) */
.nav-dropdown-wrapper-small {
    position: relative;
}

.nav-dropdown-small {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: auto;
    min-width: 210px;
    background: var(--white);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1),
        0px 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(39, 39, 39, 0.08);
}

.nav-dropdown-wrapper-small:hover .nav-dropdown-small,
.nav-dropdown-wrapper-small.active .nav-dropdown-small {
    opacity: 1;
    visibility: visible;
}

.dropdown-small-content {
    display: flex;
    flex-direction: column;
}

.dropdown-small-item {
    display: block;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--nav-text);
    text-decoration: none;
    padding: 9px 20px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-small-item:hover {
    color: var(--primary-color);
    background: var(--blue-card-bg);
}

/* ============================================
   Hero Section - Full Width Background
   ============================================ */

.hero-section {
    width: 100%;
    height: 725px;
    position: relative;
    /* background: linear-gradient(135deg, 
        rgba(200, 222, 255, 0.4) 0%, 
        rgba(255, 255, 255, 1) 30%,
        rgba(255, 255, 255, 1) 70%,
        rgba(200, 222, 255, 0.3) 100%); */
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-ellipse-right {
    position: absolute;
    top: -280px;
    right: -120px;
    width: 457px;
    height: auto;
    pointer-events: none;
    filter: blur(152px);
    -webkit-filter: blur(152px);
}

.hero-ellipse-left {
    position: absolute;
    top: -521px;
    left: -341px;
    width: 570px;
    height: auto;
    /* transform: rotate(-46deg); */
    pointer-events: none;
    filter: blur(152px);
    -webkit-filter: blur(152px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.51);
}

.hero-nine {
    position: absolute;
    top: 220px;
    right: 0px;
    width: 300px;
    height: 587px;
    z-index: 2;
    pointer-events: none;
}

.hero-video-nine {
    position: absolute;
    top: 0;
    right: 13%;
    width: 473px;
    max-width: 473px;
    aspect-ratio: 473 / 777;
    z-index: 2;
    pointer-events: none;
    -webkit-mask-image: url(../assets/banner-video/banner-mask.svg);
    mask-image: url(../assets/banner-video/banner-mask.svg);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.hero-video.active {
    opacity: 1;
}

.hero-wrapper {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
}

.hero-nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 200px;
    border: 1px solid var(--blue-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02);
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 14px;
    z-index: 10;
}

.hero-nav-arrow:hover {
    background: var(--blue-card-bg);
    border-color: var(--primary-color);
}

.hero-nav-arrow.left,
.hero-nav-arrow.right {
    flex-shrink: 0;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 68px;
    height: 100%;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.hero-slide.prev {
    transform: translateX(-30px);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: min(562px, 39vw);
    flex-shrink: 0;
}

.hero-slide-image {
    flex-shrink: 1;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

.hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.293;
    color: var(--black-text);
    margin: 0;
    max-width: 622px;
}

.hero-title .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.hero-description {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
    max-width: 630px;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    box-shadow: 0px 5px 16px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-primary-cta:hover {
    background: #0348C4;
    transform: translateY(-2px);
    color: var(--white);
}

.btn-primary-cta.white {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary-color);
}

.btn-primary-cta.white:hover {
    background: #F0F0F0;
    color: var(--primary-color);
}

.hero-pagination {
    position: absolute;
    bottom: 110px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 4;
}

.hero-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #E0E0E0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-pagination .dot.active {
    width: 24px;
    background: var(--primary-color);
}

/* ============================================
   Stats Section - Full Width Background
   ============================================ */

.stats-section {
    width: 100%;
    position: relative;
    z-index: 10;
    margin-top: -76px;
    padding: 0 var(--container-padding);
}

.stats-card {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 42px;
    align-items: center;
    background: linear-gradient(90deg,
            rgba(4, 93, 232, 1) 0%,
            rgba(17, 103, 238, 1) 25%,
            rgba(31, 113, 244, 1) 50%,
            rgba(57, 133, 255, 1) 100%);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0px 3px 6px 0px rgba(92, 92, 92, 0.12),
        0px 11px 11px 0px rgba(92, 92, 92, 0.11),
        0px 24px 15px 0px rgba(92, 92, 92, 0.06),
        0px 44px 17px 0px rgba(92, 92, 92, 0.02),
        0px 68px 19px 0px rgba(92, 92, 92, 0);
    position: relative;
}

.stats-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0px 4px 24px 0px rgba(255, 255, 255, 0.25);
    pointer-events: none;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: fit-content;
    text-align: center;
}

.stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 0.7;
    color: var(--white);
    margin: 0;
}

.stat-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--white);
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 41px;
    background: rgba(200, 222, 255, 0.5);
    flex-shrink: 0;
}

/* ============================================
   Clients Section - Full Width Background
   ============================================ */

.clients-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.clients-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black-text);
    text-align: center;
    margin-bottom: 48px;
}

.clients-marquee-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 100px;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.clients-marquee.reverse .clients-track {
    animation-direction: reverse;
}

/* ============================================
   Service Sub Navigation Bar
   ============================================ */

.service-sub-nav {
    width: 100%;
    background: #44209C;
    padding: 8px 80px;
    position: sticky;
    top: 60px;
    z-index: 999;
}

.service-sub-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.service-sub-nav-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    line-height: normal;
}

.service-sub-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.service-sub-nav-link {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    padding: 0 16px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    white-space: nowrap;
    line-height: normal;
}

.service-sub-nav-link:hover {
    opacity: 0.8;
}

.service-sub-nav-link.active {
    color: #ffffff;
    opacity: 0.8;
}

/* ============================================
   Service Page - Hero Section (Blue Banner)
   ============================================ */

.service-hero-section {
    width: 100%;
    height: 580px;
    background: #045DE8;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-ellipse-right {
    position: absolute;
    top: 0;
    right: 1188px;
    width: 457px;
    height: 822px;
    pointer-events: none;
    filter: blur(152px);
    -webkit-filter: blur(152px);
    opacity: 0.2;
}

.service-ellipse-left {
    position: absolute;
    top: -57.67px;
    left: -341.67px;
    width: 569.516px;
    height: 566.845px;
    pointer-events: none;
    filter: blur(152px);
    -webkit-filter: blur(152px);
    transform: rotate(-46.09deg);
    opacity: 0.2;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 93, 232, 0.2);
    backdrop-filter: blur(152px);
    -webkit-backdrop-filter: blur(152px);
    z-index: 1;
}

.service-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 560px;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.service-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top right;
}

.service-hero-section .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: flex-start;
}

.service-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
    align-items: flex-start;
}

.service-hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 49px;
    letter-spacing: 0%;
    color: var(--white);
    margin: 0;
    text-align: left;
}

.service-hero-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0%;
    color: #F6F9FF;
    margin: 0;
    text-align: left;
}

.btn-service-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #F9F5FF;
    border: 1px solid #F9F5FF;
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

.btn-service-hero:hover {
    background: #F9F5FF;
    border-color: #F9F5FF;
    color: var(--primary-color);
}

.btn-service-hero-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   Why Software Product Engineering Matters Section
   ============================================ */

/* Service sub-nav anchor targets: avoid content hidden under sticky nav */
#why-engineering,
#services-tabs,
#delivery-approach,
#case-studies,
#blogs {
    scroll-margin-top: 120px;
}

.why-engineering-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(90deg, #F6F9FF 0%, #F6F9FF 100%);
    background-image: radial-gradient(ellipse at 50% 100%, rgba(137, 183, 255, 1) 0%, rgba(174, 204, 255, 1) 5.13%, rgba(210, 225, 255, 1) 11.26%, transparent 100%);
    position: relative;
}

.why-engineering-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.why-engineering-header {
    text-align: center;
    max-width: 848px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-engineering-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: #333333;
    margin: 0;
}

.why-engineering-title .highlight {
    font-weight: 500;
    color: #045DE8;
}

.why-engineering-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #444444;
    margin: 0;
}

.why-engineering-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.why-engineering-cards {
    display: flex;
    gap: 16px;
    width: 100%;
    max-width: 1032px;
}

.engineering-card {
    flex: 1;
    width: 508px;
    max-width: 508px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 21px;
    position: relative;
    overflow: visible;
}

.engineering-card-red {
    border: 1px solid #FFCBCB;
}

.engineering-card-blue {
    border: 1px solid #C6DAFA;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 12px 7px rgba(0, 0, 0, 0.02), 0px 22px 9px rgba(0, 0, 0, 0), 0px 34px 9px rgba(0, 0, 0, 0);
    overflow: hidden;
}

.engineering-card-corner {
    position: absolute;
    top: -22px;
    right: 0;
    width: 116px;
    height: 144px;
}

.engineering-card-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.engineering-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.engineering-card-blue .engineering-card-content {
    gap: 16px;
}

.engineering-card-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    color: #444444;
    margin: 0;
}

.engineering-card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 444px;
}

.engineering-card-blue .engineering-card-list {
    gap: 10px;
}

.engineering-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #333333;
}

.engineering-list-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.why-engineering-bottom-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5F779C;
    margin: 0;
    text-align: center;
}

.btn-primary-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #045DE8;
    border: 1px solid #045DE8;
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05), 0px 5px 16px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background: #0350c4;
    border-color: #0350c4;
    color: var(--white);
}

.btn-primary-outline.centered {
    margin: 0 auto;
}

.btn-secondary-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* ============================================
   Services Tabs Section
   ============================================ */

.services-tabs-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services-tabs-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.services-tabs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.services-tabs-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 48px;
    color: var(--black-text);
    margin: 0;
}

.services-tabs-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.services-tabs-content {
    display: flex;
    gap: 16px;
    position: relative;
    align-items: stretch;
}

.services-tabs-bg-nine {
    position: absolute;
    right: 0;
    top: 0;
    width: 545px;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
}

.services-tabs-bg-nine img {
    width: 100%;
    height: auto;
}

.services-tabs-list {
    width: 413px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

.services-tab-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.services-tab-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 365px;
    height: 1px;
    background: #C6DAFA;
    border-radius: 40px;
}

.services-tab-item:last-of-type::after {
    display: none;
}

.services-tab-item .tab-number {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--secondary-text);
    line-height: 15px;
}

.services-tab-item .tab-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black-text);
}

.services-tab-item.active .tab-number {
    color: var(--primary-color);
}

.services-tab-item.active .tab-title {
    font-weight: 500;
    color: var(--primary-color);
}

.services-active-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 83px;
    /* Initial height for first tab */
    background: var(--primary-color);
    border-radius: 50px;
    transition: height 0.3s ease;
}

.services-tab-content-wrapper {
    flex: 1;
    max-width: 414px;
    display: flex;
    flex-direction: column;
}

.services-tab-panel {
    display: none;
}

.services-tab-panel.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
}

.services-panel-card {
    background: var(--white);
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 12px 7px rgba(0, 0, 0, 0.02), 0px 22px 9px rgba(0, 0, 0, 0), 0px 34px 9px rgba(0, 0, 0, 0);
}

.services-panel-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--black-text);
    margin: 0;
    max-width: 366px;
}

.services-panel-focus {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 366px;
}

.focus-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--secondary-text);
    margin: 0;
}

.focus-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.focus-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 25px;
    color: var(--black-text);
}

.focus-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.services-panel-outcome {
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 24px;
    min-height: 172px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 12px 7px rgba(0, 0, 0, 0.02), 0px 22px 9px rgba(0, 0, 0, 0), 0px 34px 9px rgba(0, 0, 0, 0);
}

.outcome-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    color: var(--secondary-text);
    margin: 0;
}

.outcome-text {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    color: var(--primary-color);
    margin: 0;
}

.services-tab-image {
    width: 421px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    align-self: stretch;
}

.services-tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Delivery Approach Section
   ============================================ */

.delivery-approach-section {
    width: 100%;
    padding: 80px 0;
    background: var(--blue-card-bg);
    position: relative;
    overflow: hidden;
}

.delivery-approach-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.delivery-approach-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 220px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.delivery-approach-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.delivery-approach-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--black-text);
    margin: 0;
}

.delivery-approach-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.delivery-approach-cards {
    display: flex;
    width: 100%;
    border-bottom: 1px solid #C6DAFA;
    position: relative;
}

.approach-card {
    flex: 1;
    width: 320px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--blue-card-bg);
    border-right: 1px solid #C6DAFA;
    min-height: 298px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.approach-card:nth-child(4) {
    border-right: none;
}

.approach-card.active .approach-title {
    color: var(--primary-color);
    font-weight: 500;
}

.approach-card.active .approach-desc {
    color: var(--secondary-text);
}

.approach-number {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--secondary-text);
    line-height: normal;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.approach-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid rgba(4, 93, 232, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-icon svg,
.approach-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.approach-title {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: normal;
    color: var(--black-text);
    margin: 0;
}

.approach-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: #707070;
    margin: 0;
    max-width: 272px;
}

.approach-timeline {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 17px;
}

.timeline-progress {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 2px;
    width: calc(25% + 8px);
    background: #045DE8;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.timeline-dot {
    width: 17px;
    height: 17px;
    background: #C6DAFA;
    border-radius: 50%;
    position: absolute;
    top: 0;
    z-index: 1;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.timeline-dot[data-step="1"] {
    left: calc(25% - 8px);
}

.timeline-dot[data-step="2"] {
    left: calc(50% - 8px);
}

.timeline-dot[data-step="3"] {
    left: calc(75% - 8px);
}

.timeline-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 0 5px rgba(4, 93, 232, 0.2);
}

/* ============================================
   Tech Stack Grid Section
   ============================================ */

.tech-stack-grid-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.tech-stack-grid-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.tech-stack-grid-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tech-stack-grid-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 48px;
    letter-spacing: -0.4px;
    color: var(--black-text);
    margin: 0;
}

.tech-stack-grid-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.tech-stack-categories {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.tech-stack-category {
    width: calc(100% / 3);
    padding: 24px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid #C6DAFA;
    border-bottom: 1px solid #C6DAFA;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
}

/* 1 category: single full-width card */
.tech-stack-categories:has(.tech-stack-category:only-child) .tech-stack-category {
    width: 100%;
    border-right: none;
    border-bottom: none;
}

/* 2 categories: one row, two boxes same total width (no empty third) */
.tech-stack-categories:has(.tech-stack-category:nth-child(2):last-child) .tech-stack-category {
    width: 50%;
    border-bottom: none;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(2):last-child) .tech-stack-category:nth-child(2) {
    border-right: none;
}

/* 3 categories: one line */
.tech-stack-categories:has(.tech-stack-category:nth-child(3):last-child) .tech-stack-category {
    border-bottom: none;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(3):last-child) .tech-stack-category:nth-child(3) {
    border-right: none;
}

/* 4 categories: 2 above, 2 below */
.tech-stack-categories:has(.tech-stack-category:nth-child(4):last-child) .tech-stack-category {
    width: 50%;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(4):last-child) .tech-stack-category:nth-child(2),
.tech-stack-categories:has(.tech-stack-category:nth-child(4):last-child) .tech-stack-category:nth-child(4) {
    border-right: none;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(4):last-child) .tech-stack-category:nth-child(3),
.tech-stack-categories:has(.tech-stack-category:nth-child(4):last-child) .tech-stack-category:nth-child(4) {
    border-bottom: none;
}

/* 5 categories: 3 above, 2 below (bottom two same total width as three) */
.tech-stack-categories:has(.tech-stack-category:nth-child(5):last-child) .tech-stack-category:nth-child(-n+3) {
    width: 33.333%;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(5):last-child) .tech-stack-category:nth-child(n+4) {
    width: 50%;
    border-bottom: none;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(5):last-child) .tech-stack-category:nth-child(3),
.tech-stack-categories:has(.tech-stack-category:nth-child(5):last-child) .tech-stack-category:nth-child(5) {
    border-right: none;
}

/* 6+ categories: standard 3-column grid */
.tech-stack-categories:has(.tech-stack-category:nth-child(6)) .tech-stack-category:nth-child(3n) {
    border-right: none;
}
.tech-stack-categories:has(.tech-stack-category:nth-child(6)) .tech-stack-category:nth-child(n+4) {
    border-bottom: none;
}

.category-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-text);
    margin: 0;
}

.category-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    width: 100%;
}

.tech-icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tech-icon-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ============================================
   Success Stories Section
   ============================================ */

.success-stories-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.success-stories-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.success-stories-bg-graphic {
    position: absolute;
    left: -251px;
    top: 7px;
    width: 542px;
    height: 536px;
    background: url('../assets/icons/circle-9.svg') no-repeat center;
    background-size: contain;
    opacity: 0.05;
    pointer-events: none;
}

.success-stories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.success-stories-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--black-text);
    margin: 0;
}

.success-stories-carousel-wrapper {
    overflow: hidden;
    margin-bottom: 40px;
}

.success-stories-carousel {
    display: flex;
    gap: 16px;
}

.success-story-card {
    display: flex;
    gap: 24px;
    background: var(--white);
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 24px;
    min-width: 862px;
    flex-shrink: 0;
}

.story-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-category {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--black-text);
    margin: 0;
}

.story-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-text);
    margin: 0;
}

.story-metrics {
    display: flex;
    gap: 32px;
    margin-top: auto;
}

.story-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.story-metric .metric-value {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

.story-metric .metric-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-text);
}

.story-image {
    width: 300px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.success-stories-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.story-nav-btn {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid #C6DAFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-nav-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.story-nav-btn i {
    font-size: 14px;
    color: var(--secondary-text);
}

.story-nav-btn:hover i {
    color: var(--white);
}

/* ============================================
   Insights Section
   ============================================ */

.insights-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.insights-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.insights-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.insights-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--black-text);
    margin: 0;
}

.insights-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.insight-card {
    background: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.insight-card:hover {
    box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.insight-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-category {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.insight-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    margin-top: auto;
}

.insight-link:hover {
    color: #0350c4;
}

/* ============================================
   Service CTA Section
   ============================================ */

.service-cta-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.service-cta-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-cta-content {
    max-width: 640px;
}

.service-cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--black-text);
    margin: 0 0 24px 0;
}

.service-cta-title .bold {
    font-weight: 600;
}

.service-cta-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--secondary-text);
    margin: 0 0 16px 0;
}

.service-cta-subtext {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--secondary-text);
    margin: 0 0 32px 0;
}

.service-cta-buttons {
    display: flex;
    gap: 24px;
}

.service-cta-graphic {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 594px;
    height: auto;
    pointer-events: none;
    opacity: 0.3;
}

.cta-nine-graphic {
    width: 100%;
    height: auto;
}

/* ============================================
   Service Page - Overview Section
   ============================================ */

.service-overview-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.service-overview-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-overview-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

.service-overview-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.service-overview-title .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.service-overview-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
    max-width: 700px;
}

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

.overview-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
}

.overview-card:hover {
    box-shadow: 0px 4px 30px rgba(4, 93, 232, 0.1);
    transform: translateY(-4px);
}

.overview-card-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-card-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overview-card-icon img {
    width: 28px;
    height: 28px;
}

.overview-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.overview-card-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
}

/* ============================================
   Service Page - Capabilities Section
   ============================================ */

.service-capabilities-section {
    width: 100%;
    background: radial-gradient(68% 163.4% at 3.51% 12.58%, #045DE8 0%, #44209C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-capabilities-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.service-capabilities-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

.service-capabilities-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

.service-capabilities-title .highlight {
    font-weight: 600;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.capability-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.capability-item:last-child {
    border-bottom: none;
}

.capability-number {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    width: 80px;
}

.capability-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.capability-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    margin: 0;
}

.capability-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 800px;
}

.capabilities-bg-nine {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 300px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.capabilities-bg-nine img {
    width: 100%;
    height: auto;
}

/* ============================================
   Service Page - Technology Stack Section
   ============================================ */

.technology-stack-section {
    width: 100%;
    padding: 80px 0;
    background: var(--blue-card-bg);
}

.technology-stack-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.technology-stack-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

.technology-stack-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.technology-stack-title .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.technology-stack-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
    max-width: 600px;
}

.technology-categories {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tech-category {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-category-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
}

.tech-category-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.tech-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-logo-card:hover {
    box-shadow: 0px 4px 20px rgba(4, 93, 232, 0.1);
    transform: translateY(-2px);
}

.tech-logo-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.tech-logo-card span {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-text);
}

/* ============================================
   Service Page - Process Section
   ============================================ */

.service-process-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.service-process-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.service-process-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 60px;
}

.service-process-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.service-process-title .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.service-process-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 20px rgba(4, 93, 232, 0.3);
}

.process-step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.process-step-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.process-step-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
}

.process-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--blue-border) 100%);
    margin-top: 32px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Service Page - Related Case Studies Section
   ============================================ */

.related-case-studies-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(246, 249, 255, 1) 100%);
}

.related-case-studies-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.related-case-studies-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-bottom: 48px;
}

.related-case-studies-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.related-case-studies-title .highlight {
    font-weight: 600;
    color: var(--primary-color);
}

.related-case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.related-case-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-case-card:hover {
    box-shadow: 0px 8px 40px rgba(4, 93, 232, 0.12);
    transform: translateY(-4px);
}

.related-case-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.related-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-case-card:hover .related-case-image img {
    transform: scale(1.05);
}

.related-case-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-case-category {
    font-family: 'Lexend', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.related-case-title {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.related-case-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
}

.related-case-metrics {
    display: flex;
    gap: 32px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--blue-border);
}

.related-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.related-metric-value {
    font-family: 'Lexend', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--primary-color);
}

.related-metric-label {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--secondary-text);
}

.related-case-action {
    display: flex;
    justify-content: center;
}

/* ============================================
   Service Page - Responsive Styles
   ============================================ */

@media (max-width: 1024px) {

    /* Service Hero Section */
    .service-hero-section {
        height: auto;
        min-height: 500px;
        padding: 60px 0;
    }

    .service-hero-image {
        width: 50%;
        opacity: 0.4;
    }

    .service-hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .service-hero-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .service-sub-nav {
        top: 0;
        position: relative;
        padding: 8px 0;
    }

    .service-sub-nav-container {
        flex-direction: column;
        gap: 8px;
        padding: 0 20px;
    }

    .service-sub-nav-title {
        text-align: center;
    }

    .service-sub-nav-links {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .service-sub-nav-links::-webkit-scrollbar {
        display: none;
    }

    .service-sub-nav-link {
        padding: 4px 14px;
        font-size: 13px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .service-hero-image {
        width: 100%;
        opacity: 0.3;
    }

    .service-banner-section {
        padding: 60px 0;
        min-height: auto;
    }

    .service-banner-container {
        flex-direction: column;
        gap: 40px;
    }

    .service-banner-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .service-banner-title {
        font-size: 36px;
    }

    .service-banner-corner {
        max-width: 300px;
        opacity: 0.5;
    }

    .service-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capability-item {
        gap: 24px;
    }

    .capability-number {
        font-size: 36px;
        width: 60px;
    }

    .capability-title {
        font-size: 20px;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 24px;
    }

    .process-step-content {
        text-align: left;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        margin: 0 0 0 31px;
        background: linear-gradient(180deg, var(--primary-color) 0%, var(--blue-border) 100%);
    }

    .related-case-studies-grid {
        grid-template-columns: 1fr;
    }

    /* Why Engineering Section */
    .why-engineering-section {
        padding: 60px 0;
    }

    .why-engineering-title {
        font-size: 28px;
    }

    .why-engineering-cards {
        flex-direction: column;
    }

    .engineering-card {
        width: auto;
        max-width: 100%;
        min-height: auto;
    }

    /* Delivery Approach Section */
    .delivery-approach-section {
        padding: 60px 0;
    }

    .delivery-approach-title {
        font-size: 28px;
    }

    .delivery-approach-cards {
        flex-wrap: wrap;
    }

    .approach-card {
        flex: 1 1 calc(50% - 1px);
        min-width: 280px;
    }

    .delivery-approach-corner {
        width: 300px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 768px) {

    /* Service Hero Section */
    .service-hero-section {
        height: auto;
        min-height: 450px;
        padding: 50px 0;
    }

    .service-hero-title {
        font-size: 26px;
        line-height: 36px;
    }

    .service-hero-desc {
        font-size: 15px;
        line-height: 23px;
    }

    .service-hero-image {
        width: 100%;
        opacity: 0.25;
    }

    .service-hero-content {
        max-width: 100%;
    }

    .btn-service-hero {
        font-size: 14px;
        padding: 10px 16px;
    }

    .service-sub-nav {
        padding: 6px 0;
    }

    .service-sub-nav-container {
        padding: 0 16px;
    }

    .service-sub-nav-title {
        font-size: 14px;
    }

    .service-sub-nav-links {
        gap: 0;
    }

    .service-sub-nav-link {
        font-size: 12px;
        padding: 4px 10px;
    }

    .service-banner-section {
        padding: 48px 0;
    }

    .service-banner-title {
        font-size: 28px;
    }

    .service-banner-desc {
        font-size: 16px;
    }

    .service-banner-tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .tech-icon-card {
        width: 80px;
        height: 80px;
    }

    .tech-icon-card img {
        width: 36px;
        height: 36px;
    }

    .service-banner-corner {
        max-width: 200px;
    }

    .service-overview-section {
        padding: 60px 0;
    }

    .service-overview-title,
    .service-capabilities-title,
    .technology-stack-title,
    .service-process-title,
    .related-case-studies-title {
        font-size: 28px;
    }

    .service-overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-card {
        padding: 24px;
    }

    .service-capabilities-section {
        padding: 60px 0;
    }

    .capability-item {
        flex-direction: column;
        gap: 12px;
    }

    .capability-number {
        font-size: 32px;
    }

    .capability-title {
        font-size: 18px;
    }

    .capability-desc {
        font-size: 14px;
    }

    .capabilities-bg-nine {
        display: none;
    }

    .technology-stack-section {
        padding: 60px 0;
    }

    .tech-logo-card {
        padding: 16px 24px;
    }

    .tech-logo-card img {
        width: 40px;
        height: 40px;
    }

    .service-process-section {
        padding: 60px 0;
    }

    .process-step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .process-connector {
        margin-left: 23px;
        height: 32px;
    }

    .related-case-studies-section {
        padding: 60px 0;
    }

    .related-case-image {
        height: 180px;
    }

    .related-case-title {
        font-size: 18px;
    }

    .related-metric-value {
        font-size: 24px;
    }

    /* Why Engineering Section */
    .why-engineering-section {
        padding: 50px 0;
    }

    .why-engineering-title {
        font-size: 24px;
    }

    .why-engineering-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .engineering-card {
        padding: 20px;
    }

    .engineering-card-label {
        font-size: 14px;
    }

    .engineering-list-item span {
        font-size: 14px;
    }

    .engineering-card-corner {
        width: 90px;
        height: auto;
        top: -15px;
    }

    .why-engineering-bottom-text {
        font-size: 14px;
    }

    /* Delivery Approach Section */
    .delivery-approach-section {
        padding: 50px 0;
    }

    .delivery-approach-title {
        font-size: 24px;
    }

    .approach-card {
        flex: 1 1 100%;
        padding: 20px;
    }

    .approach-title {
        font-size: 18px;
    }

    .approach-desc {
        font-size: 14px;
    }

    .approach-timeline {
        display: none;
    }

    .delivery-approach-corner {
        width: 220px;
        top: 0;
        left: 0;
    }
}

@media (max-width: 480px) {

    /* Service Hero Section */
    .service-hero-section {
        height: auto;
        min-height: 400px;
        padding: 40px 0;
    }

    .service-hero-title {
        font-size: 22px;
        line-height: 30px;
    }

    .service-hero-desc {
        font-size: 14px;
        line-height: 21px;
    }

    .service-hero-image {
        display: none;
    }

    .service-hero-content {
        max-width: 100%;
    }

    .service-sub-nav {
        padding: 6px 0;
    }

    .service-sub-nav-container {
        padding: 0 12px;
    }

    .service-sub-nav-title {
        font-size: 13px;
    }

    .service-sub-nav-link {
        font-size: 11px;
        padding: 4px 8px;
    }

    .btn-service-hero {
        font-size: 13px;
        padding: 10px 14px;
    }

    /* Services Tabs Section - mobile small */
    .services-tabs-section {
        padding: 40px 0;
    }

    .services-tabs-header {
        margin-bottom: 24px;
    }

    .services-tabs-title {
        font-size: 20px;
        line-height: 28px;
    }

    .services-tabs-content {
        gap: 16px;
    }

    .services-tab-item {
        padding: 10px 12px;
    }

    .services-tab-item .tab-number {
        font-size: 13px;
    }

    .services-tab-item .tab-title {
        font-size: 14px;
    }

    .services-panel-card {
        padding: 16px;
    }

    .services-panel-text {
        font-size: 13px;
        line-height: 20px;
    }

    .focus-label {
        font-size: 12px;
    }

    .focus-item {
        font-size: 13px;
        line-height: 20px;
    }

    .focus-item img {
        width: 16px;
        height: 16px;
    }

    .services-panel-outcome {
        padding: 16px;
        min-height: auto;
    }

    .outcome-label {
        font-size: 12px;
    }

    .outcome-text {
        font-size: 14px;
        line-height: 22px;
    }

    .services-tab-image {
        height: 200px;
        border-radius: 10px;
    }

    /* Why Engineering Section */
    .why-engineering-section {
        padding: 40px 0;
    }

    .why-engineering-title {
        font-size: 20px;
    }

    .why-engineering-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .engineering-card {
        padding: 16px;
    }

    .engineering-card-label {
        font-size: 13px;
    }

    .engineering-list-item span {
        font-size: 13px;
    }

    .engineering-list-item img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .engineering-card-corner {
        width: 70px;
        top: -10px;
    }

    .why-engineering-bottom-text {
        font-size: 13px;
    }

    .btn-primary-outline {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Delivery Approach Section */
    .delivery-approach-section {
        padding: 40px 0;
    }

    .delivery-approach-title {
        font-size: 20px;
    }

    .delivery-approach-cards {
        gap: 0;
    }

    .approach-card {
        padding: 16px;
    }

    .approach-number {
        font-size: 14px;
    }

    .approach-icon {
        width: 44px;
        height: 44px;
    }

    .approach-icon img {
        width: 24px;
        height: 24px;
    }

    .approach-title {
        font-size: 15px;
    }

    .approach-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .delivery-approach-corner {
        width: 120px;
        top: 0;
        left: 0;
        opacity: 0.5;
    }

    /* Tech Stack Grid - mobile small */
    .tech-stack-grid-section {
        padding: 40px 0;
    }

    .tech-stack-grid-container {
        gap: 24px;
    }

    .tech-stack-grid-title {
        font-size: 20px;
        line-height: 28px;
    }

    .tech-stack-categories .tech-stack-category {
        width: 100% !important;
        padding: 14px;
        border-right: none !important;
        border-bottom: 1px solid #C6DAFA;
    }

    .tech-stack-categories .tech-stack-category:last-child {
        border-bottom: none;
    }

    .category-title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .category-icons {
        gap: 10px;
    }

    .tech-icon-box {
        width: 32px;
        height: 32px;
    }

    .service-banner-section {
        padding: 32px 0;
    }

    .breadcrumb-nav {
        font-size: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-banner-title {
        font-size: 24px;
    }

    .service-banner-desc {
        font-size: 14px;
    }

    .service-banner-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-icon-card {
        width: 70px;
        height: 70px;
    }

    .tech-icon-card img {
        width: 32px;
        height: 32px;
    }

    .service-banner-corner {
        max-width: 150px;
    }

    .service-overview-section,
    .service-capabilities-section,
    .technology-stack-section,
    .service-process-section,
    .related-case-studies-section {
        padding: 48px 0;
    }

    .service-overview-title,
    .service-capabilities-title,
    .technology-stack-title,
    .service-process-title,
    .related-case-studies-title {
        font-size: 24px;
    }

    .overview-card {
        padding: 20px;
    }

    .overview-card-icon {
        width: 48px;
        height: 48px;
    }

    .overview-card-title {
        font-size: 18px;
    }

    .tech-category-logos {
        gap: 12px;
    }

    .tech-logo-card {
        padding: 12px 16px;
    }

    .tech-logo-card img {
        width: 32px;
        height: 32px;
    }

    .tech-logo-card span {
        font-size: 12px;
    }

    .process-step-title {
        font-size: 16px;
    }

    .process-step-desc {
        font-size: 13px;
    }

    .related-case-content {
        padding: 20px;
    }

    .related-case-title {
        font-size: 16px;
    }

    .related-case-desc {
        font-size: 13px;
    }

    .related-case-metrics {
        gap: 24px;
    }

    .related-metric-value {
        font-size: 20px;
    }

    .related-metric-label {
        font-size: 12px;
    }
}

.client-logo {
    height: 32px;
    width: auto;
    opacity: 0.7;
    flex-shrink: 0;
    filter: grayscale(100%);
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Taaraka logo is white – invert in default state so it’s visible */
.client-logo-taaraka {
    filter: grayscale(100%) invert(1);
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo-taaraka:hover {
    filter: grayscale(100%) invert(1);
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* ============================================
   AI Labs Section - Full Width Background
   ============================================ */

.ai-labs-section {
    width: 100%;
    padding: 48px 80px;
    background: url('../assets/bg/AI-Labs.png') no-repeat center center;
    background-size: cover;
    border-radius: 64px 64px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 190px;
}

.ai-labs-container {
    max-width: var(--container-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ai-labs-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    height: 93px;
    padding: 30px 24px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 24px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.1), inset -6px -4px 20px 0px rgba(255, 255, 255, 0.5);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    text-decoration: none;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.ai-labs-card:hover {
    height: 190px;
}

.ai-labs-content-left {
    display: flex;
    flex-direction: column;
    flex: 0 0 60%;
    max-width: 60%;
}

.ai-labs-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.ai-labs-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 32px;
}

.ai-labs-icon img {
    width: 100%;
    height: 100%;
}

.ai-labs-text {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    line-height: 1;
    color: var(--black-text);
    white-space: nowrap;
}

.ai-labs-text .ai-bold {
    font-weight: 500;
}

.ai-labs-text .labs-light {
    font-weight: 300;
}

.ai-labs-arrow {
    position: absolute;
    right: 24px;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-labs-arrow img {
    width: 36px;
    height: 32px;
    filter: brightness(0);
}

.ai-labs-card:hover .ai-labs-arrow {
    opacity: 0;
    transform: translateY(-5px);
}

/* Expanded content - hidden by default */
.ai-labs-expanded {
    opacity: 0;
    max-height: 0;
    transform: translateY(-15px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s,
        max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
    max-width: 472px;
    overflow: hidden;
    pointer-events: none;
}

.ai-labs-card:hover .ai-labs-expanded {
    opacity: 1;
    max-height: 200px;
    transform: translateY(0);
    margin-top: 20px;
    pointer-events: auto;
}

.ai-labs-description {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #444444;
    margin: 0 0 12px 0;
}

.ai-labs-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.ai-labs-link:hover {
    gap: 8px;
}

.ai-labs-link svg {
    width: 16px;
    height: 16px;
}

/* Tech logos section - flex layout */
.ai-labs-tech-logos {
    overflow: hidden;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
    flex: 0 0 40%;
    max-width: 40%;
}

.ai-labs-card:hover .ai-labs-tech-logos {
    opacity: 1;
    transform: translateX(0);
}

.ai-labs-tech-fade {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 30%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.ai-labs-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 32px;
    padding-left: 60px;
}

.tech-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

/* ============================================
   Services Section - Full Width Background
   ============================================ */

.services-section {
    width: 100%;
    background: radial-gradient(68% 163.4% at 3.51% 12.58%, #045DE8 0%, #44209C 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.services-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 272px;
    height: 197px;
    z-index: 1;
    pointer-events: none;
}

.services-corner img {
    width: 100%;
    height: 100%;
}

.services-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    color: var(--light-text);
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 34px 9px 0px rgba(0, 0, 0, 0);
    margin-bottom: 16px;
}

.section-tag.light {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.services-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: 48px;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.4px;
}

.services-title .highlight {
    font-weight: 600;
}

.services-list {
    display: flex;
    flex-direction: column;
}

.service-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    overflow: hidden;
    cursor: pointer;
    gap: 40px;
}

.service-item.animate-service {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.service-item.animate-service.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.service-item:last-child {
    border-bottom: none;
}

/* Left side - heading + content */
.service-left {
    display: flex;
    flex-direction: column;
    flex: 1 1 50%;
    min-width: 0;
}

.service-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: nowrap;
}

.service-name {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--white);
    white-space: nowrap;
}

.service-arrow {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-arrow img {
    width: 36px;
    height: 32px;
}

.service-item:hover .service-arrow {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
}

/* Right side - tech logos */
.service-right {
    display: none;
    align-items: center;
    flex: 0 0 40%;
    min-width: 0;
}

.service-item:hover .service-right {
    display: flex;
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Service expanded content */
.service-expanded {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.service-item:hover .service-expanded {
    display: flex;
    animation: fadeSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Keyframe animations for service hover */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

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

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

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

.service-description {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.service-link:hover {
    gap: 8px;
}

.service-link svg {
    width: 16px;
    height: 16px;
}

.service-tech-logos {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    justify-items: center;
}

.service-tech-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.service-tech-logo:hover {
    opacity: 1;
}

.services-bg-nine {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 380px;
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.services-bg-nine img {
    width: 100%;
    height: auto;
}

.services-bg-pattern {
    position: absolute;
    top: -57.15%;
    right: -21.44%;
    width: 535px;
    height: 566px;
    z-index: 1;
    pointer-events: none;
}

.services-bg-pattern svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   Industries Section - Full Width Background
   ============================================ */

.industries-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.industries-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.industries-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.industries-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--black-text);
    margin: 0;
    letter-spacing: -0.4px;
}

.industries-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.industry-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.industry-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 110px;
    height: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.industry-card:hover .industry-card-corner {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.industry-card:hover {
    transform: translateY(-4px);
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.industry-card:hover .industry-icon {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.industry-card:hover .industry-icon img {
    filter: brightness(0) invert(1);
}

.industry-card:hover .industry-name {
    color: var(--white);
}

.industry-card:hover .industry-desc {
    color: rgba(255, 255, 255, 0.8);
}

.industry-card:hover .read-more {
    color: var(--white);
}

.industry-card:hover .read-more-icon {
    filter: brightness(0) invert(1);
}

.industry-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid rgba(4, 93, 232, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon img {
    width: 28px;
    height: 28px;
}

.industry-name {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.industry-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
}

/* ============================================
   Case Studies Section - Full Width Background
   ============================================ */

.case-studies-section {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(174, 205, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.case-studies-bg-pattern {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 648px;
    height: 684px;
    background: radial-gradient(circle, rgba(4, 93, 232, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.case-studies-bg-graphic {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 645px;
    height: auto;
    max-width: 100%;
    z-index: 0;
    pointer-events: none;
}

.case-studies-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.case-studies-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.case-studies-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--black-text);
    margin: 0;
    letter-spacing: -0.889px;
}

.case-studies-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.case-studies-carousel-wrapper {
    width: 100%;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}

.case-studies-carousel {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: calc((100vw - var(--container-width)) / 2);
    padding-right: calc((100vw - var(--container-width)) / 2);
    scroll-padding-left: calc((100vw - var(--container-width)) / 2);
}

.case-studies-carousel::-webkit-scrollbar {
    display: none;
}

.case-study-card {
    flex-shrink: 0;
    width: 862px;
    height: 447px;
    background: var(--white);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 24px;
    scroll-snap-align: start;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--blue-border);
    background-color: var(--white);
    background-image: radial-gradient(ellipse at center bottom, rgba(221, 234, 255, 1) 0%, rgba(255, 255, 255, 1) 60%);
    background-repeat: no-repeat;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 34px 9px 0px rgba(0, 0, 0, 0);
}

.case-study-image {
    width: 384px;
    height: 399px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
    width: 406px;
    height: 399px;
}

.case-study-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.case-study-category {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: normal;
    color: #6c6c6c;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 6px 12px;
    display: inline-block;
    width: fit-content;
    text-transform: none;
    letter-spacing: normal;
    align-self: flex-start;
}

.case-study-name {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    color: var(--black-text);
    margin: 0;
}

.case-study-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: var(--secondary-text);
    margin: 0;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 472px;
}

.metric {
    display: flex;
    flex-direction: column;
    width: 186px;
}

.metric-value {
    font-family: 'Lexend', sans-serif;
    font-size: 35px;
    font-weight: 300;
    line-height: 1.775;
    color: var(--primary-color);
}

.metric-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.654;
    color: var(--primary-color);
}

.case-studies-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.case-studies-carousel {
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.case-studies-carousel.dragging {
    cursor: grabbing !important;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

.case-studies-carousel.dragging .case-study-card {
    pointer-events: none;
}

.btn-primary-case {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    box-shadow: 0px 1px 2px rgba(10, 13, 18, 0.05);
    transition: all 0.3s ease;
}

.btn-primary-case:hover {
    background: var(--blue-card-bg);
    border-color: var(--primary-color);
}

.nav-arrow {
    width: 36px;
    height: 36px;
    border-radius: 200px;
    border: 1px solid var(--blue-border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.nav-arrow:hover {
    background: var(--blue-card-bg);
    border-color: var(--primary-color);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--blue-card-bg);
    color: var(--primary-color);
}

/* ============================================
   Testimonials Section - Full Width Background
   ============================================ */

.testimonials-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.testimonials-header {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 var(--container-padding);
    width: 100%;
}

.testimonials-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--black-text);
    margin: 0;
    letter-spacing: -0.889px;
}

.testimonials-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.testimonials-wrapper {
    position: relative;
    width: 100%;
}

.testimonials-gradient-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 163px;
    background: linear-gradient(to right, var(--white) 30%, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.testimonials-gradient-right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 163px;
    background: linear-gradient(to left, var(--white) 30%, rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 2;
}

.testimonials-grid {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: calc((100vw - var(--container-width)) / 2);
    padding-right: calc((100vw - var(--container-width)) / 2);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 15px;
    padding-bottom: 15px;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonials-grid {
    cursor: grab;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.testimonials-grid.dragging {
    cursor: grabbing !important;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
}

.testimonials-grid.dragging .testimonial-card {
    pointer-events: none;
}

.testimonial-card {
    flex-shrink: 0;
    width: 395px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:first-child {
    margin-left: 0;
}

.testimonial-card:last-child {
    margin-right: calc((100vw - var(--container-width)) / 2);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed rgba(23, 23, 23, 0.2);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.667;
    color: var(--black-text);
    margin: 0;
}

.author-company {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.688;
    color: var(--secondary-text);
    margin: 0;
}

.testimonial-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.688;
    color: var(--black-text);
    margin: 0;
}

/* ============================================
   Why Choose Us Section - Full Width Background
   ============================================ */

.why-choose-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.why-choose-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 53px;
    max-width: 640px;
}

.why-choose-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.why-choose-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--black-text);
    margin: 0;
}

.why-choose-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.why-choose-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--secondary-text);
    margin: 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.feature-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.25;
    color: var(--black-text);
    margin: 0;
}

.feature-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    color: var(--secondary-text);
    margin: 0;
}

.tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 456px;
}

.tech-card {
    height: 97px;
    background: var(--blue-card-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

/* Circular card for SOC */
.tech-card.circle {
    border-radius: 50%;
    padding: 5px;
    width: 97px;
    justify-self: center;
}

.tech-card.circle img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.tech-card img {
    max-width: 100%;
    max-height: 48px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ============================================
   Numbers Section - Full Width Background
   ============================================ */

.numbers-section {
    width: 100%;
    padding: 40px 0 80px;
    background-color: var(--blue-card-bg);
    background-image: url('../assets/bg/number-section-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.numbers-corner-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 185px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.numbers-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    position: relative;
    z-index: 1;
}

.numbers-title {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.25;
    color: var(--black-text);
    text-align: center;
    margin: 0 0 40px;
}

.numbers-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.number-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 320px;
    text-align: center;
}

.number-value {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
}

.number-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.688;
    color: var(--secondary-text);
}

.number-divider {
    width: 1px;
    height: 92px;
    background: var(--blue-border);
    margin-top: 16px;
}

/* ============================================
   Blogs Section - Full Width Background
   ============================================ */

.blogs-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
}

.blogs-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.blogs-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.blogs-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--black-text);
    margin: 0;
}

.blogs-title .highlight {
    color: var(--primary-color);
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(4, 93, 232, 0.1);
}

.blog-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    background: var(--white);
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    padding: 6px 12px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--black-text);
    margin-bottom: 12px;
    color: var(--light-text);
}

.blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.blog-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--black-text);
    margin: 0;
}

.blog-excerpt {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--secondary-text);
    margin: 0;
    flex: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #EEEEEE;
}

.blog-info {
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #5D5D5D;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

.read-more-icon {
    width: 20px;
    height: 20px;
}

.blogs-action {
    display: flex;
    justify-content: center;
}

/* ============================================
   CTA Section - Full Width Background
   ============================================ */

.cta-section {
    width: 100%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 80px var(--container-padding);
    position: relative;
    z-index: 2;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 620px;
    flex-shrink: 0;
    gap: 80px;
}

.cta-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.475;
    color: var(--white);
    margin: 0;
}

.cta-title .highlight {
    font-weight: 500;
}

.cta-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.688;
    color: var(--white);
    margin: 0;
    max-width: 546px;
}

/* Trusted Partners */
.cta-partners {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--white);
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 16px;
    overflow: hidden;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.03),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 34px 9px 0px rgba(0, 0, 0, 0);
}

.cta-partners-label {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: var(--black-text);
    margin: 0;
}

.cta-marquee {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 10px;
}

.cta-marquee-track {
    display: flex;
    align-items: center;
    gap: 59px;
    animation: ctaMarqueeScroll 20s linear infinite;
    width: max-content;
}

.cta-marquee-track img {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    flex-shrink: 0;
}

@keyframes ctaMarqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* CTA Form */
.cta-form-wrapper {
    flex-shrink: 0;
    width: 520px;
}

.cta-form {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-input {
    width: 100%;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 16px;
    padding: 0 24px;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    outline: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.cta-input::placeholder {
    color: var(--white);
    opacity: 0.8;
}

.cta-input:focus {
    background: rgba(255, 255, 255, 0.2);
}

.cta-textarea {
    width: 100%;
    height: 104px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 16px;
    padding: 18px 24px;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    outline: none;
    resize: none;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.cta-textarea::placeholder {
    color: var(--white);
    opacity: 0.8;
}

.cta-textarea:focus {
    background: rgba(255, 255, 255, 0.2);
}

.cta-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 28px;
}

.cta-checkbox-label .cta-checkbox {
    display: none;
}

.cta-checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #767676;
    border-radius: 4px;
    background: var(--white);
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.cta-checkbox:checked+.cta-checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-checkbox:checked+.cta-checkmark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.cta-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-submit-btn:hover {
    background: #0348C4;
    transform: translateY(-1px);
}

.cta-submit-btn svg {
    width: 24px;
    height: 24px;
}

/* CTA Background */
.cta-bg-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.cta-nine {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    width: 845px;
    height: auto;
    pointer-events: none;
}

/* ============================================
   Footer - Full Width Background
   ============================================ */

.footer {
    width: 100%;
    background: var(--white);
}

.footer-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 32px var(--container-padding);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 507px;
}

.footer-logo {
    height: auto;
    width: 100px;
}

.footer-tagline {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: #444444;
    margin: 0;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-top: 8px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #2563EB;
}

.footer-contact-item i {
    font-size: 18px;
    color: #444444;
    transition: color 0.3s ease;
}

.footer-contact-item:hover i {
    color: #2563EB;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: opacity 0.3s ease;
    color: #333333;
    text-decoration: none;
}

.social-icon-link i {
    font-size: 20px;
}

.social-icon-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-icon-link:hover {
    opacity: 0.85;
}

/* Footer social icons – B&W by default, original brand colour on hover */
.footer-social .social-icon-link {
    color: #333333;
    filter: grayscale(100%);
    transition: filter 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.footer-social .social-icon-link:nth-child(1):hover { color: #0A66C2; filter: grayscale(0%); opacity: 1; }
.footer-social .social-icon-link:nth-child(2):hover { color: #1877F2; filter: grayscale(0%); opacity: 1; }
.footer-social .social-icon-link:nth-child(3):hover { color: #000000; filter: grayscale(0%); opacity: 1; }
.footer-social .social-icon-link:nth-child(4):hover { color: #FF0000; filter: grayscale(0%); opacity: 1; }
.footer-social .social-icon-link:nth-child(5):hover {
    color: transparent;
    background: linear-gradient(45deg, #833ab4 0%, #c13584 25%, #e1306c 50%, #f77737 75%, #fcaf45 100%);
    -webkit-background-clip: text;
    background-clip: text;
    filter: grayscale(0%);
    opacity: 1;
}

/* Ratings Card */
.footer-ratings {
    display: flex;
    align-items: center;
    gap: 56px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 12px 25px;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.rating-badge>div,
.rating-top {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-star {
    font-size: 18px;
    font-weight: 600;
    color: #E2E200;
    letter-spacing: 0.36px;
}

.rating-score {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4F4E4E;
    letter-spacing: 0.36px;
}

.rating-logo {
    height: 30px;
    width: auto;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: #E5E7EB;
}

/* Footer Services Section (6 columns) */
.footer-services-section {
    display: flex;
    gap: 40px;
}

.footer-service-group {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-industries-group {
    flex: 0 0 140px;
    min-width: 140px;
}

/* Footer Secondary Section (kept for other pages) */
.footer-secondary-section {
    display: flex;
    gap: 48px;
    margin-top: 48px;
}

.footer-secondary-section .footer-links-group {
    width: 217px;
}

/* Footer Links Section (legacy - kept for compatibility) */
.footer-links-section {
    display: flex;
    justify-content: space-between;
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    letter-spacing: 0.31px;
    color: #333333;
    margin: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 0.36px;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Footer Navigation Row */
.footer-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 24px;
}

.footer-agentic-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-agentic-link:hover {
    opacity: 0.8;
}

.footer-agentic-icon {
    width: 20px;
    height: 20px;
}

.footer-agentic-link span {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.36px;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-nav-links a {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444444;
    text-decoration: none;
    letter-spacing: 0.36px;
    transition: color 0.3s ease;
}

.footer-nav-links a:hover {
    color: var(--primary-color);
}

.footer-nav-separator {
    width: 1px;
    height: 18px;
    background: #D0D0D0;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
    margin-top: 24px;
}

.footer-bottom-divider {
    width: 100%;
    height: 1px;
    background: #E5E7EB;
}

.copyright {
    font-family: 'Lexend', sans-serif;
    font-size: 14.9px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.36px;
    color: #4F4E4E;
    text-align: center;
    margin: 0;
}

/* ============================================
   Responsive Styles
   ============================================ */

@media (max-width: 1280px) {
    :root {
        --container-padding: 40px;
    }

    .hero-video-nine {
        right: 5%;
    }

    .cta-wrapper {
        gap: 48px;
    }

    .cta-content {
        max-width: 560px;
    }

    .cta-form-wrapper {
        width: 480px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-ratings {
        gap: 40px;
    }

    .footer-links-section {
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-links-group {
        min-width: 180px;
    }

    .footer-services-section {
        flex-wrap: wrap;
        gap: 32px 40px;
    }

    .footer-service-group {
        flex: 0 0 calc(33.333% - 32px);
        min-width: 200px;
    }

    .footer-industries-group {
        flex: 0 0 calc(33.333% - 32px);
        min-width: 200px;
    }

    .footer-secondary-section {
        flex-wrap: wrap;
        gap: 32px 48px;
    }

    .footer-nav-row {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 48px;
    }

    .tech-stack-grid {
        max-width: 100%;
    }

    /* Dropdown responsive */
    .dropdown-content {
        width: calc(100% - 80px);
        max-width: 1200px;
    }

    .dropdown-column {
        width: 240px;
    }

    .dropdown-sidebar {
        width: 380px;
    }

    .dropdown-tech-strip {
        padding: 12px 16px;
    }

    .dropdown-tech-strip img {
        width: 34px;
        height: 34px;
    }

    .dropdown-case-title {
        font-size: 16px;
        line-height: 23px;
    }

    .dropdown-metric-value {
        font-size: 26px;
    }

    .dropdown-metric-label {
        font-size: 14px;
    }

    .dropdown-case-metrics {
        padding: 12px 24px;
    }

    /* AI Labs responsive */
    .ai-labs-section {
        padding: 40px;
        border-radius: 48px 48px 0 0;
        min-height: 180px;
    }

    .ai-labs-text {
        font-size: 28px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(3, auto);
        gap: 24px;
    }

    .tech-logo {
        height: 40px;
    }
}

@media (max-width: 1024px) {

    .hero-video-nine {
        right: 2%;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 16px;
    }

    /* Services Tabs tablet responsive */
    .services-tabs-content {
        flex-wrap: wrap;
    }

    .services-tabs-list {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .services-tab-item {
        width: 50%;
        padding: 14px 20px;
    }

    .services-tab-item::after {
        width: calc(100% - 40px);
    }

    .services-active-indicator {
        display: none;
    }

    .services-tab-content-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .services-tab-image {
        width: 100%;
        height: 350px;
    }

    /* Tech Stack Grid responsive - tablet: 2 columns */
    .tech-stack-categories .tech-stack-category {
        width: 50%;
        border-right: 1px solid #C6DAFA;
        border-bottom: 1px solid #C6DAFA;
    }

    .tech-stack-categories .tech-stack-category:nth-child(2n) {
        border-right: none;
    }

    .tech-stack-categories .tech-stack-category:last-child {
        border-bottom: none;
    }

    /* 1 item on tablet: single full-width card */
    .tech-stack-categories:has(.tech-stack-category:only-child) .tech-stack-category {
        width: 100%;
        border-right: none;
        border-bottom: none;
    }

    /* 2 items on tablet: both in one row, no bottom on either */
    .tech-stack-categories:has(.tech-stack-category:nth-child(2):last-child) .tech-stack-category {
        border-bottom: none;
    }

    .category-icons {
        gap: 16px;
    }

    .tech-icon-box {
        width: 40px;
        height: 40px;
    }

    .industries-grid,
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-study-card {
        width: 85vw;
        max-width: 500px;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        height: auto;
    }

    .case-study-image {
        width: 100%;
        height: 220px;
    }

    .case-study-content {
        width: 100%;
        height: auto;
    }

    .testimonial-card {
        width: 350px;
    }

    /* Header dropdown responsive - tablet */
    .dropdown-content {
        flex-direction: column;
        gap: 24px;
        padding: 24px 20px;
        width: 100%;
    }

    .dropdown-columns-wrapper {
        width: 100%;
        gap: 20px;
    }

    .dropdown-column {
        width: calc(50% - 20px);
    }

    .dropdown-column-left .dropdown-item,
    .dropdown-column-right .dropdown-item {
        height: auto;
        padding: 12px 0;
    }

    .dropdown-divider {
        height: auto;
        min-height: 200px;
        align-self: stretch;
    }

    .dropdown-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .dropdown-sidebar {
        width: 100%;
        max-width: 460px;
        margin: 0 auto;
    }

    .dropdown-tech-strip {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dropdown-case-metrics {
        padding: 12px 24px;
    }

    .dropdown-metric-value {
        font-size: 24px;
    }

    .dropdown-metric-label {
        font-size: 13px;
    }

    /* AI Labs responsive 1024px */
    .ai-labs-card {
        height: auto;
        padding: 24px;
        flex-direction: column;
        gap: 20px;
    }

    .ai-labs-card:hover {
        height: auto;
    }

    .ai-labs-arrow {
        display: none;
    }

    .ai-labs-content-left {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ai-labs-expanded {
        opacity: 1;
        max-height: none;
        transform: none;
        transition: none;
        margin-top: 16px;
        pointer-events: auto;
        max-width: 100%;
    }

    .ai-labs-tech-logos {
        opacity: 1;
        transform: none;
        transition: none;
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        padding-left: 0;
        justify-items: center;
    }

    /* Services responsive 1024px */
    .services-section {
        padding: 64px 0;
    }

    .services-container {
        padding: 0 40px;
    }

    .services-header {
        margin-bottom: 36px;
    }

    .services-title {
        font-size: 28px;
        line-height: 40px;
    }

    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px 0;
        overflow: visible;
    }

    .service-left {
        max-width: 100%;
        width: 100%;
    }

    .service-name {
        font-size: 24px;
        white-space: normal;
    }

    .service-arrow {
        display: none;
    }

    .service-expanded {
        display: flex !important;
        animation: none !important;
    }

    .service-right {
        display: flex !important;
        animation: none !important;
        flex: none;
        width: 100%;
    }

    .service-tech-logos {
        grid-template-columns: repeat(6, auto);
        gap: 16px;
        justify-content: flex-start;
    }

    .service-tech-logo {
        height: 36px;
    }

    .services-corner {
        width: 200px;
        height: auto;
    }

    /* Case Studies responsive - covered in 1024px above */

    .metric-value {
        font-size: 32px;
    }

    /* Why Choose Us responsive */
    .why-choose-content {
        max-width: 100%;
    }

    .tech-stack-grid {
        max-width: 100%;
        justify-content: center;
    }

    .tech-card {
        height: 80px;
        padding: 20px;
    }

    .tech-card.circle {
        width: 80px;
    }

    /* Numbers section responsive */
    .numbers-title {
        font-size: 32px;
    }

    /* Testimonials responsive */
    .testimonials-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
    }

    .header-container {
        height: auto;
        gap: 12px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .main-nav {
        display: none;
    }

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }

    /* Show mobile nav */
    .mobile-nav {
        display: flex;
    }

    /* Hide dropdown on mobile - handled by mobile menu */
    .nav-dropdown-menu {
        display: none;
    }

    .hero-section {
        height: 560px;
    }

    .hero-slides {
        align-items: flex-start;
        margin-top: 150px;
    }

    .hero-pagination {
        bottom: 140px;
    }

    .hero-slide {
        flex-direction: column;
        gap: 24px;
    }

    .hero-slide-image {
        max-width: 320px;
    }

    .hero-slide-image img {
        max-height: 280px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-intro,
    .hero-title,
    .hero-subtitle {
        font-size: 28px;
    }

    .hero-nine {
        width: 200px;
        height: auto;
        right: -50px;
        top: 150px;
    }

    .hero-video-nine {
        display: none;
    }

    .hero-container {
        padding: 0 50px;
    }

    .hero-nav-arrow {
        width: 32px;
        height: 32px;
    }

    .stats-section {
        margin-top: -100px;
    }

    .stats-card {
        flex-wrap: wrap;
        gap: 24px;
        padding: 32px;
        margin: 0 20px;
        justify-content: center;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .stat-divider {
        display: none;
    }

    .service-name {
        font-size: 18px;
        white-space: normal;
    }

    .industries-grid,
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    /* Industries section responsive */
    .industries-title {
        font-size: 28px;
        line-height: 36px;
    }

    .industry-card {
        padding: 20px;
    }

    .industry-icon {
        width: 48px;
        height: 48px;
    }

    .industry-name {
        font-size: 18px;
    }

    /* Services Tabs responsive */
    .services-tabs-section {
        padding: 60px 0;
    }

    .services-tabs-header {
        margin-bottom: 32px;
    }

    .services-tabs-title {
        font-size: 24px;
        line-height: 36px;
    }

    .services-tabs-content {
        flex-direction: column;
        gap: 24px;
    }

    .services-tabs-list {
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
        order: 1;
    }

    .services-tab-item {
        width: 100%;
        padding: 12px 16px;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .services-tab-item::after {
        width: calc(100% - 32px);
    }

    .services-tab-item .tab-number {
        font-size: 14px;
    }

    .services-tab-item .tab-title {
        font-size: 15px;
    }

    .services-active-indicator {
        display: none;
    }

    .services-tab-content-wrapper {
        width: 100%;
        max-width: 100%;
        order: 2;
    }

    .services-panel-card {
        padding: 20px;
    }

    .services-panel-text {
        font-size: 14px;
        line-height: 22px;
        max-width: 100%;
    }

    .focus-label {
        font-size: 13px;
    }

    .focus-item {
        font-size: 14px;
        line-height: 22px;
    }

    .focus-item img {
        width: 18px;
        height: 18px;
    }

    .services-panel-outcome {
        height: auto;
        min-height: auto;
        padding: 20px;
    }

    .outcome-label {
        font-size: 13px;
    }

    .outcome-text {
        font-size: 16px;
        line-height: 24px;
    }

    .services-tab-image {
        width: 100%;
        height: 260px;
        order: 3;
        border-radius: 12px;
    }

    /* Testimonials responsive */
    .testimonials-section {
        padding: 60px 0;
    }

    .testimonials-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .testimonials-title {
        font-size: 28px;
        line-height: 36px;
    }

    .testimonials-grid {
        padding: 0 20px;
    }

    .testimonial-card {
        width: 320px;
        padding: 24px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 22px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-role {
        font-size: 12px;
    }

    .testimonials-gradient-left,
    .testimonials-gradient-right {
        display: none;
    }

    /* Numbers section responsive */
    .numbers-section {
        padding: 60px 0 100px;
    }

    .numbers-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 32px;
    }

    .numbers-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .number-divider {
        display: none;
    }

    .number-item {
        flex: 0 0 calc(50% - 12px);
    }

    .number-value {
        font-size: 36px;
    }

    .number-label {
        font-size: 14px;
    }

    .numbers-corner-graphic {
        width: 150px;
    }

    /* Case Studies responsive */
    .case-studies-section {
        padding: 60px 0;
    }

    .case-studies-header {
        padding: 0 20px;
        margin-bottom: 32px;
    }

    .case-studies-title {
        font-size: 28px;
        line-height: 36px;
    }

    .case-study-card {
        width: 85vw;
        max-width: 400px;
        height: auto;
        min-height: auto;
        scroll-snap-align: start;
        flex-direction: column;
        padding: 16px;
        gap: 16px;
    }

    .case-study-card:last-child {
        margin-right: 20px;
    }

    .case-studies-carousel {
        padding: 0 20px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 20px;
    }

    .case-study-image {
        width: 100%;
        height: 180px;
        flex-shrink: 0;
    }

    .case-study-content {
        width: 100%;
        padding: 0;
        height: auto;
    }

    .case-study-info {
        margin-bottom: 16px;
    }

    .case-study-category {
        font-size: 11px;
        padding: 5px 10px;
    }

    .case-study-metrics {
        flex-direction: row;
        gap: 24px;
    }

    .case-study-name {
        font-size: 18px;
    }

    .case-study-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .case-study-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .metric-value {
        font-size: 28px;
    }

    .metric-label {
        font-size: 14px;
    }

    .case-studies-nav-arrows {
        display: none;
    }

    .case-studies-bg-graphic {
        width: 300px;
    }

    /* Why Choose Us responsive */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-header {
        margin-bottom: 32px;
    }

    .why-choose-title {
        font-size: 28px;
        line-height: 36px;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .feature-item {
        padding: 16px 0;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .tech-stack-grid {
        max-width: 100%;
        gap: 12px;
    }

    .tech-card {
        height: 70px;
        padding: 16px;
    }

    .tech-card.circle {
        width: 70px;
        height: 70px;
    }

    .tech-card img {
        max-width: 100px;
        max-height: 32px;
    }

    /* Tech Stack Grid responsive - mobile: override :has() specificity */
    .tech-stack-grid-section {
        padding: 60px 0;
    }

    .tech-stack-grid-container {
        gap: 32px;
    }

    .tech-stack-grid-title {
        font-size: 24px;
        line-height: 36px;
    }

    .tech-stack-categories .tech-stack-category {
        width: 100% !important;
        padding: 16px;
        border-right: none !important;
        border-bottom: 1px solid #C6DAFA !important;
    }

    .tech-stack-categories .tech-stack-category:last-child {
        border-bottom: none !important;
    }

    .category-icons {
        gap: 12px;
    }

    .tech-icon-box {
        width: 36px;
        height: 36px;
    }

    .cta-wrapper {
        gap: 40px;
    }

    .cta-content {
        max-width: 500px;
        gap: 60px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-form-wrapper {
        width: 440px;
    }

    .cta-input {
        height: 52px;
        font-size: 16px;
    }

    .cta-textarea {
        height: 90px;
        font-size: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-ratings {
        width: 100%;
        justify-content: center;
        gap: 32px;
        padding: 16px 20px;
    }

    .footer-links-section {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-links-group {
        min-width: calc(50% - 12px);
    }

    .footer-services-section {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-service-group {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

    .footer-industries-group {
        flex: 0 0 calc(50% - 12px);
        min-width: 0;
    }

    .footer-nav-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-nav-links {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-secondary-section {
        flex-wrap: wrap;
        gap: 24px;
        margin-top: 32px;
    }

    .footer-secondary-section .footer-links-group {
        width: calc(50% - 12px);
        min-width: 0;
    }

    /* AI Labs responsive 768px */
    .ai-labs-section {
        padding: 32px 20px;
        border-radius: 32px 32px 0 0;
        min-height: auto;
    }

    .ai-labs-card {
        padding: 20px;
        gap: 16px;
        border-radius: 16px;
    }

    .ai-labs-text {
        font-size: 24px;
    }

    .ai-labs-icon img {
        width: 24px;
        height: 24px;
    }

    .ai-labs-description {
        font-size: 14px;
        line-height: 22px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .tech-logo {
        height: 36px;
    }

    /* Services responsive 768px */
    .services-section {
        padding: 40px 0;
    }

    .services-container {
        padding: 0 24px;
    }

    .services-header {
        margin-bottom: 28px;
    }

    .services-title {
        font-size: 24px;
        line-height: 36px;
    }

    .service-item {
        padding: 20px 0;
        gap: 14px;
    }

    .service-title-row {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .service-name {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
        line-height: 22px;
    }

    .service-tech-logos {
        grid-template-columns: repeat(6, auto);
        gap: 12px;
    }

    .service-tech-logo {
        height: 30px;
    }

    .services-bg-nine {
        display: none;
    }

    .services-bg-pattern {
        display: none;
    }

    .services-corner {
        display: none;
    }

    /* Section tags responsive */
    .section-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Buttons responsive */
    .btn-primary,
    .btn-secondary,
    .btn-primary-case {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }

    .hero-intro,
    .hero-title,
    .hero-subtitle {
        font-size: 24px;
    }

    .hero-slide-image {
        display: none;
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-nav-arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

 
    .stat-item {
        flex: 0 0 45%;
    }

    .number-item {
        flex: 0 0 100%;
        text-align: center;
    }

    /* Industries section mobile */
    .industries-section {
        padding: 48px 0;
    }

    .industries-title {
        font-size: 24px;
        line-height: 32px;
    }

    .industry-card {
        padding: 16px;
        gap: 12px;
    }

    .industry-icon {
        width: 40px;
        height: 40px;
    }

    .industry-name {
        font-size: 16px;
    }

    /* Testimonials mobile */
    .testimonials-section {
        padding: 48px 0;
    }

    .testimonials-title {
        font-size: 24px;
        line-height: 32px;
    }

    .testimonials-grid {
        padding: 0 16px;
    }

    .testimonial-card {
        width: 280px;
        padding: 20px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 20px;
    }

    .author-name {
        font-size: 13px;
    }

    .author-role {
        font-size: 11px;
    }

    /* Numbers section mobile */
    .numbers-section {
        padding: 48px 0 80px;
    }

    .numbers-title {
        font-size: 24px;
        line-height: 32px;
    }

    .number-value {
        font-size: 32px;
    }

    .number-label {
        font-size: 13px;
    }

    .numbers-corner-graphic {
        width: 100px;
    }

    /* Case Studies mobile */
    .case-studies-section {
        padding: 48px 0;
    }

    .case-studies-title {
        font-size: 24px;
        line-height: 32px;
    }

    .case-study-card {
        width: 90vw;
        max-width: 340px;
        scroll-snap-align: start;
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .case-study-card:last-child {
        margin-right: 16px;
    }

    .case-studies-carousel {
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        scroll-padding-left: 16px;
    }

    .case-study-image {
        width: 100%;
        height: 160px;
    }

    .case-study-content {
        padding: 0;
        height: auto;
    }

    .case-study-info {
        margin-bottom: 12px;
    }

    .case-study-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .case-study-desc {
        font-size: 13px;
        line-height: 18px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .case-study-metrics {
        flex-direction: row;
        gap: 20px;
    }

    .metric-value {
        font-size: 24px;
    }

    .metric-label {
        font-size: 12px;
    }

    .case-studies-bg-graphic {
        width: 200px;
    }

    /* Why Choose Us mobile */
    .why-choose-section {
        padding: 48px 0;
    }

    .why-choose-title {
        font-size: 24px;
        line-height: 32px;
    }

    .feature-item {
        padding: 12px 0;
        gap: 12px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
        line-height: 18px;
    }

    /* CTA section mobile */
    .cta-container {
        padding: 40px 16px;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 28px;
    }

    .cta-content {
        max-width: 100%;
        gap: 28px;
    }

    .cta-title {
        font-size: 22px;
        line-height: 1.35;
    }

    .cta-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .cta-form-wrapper {
        width: 100%;
    }

    .cta-form {
        padding: 16px;
        gap: 16px;
        border-radius: 12px;
    }

    .cta-form-fields {
        gap: 12px;
    }

    .cta-input {
        height: 48px;
        font-size: 14px;
        padding: 0 16px;
        border-radius: 10px;
    }

    .cta-textarea {
        height: 80px;
        font-size: 14px;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .cta-checkbox-label {
        font-size: 13px;
        gap: 10px;
        line-height: 20px;
    }

    .cta-checkmark {
        width: 18px;
        height: 18px;
    }

    .cta-submit-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .cta-partners {
        padding: 12px;
        border-radius: 12px;
    }

    .cta-partners-label {
        font-size: 14px;
    }

    .cta-marquee-track {
        gap: 32px;
    }

    .cta-marquee-track img {
        height: 28px;
        max-width: 100px;
    }

    .cta-bg-graphic {
        display: none;
    }

    .tech-stack-grid {
        gap: 8px;
    }

    .tech-card {
        height: 60px;
        padding: 12px;
        border-radius: 12px;
    }

    .tech-card.circle {
        width: 60px;
        height: 60px;
    }

    .tech-card img {
        max-width: 80px;
        max-height: 28px;
    }

    /* AI Labs responsive 480px */
    .ai-labs-section {
        padding: 20px 16px;
        border-radius: 20px 20px 0 0;
        min-height: auto;
    }

    .ai-labs-card {
        padding: 16px;
        gap: 14px;
        border-radius: 12px;
    }

    .ai-labs-text {
        font-size: 20px;
    }

    .ai-labs-icon {
        width: 24px;
        height: 24px;
    }

    .ai-labs-icon img {
        width: 20px;
        height: 20px;
    }

    .ai-labs-expanded {
        margin-top: 12px;
    }

    .ai-labs-description {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 8px;
    }

    .ai-labs-link {
        font-size: 12px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .tech-logo {
        height: 28px;
    }

    /* Services responsive 480px */
    .services-section {
        padding: 32px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 20px;
    }

    .services-title {
        font-size: 20px;
        line-height: 30px;
    }

    .service-name {
        font-size: 16px;
    }

    .service-item {
        padding: 16px 0;
        gap: 10px;
    }

    .service-description {
        font-size: 13px;
        line-height: 20px;
    }

    .service-link {
        font-size: 12px;
    }

    .service-tech-logos {
        grid-template-columns: repeat(6, auto);
        gap: 10px;
        justify-content: flex-start;
    }

    .service-tech-logo {
        height: 24px;
    }

    /* Section tags */
    .section-tag {
        font-size: 11px;
        padding: 4px 10px;
    }

    /* Blog cards */
    .blog-title {
        font-size: 18px;
    }

    .blog-desc {
        font-size: 14px;
    }

    /* CTA section */
    .cta-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        gap: 40px;
    }

    .cta-title {
        font-size: 28px;
        line-height: 1.4;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-form-wrapper {
        width: 100%;
    }

    .cta-form {
        padding: 24px;
        gap: 20px;
    }

    .cta-input {
        height: 54px;
        font-size: 16px;
        border-radius: 14px;
    }

    .cta-textarea {
        height: 96px;
        font-size: 16px;
        border-radius: 14px;
    }

    .cta-partners-label {
        font-size: 16px;
    }

    .cta-marquee-track {
        gap: 36px;
    }

    .cta-marquee-track img {
        height: 32px;
        max-width: 120px;
    }

    .cta-bg-graphic {
        width: 100%;
        opacity: 0.3;
    }

    /* Footer mobile */
    /* Footer mobile */
    .footer-container {
        padding: 24px 16px;
        gap: 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-tagline {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .footer-contact-item {
        font-size: 14px;
    }

    .footer-social {
        flex-wrap: wrap;
    }

    .footer-ratings {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        padding: 12px 16px;
    }

    .rating-star,
    .rating-score {
        font-size: 16px;
    }

    .rating-logo {
        height: 24px;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links-group {
        min-width: 100%;
    }

    .footer-services-section {
        flex-direction: column;
        gap: 24px;
    }

    .footer-service-group {
        flex: 0 0 100%;
    }

    .footer-industries-group {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .footer-secondary-section {
        flex-direction: column;
        gap: 24px;
        margin-top: 24px;
    }

    .footer-secondary-section .footer-links-group {
        width: 100%;
    }

    .footer-nav-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-top: 16px;
    }

    .footer-nav-links {
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-nav-links a {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 13px;
    }

    .footer-links a {
        font-size: 12px;
    }

    .footer-bottom {
        gap: 20px;
    }

    .copyright {
        font-size: 13px;
    }

    /* Clients marquee mobile */
    .clients-section {
        padding: 32px 0;
    }

    .client-logo {
        height: 28px;
    }

    /* Buttons mobile */
    .btn-primary,
    .btn-secondary,
    .btn-primary-case {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* ============================================
   Contact Us Page Styles
   ============================================ */

/* Contact Hero Section */
.contact-hero-section {
    width: 100%;
    background: radial-gradient(ellipse at center bottom, #6430E3 0%, #4C3BE4 25%, #3446E6 50%, #1C52E7 75%, #1057E7 87.5%, #045DE8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 388px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.contact-hero-corner {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 236px;
    height: auto;
}

.contact-hero-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-hero-content {
    text-align: center;
    max-width: 812px;
}

.contact-hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-hero-title .light {
    font-weight: 300;
}

.contact-hero-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 29px;
    color: var(--white);
    margin-bottom: 24px;
}

.contact-hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-contact-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-contact-hero.outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}


.btn-contact-hero i {
    font-size: 16px;
}

/* Contact Form Section */
.contact-form-section {
    width: 100%;
    background: var(--blue-card-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-form-nine {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 477px;
    height: auto;
    opacity: 1;
    pointer-events: none;
}

.contact-form-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-text);
    margin-bottom: 10px;
}

.contact-form-title .light {
    font-weight: 300;
}

.contact-form-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--secondary-text);
    max-width: 734px;
    margin: 0 auto;
}

.contact-form-content {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid #E3EEFF;
    border-radius: 16px;
    padding: 24px;
    max-width: 628px;
    width: 100%;
    position: relative;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.contact-form-card-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 271px;
    height: auto;
    pointer-events: none;
}

.contact-form-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-text);
    margin-bottom: 24px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    width: 100%;
}

.contact-form-card .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-content: flex-start;
    align-items: stretch;
}

.contact-form-card .form-group:has(.btn-contact-submit) {
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.form-input {
    width: 100%;
    height: 45px;
    background: var(--white);
    border: 1px solid #DEDEDE;
    border-radius: 16px;
    padding: 10px 24px;
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--black-text);
    transition: border-color 0.3s ease;
}

.form-textarea {
    height: 80px;
    resize: vertical;
    min-height: 80px;
    max-height: 200px;
    z-index: 1;
}

.form-input::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-input.error {
    border-color: #dc3545;
}

.form-input.error:focus {
    border-color: #dc3545;
    outline: none;
}

.contact-form-card .form-error-inline {
    display: block;
    color: #dc3545;
    font-size: 13px;
    font-family: 'Lexend', sans-serif;
    margin-top: 4px;
    padding: 0;
    line-height: 1.4;
    order: 2;
}

/* Contact form main error/success messages - full width, visible below button */
.contact-form-card #error-message,
.contact-form-card #success-message {
    width: 100%;
    margin-top: 12px;
    padding: 0;
    text-align: center;
}

.contact-form-card #error-message strong,
.contact-form-card #success-message strong {
    display: block;
    width: 100%;
    font-size: 15px;
    line-height: 1.4;
}

.contact-form-card #error-message strong {
    color: #c00;
}

.contact-form-card #success-message strong {
    color: #117f00;
}

.form-error {
    display: block;
    width: 100%;
    color: #dc3545;
    font-size: 12px;
    font-family: 'Lexend', sans-serif;
    margin: 6px 0 0 0;
    padding: 0;
    text-align: left;
    line-height: 1.4;
}

.recaptcha-group {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recaptcha-group .g-recaptcha {
    transform: scale(0.9);
    transform-origin: left top;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    border: 1.538px solid #767676;
    border-radius: 3.846px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: var(--light-text);
    cursor: pointer;
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    cursor: pointer;
    width: fit-content;
    align-self: flex-start;
}

.btn-contact-submit:hover {
    background: #0347b8;
}

.btn-contact-submit i {
    font-size: 16px;
}

/* Override tech-card background in contact form section */
/* Partners Card - Right Side */
.partners-card {
    background: var(--white);
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    flex: 1;
    min-width: 0;
    position: relative;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.partners-section {
    padding: 24px 16px 8px;
}


.partners-section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: #6c6c6c;
    margin: 0;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.partner-logo-cell {
    background: var(--white);
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 calc(25% - 8px);
}

.partner-logo-cell img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Adjust specific logo sizes */
.partner-logo-cell:nth-child(1) img,
.partner-logo-cell:nth-child(5) img {
    max-width: 107px;
    max-height: 29px;
}

.partner-logo-cell:nth-child(2) img,
.partner-logo-cell:nth-child(6) img {
    max-width: 141px;
    max-height: 46px;
}

.partner-logo-cell:nth-child(3) img,
.partner-logo-cell:nth-child(7) img {
    max-width: 97.725px;
    max-height: 46px;
}

.partner-logo-cell:nth-child(4) img,
.partner-logo-cell:nth-child(8) img {
    max-width: 115px;
    max-height: 33px;
}

.partners-divider {
    height: 1px;
    background: #C6DAFA;
    margin: 0;
}

.partners-ratings {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px 32px;
    gap: 16px;
}

.rating-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
}

.rating-star {
    font-size: 18.356px;
    color: #e2e200;
    line-height: normal;
}

.rating-number {
    font-size: 18px;
    color: #4f4e4e;
    line-height: 29.25px;
}

.rating-logo {
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rating-logo img {
    max-width: 100%;
    max-height: 54px;
    object-fit: contain;
}

.rating-card:nth-child(1) .rating-logo {
    max-width: 86.524px;
    width: 100%;
}

.rating-card:nth-child(2) .rating-logo {
    max-width: 100px;
    width: 100%;
}

.rating-card:nth-child(3) .rating-logo {
    max-width: 130px;
    width: 100%;
}

/* Contact Process Section */
.contact-process-section {
    width: 100%;
    background: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-process-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-process-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-process-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-text);
    margin-bottom: 10px;
    margin-top: 0;
}

.contact-process-title .light {
    font-weight: 300;
}

.contact-process-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-process-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--secondary-text);
}

.contact-process-content {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.process-tabs-list {
    display: flex;
    flex-direction: column;
    width: 325px;
    flex-shrink: 0;
    position: relative;
    height: 100%;
}

.process-tab-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.process-tab-item .tab-number {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    color: var(--secondary-text);
    transition: color 0.3s ease;
}

.process-tab-item .tab-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: var(--black-text);
    transition: color 0.3s ease;
}

.process-tab-item.active {
    background: var(--blue-card-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.process-tab-item.active .tab-number,
.process-tab-item.active .tab-title {
    color: var(--primary-color);
}


.process-tab-item::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 1px;
    background: var(--blue-border);
    border-radius: 40px;
}

.process-tab-item.active::after {
    content: none;
}

.process-active-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 83px;
    background: var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.process-panel-wrapper {
    flex: 1;
    max-width: 582px;
    height: 100%;
}

.process-panel {
    display: none;
    height: 100%;
}

.process-panel.active {
    display: block;
    height: 100%;
}

.process-panel-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
    height: 100%;
    box-sizing: border-box;
}

.process-panel-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    color: var(--black-text);
    margin-bottom: 24px;
}

.process-panel-focus {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-panel-focus .focus-label {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--light-text);
    margin-bottom: 0;
}

.process-panel-focus .focus-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.process-panel-focus .focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.process-panel-focus .focus-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.process-panel-focus .focus-item span {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--black-text);
}

.process-image {
    width: 325px;
    height: 330px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Why Section */
.contact-why-section {
    width: 100%;
    background: var(--blue-card-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-why-corner {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    max-width: 300px;
    pointer-events: none;
    z-index: -1;
}

.contact-why-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.contact-why-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-why-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-text);
}

.contact-why-title .light {
    font-weight: 300;
}

.contact-why-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-why-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.contact-why-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 24px;
    width: 302px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-card-icon {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid rgba(4, 93, 232, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-card-icon svg {
    width: 38.4px;
    height: 38.4px;
}

.why-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
    color: var(--black-text);
    margin: 0;
}

.why-card-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: var(--light-text);
    margin: 0;
}

/* Rating Badges Section */
.rating-badges-section {
    padding: 40px 0;
    background: #F6F9FF;
}

.rating-badges-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.rating-badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 20px;
    background: #FFFFFF;
    border-radius: 16px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-badge-item .rating-star {
    font-size: 19px;
    color: #e2e200;
    line-height: 1;
}

.rating-badge-item .rating-score {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 29px;
    color: #4f4e4e;
}

.rating-badge-logo {
    height: 32px;
    width: auto;
}

/* Certifications Section */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.certifications-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.certifications-header {
    text-align: center;
}

.certifications-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--black-text);
    margin-bottom: 10px;
}

.certifications-title .light {
    font-weight: 300;
}

.certifications-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.certifications-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--secondary-text);
}

.certifications-marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.certifications-marquee {
    overflow: hidden;
}

.certifications-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    animation: certifications-scroll 30s linear infinite;
}

@keyframes certifications-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.certification-badge {
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-badge img {
    max-width: 185px;
    max-height: 200px;
    object-fit: contain;
}

.certifications-gradient-left,
.certifications-gradient-right {
    position: absolute;
    top: 0;
    width: 163px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.certifications-gradient-left {
    left: 0;
    background: linear-gradient(to right, var(--white) 30%, transparent);
}

.certifications-gradient-right {
    right: 0;
    background: linear-gradient(to left, var(--white) 30%, transparent);
}

/* Responsive styles for Rating Badges & Certifications */
@media (max-width: 991px) {
    .rating-badges-container {
        flex-wrap: wrap;
    }
}

@media (max-width: 767px) {
    .rating-badges-section {
        padding: 30px 0;
    }

    .rating-badges-container {
        gap: 16px;
    }

    .rating-badge-item {
        padding: 16px 20px;
    }

    .certifications-section {
        padding: 60px 0;
    }

    .certifications-title {
        font-size: 26px;
    }

    .certification-badge {
        width: 180px;
        height: 180px;
    }
}

/* Global Offices Section */
.global-offices-section {
    padding: 80px;
    background: #F6F9FF;
}

.global-offices-container {
    max-width: 1280px;
    margin: 0 auto;
}

.global-offices-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-offices-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.3;
    color: var(--black-text);
    margin: 0;
}

.global-offices-title .light {
    font-weight: 300;
}

.global-offices-title .highlight {
    color: var(--primary-color);
    font-weight: 500;
}

.global-offices-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
}

.global-offices-content {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.global-offices-map {
    flex-shrink: 0;
    width: 713px;
    height: 470px;
}

.world-map-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.global-offices-locations {
    flex: 0 0 454px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.office-location-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
}

.office-location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.location-pin-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.office-email-icon {
    font-size: 24px;
    color: #045DE8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.office-country {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0;
}

.office-addresses {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.office-addresses-row {
    display: flex;
    gap: 22px;
    align-items: flex-start;
}

.office-divider {
    width: 1px;
    background: var(--blue-border);
    align-self: stretch;
}

.office-address {
    flex: 1;
}

.office-city {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: var(--black-text);
    margin: 0 0 4px 0;
}

.office-address-text {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: var(--black-text);
    margin: 0 0 8px 0;
}

.office-phone {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--primary-color);
    margin: 0 0 4px 0;
}

.office-phone a {
    color: var(--primary-color);
    text-decoration: none;
}

.office-phone a:hover {
    text-decoration: underline;
}

.office-badge {
    display: flex;
    justify-content: center;
    padding: 16px;
}

.clutch-badge-image {
    max-width: 180px;
    height: auto;
}

/* Responsive styles for Global Offices */
@media (max-width: 1200px) {
    .global-offices-section {
        padding: 60px 20px;
    }

    .global-offices-content {
        flex-direction: column;
    }

    .global-offices-map {
        width: 100%;
        max-width: 713px;
        height: auto;
    }

    .global-offices-locations {
        flex: 0 0 auto;
        width: 100%;
        max-width: 454px;
    }
}

@media (max-width: 767px) {
    .global-offices-section {
        padding: 40px 20px;
    }

    .global-offices-title {
        font-size: 26px;
    }

    .global-offices-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .office-addresses-row {
        flex-direction: column;
        gap: 16px;
    }

    .office-divider {
        width: 100%;
        height: 1px;
    }
}

/* CTA Section Enhancements for Contact Page */
.cta-title .light {
    font-weight: 300;
}

.cta-title .semibold {
    font-weight: 600;
}

.cta-title .highlight-white {
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid #C6DAFA;
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: #F0F6FF;
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0px 4px 12px rgba(4, 93, 232, 0.15);
}

.btn-cta-outline i {
    font-size: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary-color);
    border: 1px solid var(--white);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--white);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Contact Page Responsive Styles */
@media (max-width: 1200px) {

    .contact-form-card {
        width: 100%;
        max-width: 580px;
    }

    .contact-partners-grid {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .contact-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-content {
        flex-direction: column;
        gap: 24px;
    }

    .contact-form-card {
        width: 100%;
        max-width: 100%;
    }

    .partners-card {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .partners-ratings {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-process-section {
        padding: 60px 0;
    }

    .contact-process-content {
        flex-direction: column;
        gap: 32px;
    }

    .process-tabs-list {
        width: 100%;
    }

    .process-panel-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .process-image {
        width: 100%;
        height: 250px;
    }

    .contact-why-section {
        padding: 60px 0;
    }

    .contact-why-cards {
        flex-direction: column;
        align-items: center;
    }

    .contact-why-card {
        width: 100%;
        max-width: 500px;
    }

    .contact-form-nine {
        width: 300px;
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 48px 0;
    }

    .contact-hero-title {
        font-size: 24px;
    }

    .contact-hero-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .contact-hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-contact-hero {
        width: 100%;
        justify-content: center;
    }

    .contact-form-section {
        padding: 48px 0;
    }

    .contact-form-title,
    .contact-process-title,
    .contact-why-title {
        font-size: 24px;
    }

    .contact-form-desc,
    .contact-process-desc {
        font-size: 16px;
    }

    .contact-form-card-title {
        font-size: 20px;
    }

    .form-input {
        height: 52px;
        font-size: 16px;
        padding: 14px 20px;
    }

    .partner-card {
        min-width: 100%;
        height: 80px;
        padding: 20px;
    }

    .contact-process-section {
        padding: 48px 0;
    }

    .process-tab-item {
        padding: 12px 16px;
    }

    .process-tab-item .tab-title {
        font-size: 16px;
    }

    .process-panel-text {
        font-size: 14px;
        line-height: 22px;
    }

    .process-panel-focus .focus-item span {
        font-size: 14px;
    }

    .contact-why-section {
        padding: 48px 0;
    }

    .contact-why-card {
        padding: 20px;
    }

    .why-card-text {
        font-size: 16px;
        line-height: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

    .contact-form-nine {
        display: none;
    }

    .contact-hero-corner {
        width: 150px;
        bottom: -20px;
    }

    .contact-form-card-corner {
        width: 180px;
    }

    .partners-section {
        padding: 16px 12px 8px;
    }

    .partners-section-title {
        font-size: 16px;
        line-height: 24px;
    }

    .partners-grid {
        gap: 8px;
        margin-top: 16px;
    }

    .partner-logo-cell {
        height: 50px;
    }

    .partners-ratings {
        padding: 16px 16px 20px;
        gap: 12px;
    }

    .rating-number {
        font-size: 16px;
    }

    .rating-card:nth-child(1) .rating-logo,
    .rating-card:nth-child(2) .rating-logo,
    .rating-card:nth-child(3) .rating-logo {
        width: auto;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        gap: 8px;
        margin-top: 12px;
    }

    .partner-logo-cell {
        flex: 0 0 calc(50% - 4px);
        height: 48px;
    }

    .partners-section {
        padding: 14px 12px 8px;
    }

    .partners-section-title {
        font-size: 15px;
    }

    .partners-ratings {
        padding: 14px 12px 18px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rating-card {
        gap: 10px;
        min-width: 80px;
    }

    .rating-star {
        font-size: 15px;
    }

    .rating-number {
        font-size: 14px;
        line-height: 22px;
    }

    .rating-logo {
        height: 20px;
    }

    .rating-logo img {
        max-height: 20px;
    }

    .partner-logo-cell:nth-child(1) img,
    .partner-logo-cell:nth-child(5) img {
        max-width: 80px;
        max-height: 24px;
    }

    .partner-logo-cell:nth-child(2) img,
    .partner-logo-cell:nth-child(6) img {
        max-width: 100px;
        max-height: 14px;
    }

    .partner-logo-cell:nth-child(3) img,
    .partner-logo-cell:nth-child(7) img {
        max-width: 65px;
        max-height: 36px;
    }

    .partner-logo-cell:nth-child(4) img,
    .partner-logo-cell:nth-child(8) img {
        max-width: 85px;
        max-height: 26px;
    }
}

@media (max-width: 400px) {
    .partners-ratings {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .rating-card {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SUB-SERVICE PAGE STYLES
   ============================================ */

/* Sub Service Navigation Bar */
.sub-service-nav {
    background-color: #44209c;
    padding: 8px 80px;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.sub-service-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
}

.sub-service-nav-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
}

.sub-service-nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.sub-service-nav-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.sub-service-nav-link:hover,
.sub-service-nav-link.active {
    color: #ffffff;
    opacity: 0.8;
}

/* Sub Service Hero Section */
.sub-service-hero {
    position: relative;
    background: #f6f9ff;
    padding: 80px;
    min-height: 580px;
    overflow: hidden;
    border-bottom: 1px solid #c6dafa;
}

.sub-service-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sub-service-ellipse-right {
    position: absolute;
    top: 0;
    right: -200px;
    width: 457px;
    height: 822px;
    opacity: 0.6;
}

.sub-service-ellipse-left {
    position: absolute;
    top: -57px;
    left: -341px;
    width: 570px;
    height: 567px;
    opacity: 0.4;
    transform: rotate(-46deg);
}

.sub-service-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(246, 249, 255, 0.2);
    backdrop-filter: blur(152px);
}

.sub-service-hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 1280px;
    margin: 0 auto;
    gap: 40px;
}

.sub-service-hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sub-service-hero-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 49px;
    color: #045de8;
}

.sub-service-hero-title .light {
    font-weight: 300;
}

.sub-service-hero-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #333333;
    margin: 0;
}

.sub-service-hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 560px;
    height: 100%;
    z-index: 2;
}

.sub-service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

/* Capabilities Section */
.sub-service-capabilities {
    padding: 80px;
    background: radial-gradient(102.85% 35.7% at 50% 100%, rgba(137, 183, 255, 0.50) 0%, rgba(210, 225, 255, 0.50) 22.26%, rgba(255, 255, 255, 0.00) 100%), #FFF;
    border-bottom: 1px solid #c6dafa;
    overflow: clip;
}

.sub-service-capabilities-container {
    max-width: 1280px;
    margin: 0 auto;
}

.sub-service-capabilities-header {
    text-align: center;
    margin-bottom: 40px;
}

.sub-service-capabilities-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 32px;
    color: #333333;
    margin: 0 0 10px;
}

.sub-service-capabilities-title .light {
    font-weight: 300;
}

.sub-service-capabilities-title .highlight {
    font-weight: 500;
    color: #045de8;
}

.sub-service-capabilities-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #444444;
    max-width: 734px;
    margin: 0 auto;
}

.sub-service-capabilities-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Capabilities Accordion */
.capabilities-accordion {
    width: 470px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.capabilities-accordion .capability-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 24px 24px 24px 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    border-bottom: none;
}

.capabilities-accordion .capability-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 422px;
    height: 1px;
    background: #c6dafa;
    border-radius: 40px;
}

.capabilities-accordion .capability-item.active {
    background: #f6f9ff;
    border-radius: 2px 16px 16px 2px;
    padding: 16px 24px 16px 32px;
}

.capabilities-accordion .capability-item.active::after {
    display: none;
}

.capabilities-accordion .capability-indicator {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #045de8;
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.capabilities-accordion .capability-item.active .capability-indicator {
    opacity: 1;
}

.capabilities-accordion .capability-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.capabilities-accordion .capability-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #333333;
    transition: all 0.3s ease;
}

.capabilities-accordion .capability-item.active .capability-title {
    font-weight: 500;
    color: #045de8;
}

.capabilities-accordion .capability-body {
    display: none;
    width: 100%;
}

.capabilities-accordion .capability-item.active .capability-body {
    display: block;
}

.capabilities-accordion .capability-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    margin: 0;
    white-space: pre-wrap;
}

.capabilities-image {
    width: 640px;
    height: 472px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

.capabilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Benefits & ROI Section */
.sub-service-benefits {
    padding: 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.sub-service-benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.sub-service-benefits-image {
    width: 624px;
    height: 473px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0), 0px 22px 9px 0px rgba(0, 0, 0, 0), 0px 12px 7px 0px rgba(0, 0, 0, 0.02), 0px 5px 5px 0px rgba(0, 0, 0, 0.03), 0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.sub-service-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.sub-service-benefits-content {
    width: 616px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sub-service-benefits-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.sub-service-benefits-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 32px;
    color: #333333;
    margin: 0;
}

.sub-service-benefits-title .light {
    font-weight: 300;
}

.sub-service-benefits-title .highlight {
    font-weight: 500;
    color: #045de8;
}

.sub-service-benefits-subtitle {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #444444;
    margin: 0;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.benefit-item span {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #333333;
}

.sub-service-benefits-decoration {
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 496px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

/* Sub Service Tech Stack */
.sub-service-tech-stack {
    background: #f6f9ff;
}

/* Sub Service Testimonials */
.sub-service-testimonials {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Sub Service Case Studies */
.sub-service-case-studies {
    background: linear-gradient(180deg, #ffffff 0%, #aecdff 100%);
}

/* Sub Service CTA */
.sub-service-cta .cta-title .light {
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 16px;
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid #ffffff;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1851%) hue-rotate(209deg) brightness(96%) contrast(99%);
}

.btn-arrow-white {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Responsive Styles for Sub Service Page */
@media (max-width: 1400px) {
    .sub-service-hero-visual {
        width: 450px;
    }

    .sub-service-hero-content {
        max-width: 55%;
    }
}

@media (max-width: 1200px) {
    .sub-service-nav {
        padding: 8px 40px;
    }

    .sub-service-hero {
        padding: 60px 40px;
    }

    .sub-service-hero-visual {
        width: 400px;
    }

    .sub-service-hero-content {
        max-width: 50%;
    }

    .sub-service-capabilities {
        padding: 60px 40px;
    }

    .sub-service-benefits {
        padding: 60px 40px;
    }

    .sub-service-capabilities-content {
        flex-direction: column;
    }

    .capabilities-accordion {
        width: 100%;
    }

    .capabilities-image {
        width: 100%;
        height: 400px;
    }

    .sub-service-benefits-container {
        flex-direction: column;
    }

    .sub-service-benefits-image {
        width: 100%;
        height: 350px;
    }

    .sub-service-benefits-content {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .sub-service-hero-visual {
        width: 350px;
    }

    .sub-service-hero-content {
        max-width: 55%;
    }

    .sub-service-hero-title {
        font-size: 32px;
        line-height: 44px;
    }
}

@media (max-width: 991px) {
    .sub-service-nav {
        padding: 8px 24px;
        flex-direction: column;
        gap: 12px;
    }

    .sub-service-nav-container {
        flex-direction: column;
        gap: 12px;
    }

    .sub-service-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .sub-service-nav-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .sub-service-hero {
        padding: 48px 24px;
        min-height: auto;
    }

    .sub-service-hero-content {
        max-width: 100%;
    }

    .sub-service-hero-title {
        font-size: 28px;
        line-height: 38px;
    }

    .sub-service-hero-desc {
        font-size: 16px;
        line-height: 24px;
    }

    .sub-service-hero-visual {
        display: none;
    }

    .sub-service-hero-image {
        display: none;
    }

    .sub-service-capabilities {
        padding: 48px 24px;
    }

    .sub-service-capabilities-title {
        font-size: 24px;
    }

    .sub-service-capabilities-desc {
        font-size: 16px;
    }

    .capabilities-accordion .capability-item {
        padding: 16px 16px 16px 24px;
    }

    .capabilities-accordion .capability-item.active {
        padding: 12px 16px 12px 24px;
    }

    .capabilities-accordion .capability-title {
        font-size: 16px;
    }

    .capabilities-accordion .capability-desc {
        font-size: 14px;
    }

    .capabilities-image {
        height: 300px;
    }

    .sub-service-benefits {
        padding: 48px 24px;
    }

    .sub-service-benefits-title {
        font-size: 24px;
    }

    .sub-service-benefits-subtitle {
        font-size: 16px;
    }

    .benefit-item span {
        font-size: 16px;
    }

    .benefit-item img {
        width: 24px;
        height: 24px;
    }

    .sub-service-benefits-decoration {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .sub-service-nav {
        top: 56px;
    }

    .sub-service-nav-title {
        font-size: 14px;
        text-align: center;
    }

    .sub-service-nav-link {
        padding: 4px 8px;
        font-size: 12px;
    }

    .sub-service-hero-title {
        font-size: 24px;
        line-height: 32px;
    }

    .sub-service-hero-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .sub-service-capabilities-title {
        font-size: 20px;
    }

    .sub-service-capabilities-desc {
        font-size: 14px;
    }

    .capabilities-accordion .capability-item {
        padding: 12px 12px 12px 16px;
    }

    .capabilities-accordion .capability-item.active {
        padding: 10px 12px 10px 16px;
    }

    .capabilities-accordion .capability-title {
        font-size: 14px;
    }

    .sub-service-benefits-image {
        height: 250px;
    }

    .sub-service-benefits-title {
        font-size: 20px;
    }

    .benefit-item span {
        font-size: 14px;
    }
}

/* ============================================
   Case Study Page Styles
   ============================================ */

/* Case Study Hero Section */
.case-study-hero {
    position: relative;
    width: 100%;
    height: 388px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-study-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center bottom, #6430E3 0%, #4C3BE4 25%, #3446E6 50%, #1C52E7 75%, #1057E7 87.5%, #045DE8 100%);
    z-index: 0;
}

.case-study-hero-corner {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 236px;
    height: 388px;
    z-index: 1;
    pointer-events: none;
}

.case-study-hero-corner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.case-study-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.case-study-hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 300;
    line-height: normal;
    color: var(--white);
}

.case-study-hero-title .highlight {
    font-weight: 500;
}

.case-study-hero-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
    max-width: 956px;
}

/* Case Study Grid Section */
.case-study-grid-section {
    background: var(--blue-card-bg);
    padding: 40px 80px 80px;
    width: 100%;
}

.case-study-grid-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
}

/* Grid Header: Title + Filter */
.case-study-grid-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.case-study-filters {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-study-grid-title {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    color: var(--black-text);
    margin: 0;
}

.case-study-filter-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: var(--white);
    border: 1px solid #DEDEDE;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 303px;
    cursor: pointer;
    user-select: none;
    transition: border-color 0.2s ease;
}

.case-study-filter-dropdown:hover {
    border-color: var(--blue-border);
}

.case-study-filter-dropdown.open {
    border-color: var(--blue-border);
    border-radius: 8px 8px 0 0;
}

.case-study-filter-text {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    color: #6C6C6C;
}

.case-study-filter-dropdown i {
    font-size: 14px;
    color: #6C6C6C;
    transition: transform 0.2s ease;
}

.case-study-filter-dropdown.open i {
    transform: rotate(180deg);
}

.case-study-filter-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -1px;
    right: -1px;
    background: var(--white);
    border: 1px solid #DEDEDE;
    border-top: none;
    border-radius: 0 0 8px 8px;
    z-index: 10;
    overflow: hidden;
}

.case-study-filter-dropdown.open .case-study-filter-menu {
    display: block;
}

/* Scrollable filter menu for blog (categories/archives) */
.case-study-filter-menu-scroll {
    max-height: 320px;
    overflow-y: auto;
}

.case-study-filter-option {
    display: block;
    padding: 10px 16px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6C6C6C;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.case-study-filter-option:hover {
    background: var(--blue-card-bg);
    color: var(--black-text);
}

.case-study-filter-option.active {
    color: var(--primary-color);
    font-weight: 500;
}

.case-study-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
}

/* No results empty state for blog / case study listing */
.listing-no-results {
    display: none;
    width: 100%;
    min-height: 320px;
    padding: 48px 24px;
    text-align: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.listing-no-results.is-visible {
    display: flex;
}
.listing-no-results-text {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-text);
    margin: 0 0 8px;
}

.case-study-grid-card {
    width: calc(33.333% - 16px);
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    overflow: hidden;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.case-study-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.case-study-grid-card-image {
    width: 100%;
    height: 217px;
    border-radius: 8px;
    overflow: hidden;
}

.case-study-grid-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-study-grid-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    min-height: 0;
}

.case-study-grid-card-content .read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.case-study-grid-card-content .read-more-icon {
    width: 20px;
    height: 20px;
}

.case-study-grid-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    font-family: 'Lexend', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--light-text);
    width: fit-content;
}

.case-study-grid-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    color: var(--black-text);
    margin: 0;
}

.case-study-grid-card-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    color: var(--secondary-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 44px;
}

/* Case Study CTA Section */
.case-study-cta-section {
    background: var(--primary-color);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.case-study-cta-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    position: relative;
}

.case-study-cta-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.case-study-cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 59px;
    color: var(--white);
    letter-spacing: -0.28px;
    margin: 0;
}

.case-study-cta-title .highlight {
    font-weight: 600;
}

.case-study-cta-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    color: var(--white);
    margin: 0;
}

.case-study-cta-buttons {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 40px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.btn-arrow-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.btn-cta-secondary .btn-arrow-icon {
    filter: brightness(0) invert(1);
}

.case-study-cta-graphic {
    position: absolute;
    top: -193px;
    right: 0;
    height: 955px;
    z-index: 1;
    pointer-events: none;
}

.case-study-cta-nine {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 665px;
    height: auto;
    pointer-events: none;
}

/* Case Study Page Responsive Styles */
@media (max-width: 1200px) {
    .case-study-grid-card {
        width: calc(50% - 12px);
    }

    .case-study-cta-graphic {
        right: 40px;
        width: 400px;
    }

    .case-study-filter-dropdown {
        min-width: 240px;
    }
}

@media (max-width: 992px) {
    .case-study-hero {
        height: 320px;
    }

    .case-study-hero-title {
        font-size: 28px;
    }

    .case-study-hero-subtitle {
        font-size: 16px;
        padding: 0 24px;
    }

    .case-study-hero-corner {
        width: 180px;
        height: 360px;
        right: -30px;
    }

    .case-study-grid-section {
        padding: 32px 24px 48px;
    }

    .case-study-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .case-study-filter-dropdown {
        min-width: 100%;
    }

    .case-study-cta-container {
        padding: 48px 24px;
    }

    .case-study-cta-title {
        font-size: 32px;
        line-height: 44px;
    }

    .case-study-cta-graphic {
        display: none;
    }
}

@media (max-width: 768px) {
    .case-study-hero {
        height: 280px;
    }

    .case-study-hero-title {
        font-size: 24px;
    }

    .case-study-hero-subtitle {
        font-size: 14px;
        line-height: 22px;
    }

    .case-study-hero-corner {
        display: none;
    }

    .case-study-grid-card {
        width: 100%;
    }

    .case-study-grid-card-image {
        height: 180px;
    }

    .case-study-cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    .case-study-cta-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .case-study-cta-buttons {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .case-study-hero {
        height: 240px;
    }

    .case-study-hero-title {
        font-size: 20px;
    }

    .case-study-hero-subtitle {
        font-size: 13px;
    }

    .case-study-grid-section {
        padding: 24px 16px 32px;
    }

    .case-study-grid-title {
        font-size: 20px;
    }

    .case-study-filter-text {
        font-size: 14px;
    }

    .case-study-grid-card {
        padding: 16px;
    }

    .case-study-grid-card-image {
        height: 160px;
    }

    .case-study-grid-card-title {
        font-size: 18px;
    }

    .case-study-grid-card-desc {
        font-size: 13px;
    }

    .case-study-cta-container {
        padding: 32px 16px;
    }

    .case-study-cta-title {
        font-size: 20px;
        line-height: 28px;
    }
}

/* ============================================
   About Us Page Styles
   ============================================ */

/* About Hero Section */
.about-hero {
    width: 100%;
    padding: 80px 0;
    background: radial-gradient(ellipse at center bottom, #6430E3 0%, #4C3BE4 25%, #3446E6 50%, #1C52E7 75%, #1057E7 87.5%, #045DE8 100%);
    position: relative;
    overflow: hidden;
}

.about-hero-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 408px;
    width: auto;
    opacity: 1;
}

.about-hero-content {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.3;
}

.about-hero-title .light {
    font-weight: 300;
}

.about-hero-text {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    line-height: 29px;
    max-width: 780px;
    margin: 0 auto 16px;
}

/* About Section Header */
.about-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.about-section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: var(--black-text);
    line-height: 1.3;
}

.about-section-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.about-section-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--secondary-text);
    max-width: 734px;
    line-height: 27px;
}

/* Journey Section */
.about-journey-section {
    width: 100%;
    padding: 80px 0;
    background: var(--blue-card-bg);
    position: relative;
    overflow: hidden;
}

.about-journey-corner {
    position: absolute;
    right: 0;
    top: 0px;
    height: 568px;
    width: auto;
    opacity: 1;
}

.about-journey-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.about-stats-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #C6DAFA;
    background: radial-gradient(110.42% 83.9% at 90.35% 168.94%, #CCE0FF 0%, #FFF 100%);
    box-shadow: 0 104px 29px 0 rgba(0, 0, 0, 0.00), 0 66px 27px 0 rgba(0, 0, 0, 0.01), 0 37px 22px 0 rgba(0, 0, 0, 0.02), 0 17px 17px 0 rgba(0, 0, 0, 0.03), 0 4px 9px 0 rgba(0, 0, 0, 0.04);
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.about-stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-stat-label {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 27px;
}

.about-stat-divider {
    width: 1px;
    height: 92px;
    background: var(--blue-border);
    transform: rotate(0deg);
}

/* Capabilities Section */
.about-capabilities-section {
    width: 100%;
    padding: 80px 0;
    background: radial-gradient(102.85% 35.7% at 50% 100%, rgba(137, 183, 255, 0.50) 0%, rgba(210, 225, 255, 0.50) 22.26%, rgba(255, 255, 255, 0.00) 100%), #FFF;
}

.about-capabilities-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-capabilities-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
}

.about-capabilities-list {
    width: 470px;
    display: flex;
    flex-direction: column;
}

.about-capability-item {
    padding: 24px 24px 24px 32px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-capability-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    height: 1px;
    background: var(--blue-border);
    border-radius: 40px;
}

.about-capability-item:last-child::after {
    display: none;
}

.about-capability-item.active {
    background: var(--blue-card-bg);
    border-radius: 2px 16px 16px 2px;
    padding: 16px 24px 16px 32px;
}

.about-capability-item.active::after {
    display: none;
}

.about-capability-active-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-capability-item.active .about-capability-active-bar {
    opacity: 1;
}

.about-capability-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black-text);
    margin: 0;
    transition: all 0.3s ease;
}

.about-capability-item.active .about-capability-title {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.about-capability-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--black-text);
    line-height: 27px;
    margin: 0;
    display: none;
}

.about-capability-item.active .about-capability-desc {
    display: block;
}

.about-capabilities-image {
    width: 628px;
    height: 468px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.about-capabilities-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-capabilities-image img.active {
    opacity: 1;
}

/* Models Section */
.about-models-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-models-bg {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 550px;
    width: auto;
    opacity: 1;
}

.about-models-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.about-models-grid {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.about-models-card {
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 16px;
    padding: 24px;
}

.about-models-card.odc {
    background: var(--blue-card-bg);
    border: none;
}

.about-models-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--black-text);
    margin-bottom: 16px;
}

.about-models-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
}

.about-model-item {
    width: 282px;
    height: 86px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 16px;
    background: var(--blue-card-bg);
    border-radius: 16px;
    box-sizing: border-box;
}

.about-models-card.engagement .about-model-item {
    background: var(--blue-card-bg);
    border: none;
}

.about-models-card.odc .about-model-item {
    background: var(--white);
    border: 1px solid var(--blue-border);
}

.about-model-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(4, 93, 232, 0.1);
    border-radius: 16px;
    flex-shrink: 0;
}

.about-model-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

.about-model-icon img {
    width: 20px;
    height: 20px;
}

.about-model-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-model-name {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black-text);
}

.about-model-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--light-text);
}

/* Industries Section */
.about-industries-section {
    width: 100%;
    padding: 80px 0;
    background: var(--blue-card-bg);
    overflow: hidden;
}

.about-industries-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.about-industries-slider {
    display: flex;
    gap: 16px;
    width: 100%;
}

.about-industry-card {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    flex: 1;
    min-width: 0;
    height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: flex 0.4s ease;
    cursor: pointer;
}

.about-industry-card.active {
    flex: 2;
}

.about-industry-number {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: var(--secondary-text);
}

.about-industry-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-industry-card.active .about-industry-content {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: calc(50% - 16px);
}

.about-industry-name {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-text);
    margin: 0;
    line-height: 28px;
    transition: color 0.3s ease;
}

.about-industry-card.active .about-industry-name {
    color: var(--primary-color);
}

.about-industry-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 23px;
    margin: 0;
}

.about-industry-image {
    width: calc(50% - 8px);
    height: calc(100% - 32px);
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    right: 16px;
    top: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-industry-card.active .about-industry-image {
    opacity: 1;
}

.about-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Industry Card */
.about-industry-card-mobile {
    background: var(--white);
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-industry-card-mobile .about-industry-number {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--secondary-text);
}

.about-industry-card-mobile .about-industry-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-industry-card-mobile .about-industry-name {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-text);
    margin: 0;
    line-height: 22px;
}

.about-industry-card-mobile .about-industry-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--secondary-text);
    line-height: 20px;
    margin: 0;
}

.about-industry-card-mobile .about-industry-image {
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    position: relative;
    opacity: 1;
    right: auto;
    left: auto;
}

.about-industry-card-mobile .about-industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Choose Us Section */
.about-why-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.about-why-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-why-image {
    width: 624px;
    height: 473px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0),
        0px 22px 9px 0px rgba(0, 0, 0, 0),
        0px 12px 7px 0px rgba(0, 0, 0, 0.02),
        0px 5px 5px 0px rgba(0, 0, 0, 0.03),
        0px 1px 3px 0px rgba(0, 0, 0, 0.03);
    flex-shrink: 0;
}

.about-why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-why-content {
    flex: 1;
}

.about-why-header {
    margin-bottom: 32px;
}

.about-why-header .about-section-title {
    text-align: left;
}

.about-why-header .section-tag {
    align-self: flex-start;
}

.about-why-header .about-section-header {
    align-items: flex-start;
    text-align: left;
}

.about-why-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-why-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-why-check {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.about-why-feature span {
    font-family: 'Lexend', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black-text);
    line-height: 27px;
}

/* Team Section */
.about-team-section {
    width: 100%;
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-team-corner {
    position: absolute;
    left: 0px;
    bottom: 0px;
    height: 250px;
    width: auto;
    opacity: 1;
}

.about-team-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

.about-team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.about-team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.about-team-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: block;
    text-decoration: none;
}

.about-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-team-overlay i {
    font-size: 48px;
    color: #0A66C2;
}

.about-team-photo:hover .about-team-overlay {
    opacity: 1;
}

.about-team-photo:hover img {
    transform: scale(1.05);
}

.about-team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.about-team-name {
    font-family: 'Lexend', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--black-text);
    margin: 0;
}

.about-team-role {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--light-text);
    margin: 0;
}

/* About CTA Section */
.about-cta-section {
    width: 100%;
    height: 538px;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-cta-graphic {
    position: absolute;
    right: 0;
    top: 0;
    width: 544px;
    height: 100%;
}

.about-cta-nine {
    position: absolute;
    right: 0px;
    top: 0;
    width: auto;
    height: 536px;
    opacity: 1;
}

.about-cta-container {
    max-width: calc(var(--container-width) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 80px var(--container-padding);
    height: 100%;
}

.about-cta-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-cta-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: var(--white);
    line-height: 59px;
    letter-spacing: -0.28px;
}

.about-cta-title .light {
    font-weight: 300;
}

.about-cta-title .highlight-white {
    font-weight: 600;
}

.about-cta-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    line-height: 27px;
    margin: 0;
}

.about-cta-buttons {
    display: flex;
    gap: 24px;
    margin-top: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--white);
    border: 1px solid var(--white);
    border-radius: 8px;
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
}

.btn-cta-primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-cta-primary .btn-arrow-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(1892%) hue-rotate(208deg) brightness(97%) contrast(101%);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--white);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* About Us Page Responsive */

/* Large Desktop (1400px+) */
@media (max-width: 1400px) {
    .about-cta-content {
        max-width: 600px;
    }
}

/* Desktop (1200px) */
@media (max-width: 1200px) {
    .about-capabilities-content {
        flex-direction: column;
    }

    .about-capabilities-list {
        width: 100%;
    }

    .about-capabilities-image {
        width: 100%;
        height: 400px;
    }

    .about-models-grid {
        flex-direction: column;
        align-items: center;
    }

    .about-models-card {
        width: 100%;
        max-width: 628px;
    }

    .about-why-container {
        flex-direction: column;
    }

    .about-why-image {
        width: 100%;
        height: 400px;
    }

    .about-stats-card {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .about-stat-divider {
        display: none;
    }

    .about-stat-item {
        width: calc(50% - 12px);
        text-align: center;
    }

    .about-cta-nine {
        opacity: 0.3;
    }
}

/* Tablet Landscape (992px) */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-text {
        font-size: 16px;
        max-width: 100%;
    }

    .about-hero-corner {
        height: 300px;
        opacity: 0.5;
    }

    .about-section-title {
        font-size: 26px;
    }

    .about-stat-number {
        font-size: 36px;
    }

    .about-journey-corner {
        height: 400px;
        opacity: 0.5;
    }

    .about-team-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-cta-title {
        font-size: 32px;
        line-height: 1.3;
    }

    .about-cta-buttons {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .about-cta-nine {
        height: 400px;
        opacity: 0.2;
    }

    .about-models-bg {
        height: 400px;
        opacity: 0.5;
    }

    .about-team-corner {
        height: 180px;
        opacity: 0.5;
    }
}

/* Tablet Portrait (768px) */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero-title {
        font-size: 24px;
    }

    .about-hero-corner {
        height: 250px;
        opacity: 0.3;
    }

    .about-journey-section,
    .about-capabilities-section,
    .about-models-section,
    .about-industries-section,
    .about-why-section,
    .about-team-section {
        padding: 60px 0;
    }

    .about-section-header {
        margin-bottom: 32px;
    }

    .about-section-title {
        font-size: 22px;
    }

    .about-section-desc {
        font-size: 16px;
    }

    .about-stat-number {
        font-size: 32px;
    }

    .about-stat-label {
        font-size: 14px;
    }

    .about-journey-corner {
        height: 350px;
        opacity: 0.3;
    }

    .about-capability-item {
        padding: 16px;
    }

    .about-capabilities-image {
        height: 300px;
    }

    .about-models-items {
        flex-direction: column;
    }

    .about-model-item {
        width: 100%;
        height: auto;
        min-height: 86px;
    }

    .about-models-bg {
        height: 300px;
        opacity: 0.3;
    }

    .about-team-photo {
        width: 200px;
        height: 200px;
    }

    .about-team-overlay i {
        font-size: 40px;
    }

    .about-cta-section {
        height: auto;
        padding: 60px 0;
    }

    .about-cta-container {
        padding: 0 var(--container-padding);
    }

    .about-cta-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .about-cta-nine {
        display: none;
    }

    .about-why-image {
        height: 300px;
    }

    .about-why-card {
        padding: 16px;
    }

    .about-team-corner {
        height: 150px;
        opacity: 0.3;
    }
}

/* Mobile Landscape (576px) */
@media (max-width: 576px) {
    .about-hero {
        padding: 40px 0;
    }

    .about-hero-title {
        font-size: 20px;
    }

    .about-hero-text {
        font-size: 14px;
    }

    .about-hero-corner {
        display: none;
    }

    .about-section-title {
        font-size: 20px;
    }

    .about-section-header {
        margin-bottom: 24px;
    }

    .about-stats-card {
        padding: 24px 16px;
        flex-direction: column;
        gap: 20px;
    }

    .about-stat-item {
        width: 100%;
    }

    .about-stat-number {
        font-size: 28px;
    }

    .about-journey-section,
    .about-capabilities-section,
    .about-models-section,
    .about-industries-section,
    .about-why-section,
    .about-team-section {
        padding: 40px 0;
    }

    .about-journey-corner {
        display: none;
    }

    .about-capability-title {
        font-size: 16px;
    }

    .about-capability-item {
        padding: 14px;
    }

    .about-capabilities-image {
        height: 250px;
        border-radius: 12px;
    }

    .about-models-card {
        padding: 16px;
        border-radius: 12px;
    }

    .about-models-card-title {
        font-size: 16px;
    }

    .about-model-item {
        padding: 12px;
    }

    .about-model-icon {
        width: 48px;
        height: 48px;
    }

    .about-model-icon img {
        width: 16px;
        height: 16px;
    }

    .about-model-name {
        font-size: 16px;
    }

    .about-model-desc {
        font-size: 13px;
    }

    .about-models-bg {
        display: none;
    }

    .about-industry-card-mobile .about-industry-image {
        height: 220px;
    }

    .about-industry-card-mobile .about-industry-name {
        font-size: 14px;
        line-height: 20px;
    }

    .about-industry-card-mobile .about-industry-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .about-why-image {
        height: 250px;
        border-radius: 12px;
    }

    .about-why-cards {
        gap: 12px;
    }

    .about-why-card {
        padding: 14px;
        border-radius: 12px;
    }

    .about-why-card-title {
        font-size: 16px;
    }

    .about-why-card-desc {
        font-size: 13px;
    }

    .about-team-grid {
        gap: 24px;
    }

    .about-team-photo {
        width: 140px;
        height: 140px;
    }

    .about-team-overlay i {
        font-size: 32px;
    }

    .about-team-name {
        font-size: 16px;
    }

    .about-team-role {
        font-size: 13px;
    }

    .about-team-corner {
        display: none;
    }

    .about-cta-section {
        padding: 40px 0;
    }

    .about-cta-title {
        font-size: 20px;
    }

    .about-cta-desc {
        font-size: 14px;
    }

    .about-cta-buttons {
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 18px;
    }

    .about-section-title {
        font-size: 18px;
    }

    .about-stat-number {
        font-size: 24px;
    }

    .about-stat-label {
        font-size: 13px;
    }

    .about-industry-card-mobile .about-industry-image {
        height: 80px;
    }

    .about-team-photo {
        width: 120px;
        height: 120px;
    }

    .about-team-overlay i {
        font-size: 28px;
    }

    .about-team-name {
        font-size: 15px;
    }

    .about-team-role {
        font-size: 12px;
    }

    .about-cta-title {
        font-size: 18px;
    }
}

/* Extra Small Mobile (360px) */
@media (max-width: 360px) {
    .about-hero-title {
        font-size: 16px;
    }

    .about-hero-text {
        font-size: 13px;
    }

    .about-section-title {
        font-size: 16px;
    }

    .about-stat-number {
        font-size: 22px;
    }

    .about-models-card {
        padding: 12px;
    }

    .about-model-item {
        padding: 10px;
        gap: 12px;
    }

    .about-model-icon {
        width: 40px;
        height: 40px;
    }

    .about-model-name {
        font-size: 14px;
    }

    .about-model-desc {
        font-size: 12px;
    }

    .about-industry-card-mobile {
        padding: 12px;
    }

    .about-industry-card-mobile .about-industry-image {
        height: 180px;
    }

    .about-team-photo {
        width: 100px;
        height: 100px;
    }

    .about-team-overlay i {
        font-size: 24px;
    }
}

/* ===============================================
   INDUSTRIES PAGE STYLES
   =============================================== */

/* Industry Page Navigation */
.industry-page-nav {
    background: #44209C;
    position: relative;
    z-index: 50;
    border-top: 1px solid #C6DAFA;
    padding: 5px 0;
}

.industry-page-nav-inner {
    height: 52px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.industry-page-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.25;
    color: #FFFFFF;
}

.industry-page-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.industry-page-link {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.29;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
    padding: 9px 16px;
    border-radius: 8px;
}

.industry-page-link:hover {
    opacity: 0.8;
    background: rgba(255, 255, 255, 0.1);
}

/* Industry Hero Section */
.industry-hero-section {
    overflow: hidden;
    background: #44209C;
}


.industry-hero-right {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.industry-hero-nine {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.industry-hero-content {
    width: 640px;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industry-hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 36px;
    line-height: 1.36;
    color: #FFFFFF;
    margin: 0;
}

.industry-hero-title .light {
    font-weight: 300;
}

.industry-hero-title .semibold {
    font-weight: 600;
}

.industry-hero-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: #F6F9FF;
    margin: 0;
}

.btn-industry-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #045DE8;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px 0 rgba(10, 13, 18, 0.05);
    width: fit-content;
}

.btn-industry-hero:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.15);
    color: #045DE8;
}

.btn-industry-hero .btn-arrow-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(24%) sepia(98%) saturate(1851%) hue-rotate(209deg) brightness(96%) contrast(99%);
}

/* Industry Solutions Section */
.industry-solutions-section {
    position: relative;
    padding: 80px 0;
    background: #FFFFFF;
    overflow: hidden;
}

.industry-solutions-section .container {
    position: relative;
}

.industry-solutions-header {
    text-align: center;
    margin-bottom: 40px;
}

.industry-solutions-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    color: #333333;
    margin-top: 0;
    margin-bottom: 12px;
}

.industry-solutions-title .light {
    font-weight: 300;
}

.industry-solutions-title .highlight {
    font-weight: 600;
    color: #045DE8;
}

.industry-solutions-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #444444;
    max-width: 1056px;
    margin: 0 auto;
}

.industry-solutions-content {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
}

.solutions-list-wrapper {
    display: flex;
    gap: 0;
    flex: 0 0 810px;
    align-items: flex-start;
}

.solutions-list-column {
    position: relative;
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
}

.solutions-list-item {
    position: relative;
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.solutions-list-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #045DE8;
    border-radius: 50px;
}

.solutions-list-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    height: 1px;
    background: #C6DAFA;
    border-radius: 40px;
}

.solutions-list-item:last-child::after {
    display: none;
}

.solutions-list-item:hover {
    background: rgba(4, 93, 232, 0.04);
}

.solutions-list-item.active,
.solutions-list-item.active:hover {
    background: #F6F9FF;
    border-radius: 0 16px 16px 0;
}

.solutions-list-item.active::after {
    opacity: 0;
}

.solutions-item-number {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #444444;
    line-height: normal;
}

.solutions-list-item.active .solutions-item-number {
    color: #045DE8;
    font-weight: 300;
}

.solutions-item-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #333333;
    line-height: normal;
}

.solutions-list-item.active .solutions-item-title {
    color: #045DE8;
    font-weight: 500;
}

.solutions-detail-panel {
    flex: 0 0 421px;
    background: #FFFFFF;
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 24px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 34px 9px 0px rgba(0, 0, 0, 0), 0px 22px 9px 0px rgba(0, 0, 0, 0), 0px 12px 7px 0px rgba(0, 0, 0, 0.02), 0px 5px 5px 0px rgba(0, 0, 0, 0.03), 0px 1px 3px 0px rgba(0, 0, 0, 0.03);
}

.solutions-detail-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #045DE8;
    line-height: normal;
}

.solutions-detail-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    color: #333333;
    margin: 0;
}

.industry-solutions-nine {
    position: absolute;
    bottom: 0px;
    right: 0px;
    height: 650px;
    opacity: 1;
    z-index: -1;
    pointer-events: none;
}

/* Industry Agents Section */
.industry-agents-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.industry-agents-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.agents-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    height: 100%;
}

.agents-bg-gradient::before {
    content: '';
    position: absolute;
    top: -149px;
    left: -271px;
    width: 1035px;
    height: 565px;
    background: radial-gradient(ellipse at center, rgba(68, 32, 156, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.agents-bg-gradient::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.5) 100%);
    pointer-events: none;
}

/* Industry Agents - container is Bootstrap */

.industry-agents-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-tag.light {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 12px 7px rgba(0, 0, 0, 0.02), 0px 22px 9px rgba(0, 0, 0, 0), 0px 34px 9px rgba(0, 0, 0, 0);
}

.industry-agents-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    color: #FFFFFF;
    margin-top: 0;
}

.industry-agents-title .light {
    font-weight: 300;
}

.industry-agents-title .semibold {
    font-weight: 600;
}

.industry-agents-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.agent-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.03), 0px 5px 5px rgba(0, 0, 0, 0.03), 0px 12px 7px rgba(0, 0, 0, 0.02), 0px 22px 9px rgba(0, 0, 0, 0), 0px 34px 9px rgba(0, 0, 0, 0);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 308px;
}

.agent-card .read-more {
    margin-top: auto;
}

.agent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08), 0px 8px 16px rgba(0, 0, 0, 0.05);
}

.agent-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.agent-icon {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    flex-shrink: 0;
}

.agent-icon img {
    width: 32px;
    height: 32px;
}

.agent-category {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #444444;
    background: #F6F9FF;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    position: absolute;
    top: 24px;
    right: 24px;
    white-space: nowrap;
    height: 24px;
    display: flex;
    align-items: center;
}

.agent-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 27px;
    color: #333333;
    margin: 0;
}

.agent-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #444444;
    margin: 0;
}

/* Industry What We Do Section */
.industry-whatwedo-section {
    padding: 80px 0;
    background: #F6F9FF;
}

/* Industry What We Do - container is Bootstrap */

.industry-whatwedo-header {
    text-align: center;
    margin-bottom: 40px;
}

.industry-whatwedo-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    color: #333333;
    margin-top: 0;
}

.industry-whatwedo-title .light {
    font-weight: 300;
}

.industry-whatwedo-title .highlight {
    font-weight: 600;
    color: #045DE8;
}

/* Desktop Slider */
.whatwedo-slider {
    display: flex;
    gap: 16px;
    width: 100%;
}

.whatwedo-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    flex: 1;
    min-width: 0;
    height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: flex 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.whatwedo-card.active {
    flex: 2;
}

.whatwedo-card-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    transition: width 0.4s ease;
}

.whatwedo-card.active .whatwedo-card-inner {
    width: 50%;
}

.whatwedo-card-number {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #444444;
}

.whatwedo-card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatwedo-card-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #333333;
    margin: 0;
    transition: color 0.3s ease;
}

.whatwedo-card.active .whatwedo-card-title {
    color: #045DE8;
}

.whatwedo-card-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    color: #444444;
    margin: 0;
}

.whatwedo-card-image {
    display: none;
}

.whatwedo-card.active .whatwedo-card-image {
    display: block;
    position: absolute;
    right: 16px;
    top: 16px;
    width: calc(50% - 24px);
    height: calc(100% - 32px);
    border-radius: 8px;
    overflow: hidden;
}

.whatwedo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mobile Card */
.whatwedo-card-mobile {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.whatwedo-card-mobile .whatwedo-card-number {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #444444;
}

.whatwedo-card-mobile .whatwedo-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.whatwedo-card-mobile .whatwedo-card-title {
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    margin: 0;
    line-height: 22px;
}

.whatwedo-card-mobile .whatwedo-card-desc {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #444444;
    line-height: 20px;
    margin: 0;
}

.whatwedo-card-mobile .whatwedo-card-image {
    display: block;
    width: 100%;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    position: relative;
    right: auto;
    left: auto;
    top: auto;
}

.whatwedo-card-mobile .whatwedo-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Industry Clients Section */
.industry-clients {
    padding: 56px 80px;
    background: #FFFFFF;
}

.industry-clients .clients-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.25;
    color: #333333;
    text-align: center;
    margin-bottom: 36px;
}

/* Industry Testimonials Section */
.industry-testimonials {
    background: #F6F9FF;
    padding: 80px 0;
}

.industry-testimonials .testimonials-header {
    margin-bottom: 40px;
}

.industry-testimonials-grid {
    display: flex;
    gap: 16px;
}

.industry-testimonial-card {
    background: #FFFFFF;
    border: 1px solid #C6DAFA;
    border-radius: 16px;
    padding: 24px;
    min-width: 395px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-author-border {
    border-bottom: 1px dashed #C6DAFA;
    padding-bottom: 16px;
}

.industry-testimonial-card .testimonial-author {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 0;
    border: none;
    margin: 0;
}

.industry-testimonial-card .author-name {
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.67;
    color: #333333;
    margin: 0;
}

.industry-testimonial-card .author-company {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.69;
    color: #444444;
    margin: 0;
}

.industry-testimonial-card .testimonial-text {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.69;
    color: #333333;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

/* Why Choose Us Section */
/* Industries Page - Why Choose Us Section Override */
.industry-why-choose {
    padding: 80px 0;
    background: #FFFFFF;
}

.industry-why-choose .why-choose-inner {
    gap: 80px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.industry-why-choose .why-choose-content {
    flex: 0 0 640px;
}

.industry-why-choose .why-choose-header {
    margin-bottom: 54px;
}

.industry-why-choose .why-choose-title {
    font-family: 'Lexend', sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #333333;
    margin-bottom: 16px;
    line-height: 1.25;
}

.industry-why-choose .why-choose-title .highlight {
    color: #045DE8;
    font-weight: 500;
}

.industry-why-choose .why-choose-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.69;
    color: #444444;
}

.industry-why-choose .features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.industry-why-choose .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: none;
}

.industry-why-choose .feature-item:hover {
    border-color: transparent;
    box-shadow: none;
}

.industry-why-choose .feature-icon {
    width: 40px;
    height: 40px;
    background: #F6F9FF;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
}

.industry-why-choose .feature-icon img {
    width: 20px;
    height: 20px;
}

.industry-why-choose .feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.industry-why-choose .feature-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
    line-height: 1.25;
}

.industry-why-choose .feature-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #444444;
    margin: 0;
}

/* Industries Tech Stack Grid */
.industry-why-choose .tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(2, 220px);
    grid-template-rows: repeat(3, 97px);
    gap: 16px;
    flex: 0 0 456px;
}

.industry-why-choose .tech-card {
    background: #F6F9FF;
    border-radius: 16px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 220px;
    height: 97px;
}

.industry-why-choose .tech-card:hover {
    background: #EEF4FF;
}

.industry-why-choose .tech-card img {
    max-width: 168px;
    max-height: 48px;
    object-fit: contain;
}

.industry-why-choose .tech-card.circle {
    border-radius: 50%;
    background: #FFFFFF;
}

.tech-card.circle img {
    max-width: 95%;
    max-height: 95%;
}

/* ===============================================
   GLOBAL CARD HOVER EFFECTS
   Unified hover pattern for all cards
   =============================================== */

.engineering-card {
    transition: all 0.3s ease;
}

.engineering-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 4px 30px rgba(4, 93, 232, 0.1);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.success-story-card {
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    background-color: #F6F9FF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.contact-form-card {
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.partners-card {
    transition: all 0.3s ease;
}

.partners-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.process-panel-card {
    transition: all 0.3s ease;
}

.process-panel-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.contact-why-card {
    transition: all 0.3s ease;
}

.contact-why-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.office-location-card {
    transition: all 0.3s ease;
}

.office-location-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.about-industry-card:not(.active) {
    transition: all 0.3s ease;
}

.about-industry-card:not(.active):hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.whatwedo-card:not(.active) {
    transition: all 0.3s ease;
}

.whatwedo-card:not(.active):hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

.industry-testimonial-card {
    transition: all 0.3s ease !important;
}

.industry-testimonial-card:hover {
    transform: translateY(-4px);
    background: radial-gradient(47.04% 33.24% at 68.79% 105.53%, rgba(139, 184, 255, 0.40) 0%, rgba(255, 255, 255, 0.40) 100%), #FFF;
    /* Chip */
    box-shadow: 0 34px 9px 0 rgba(0, 0, 0, 0.00), 0 22px 9px 0 rgba(0, 0, 0, 0.00), 0 12px 7px 0 rgba(0, 0, 0, 0.02), 0 5px 5px 0 rgba(0, 0, 0, 0.03), 0 1px 3px 0 rgba(0, 0, 0, 0.03);
}

/* ===============================================
   INDUSTRIES PAGE RESPONSIVE STYLES
   =============================================== */

/* Extra Large Screens (1400px and below) */
@media (max-width: 1400px) {
    .industry-hero-content {
        max-width: 100%;
        width: 100%;
    }

    .industry-solutions-content {
        gap: 40px;
    }

    .solutions-list-wrapper {
        flex: 0 0 auto;
    }

    .solutions-list-column {
        flex: 0 0 280px;
    }

    .solutions-detail-panel {
        flex: 0 0 380px;
    }

    .agent-card {
        width: 280px;
    }

    .industry-why-choose .why-choose-content {
        flex: 0 0 auto;
        max-width: 550px;
    }

    .industry-why-choose .tech-stack-grid {
        flex: 0 0 auto;
        grid-template-columns: repeat(2, 180px);
    }

    .industry-why-choose .tech-card {
        width: 180px;
        height: 80px;
    }
}

/* Large Screens (1200px and below) */
@media (max-width: 1200px) {
    .industry-page-nav-container {
        padding: 16px 40px;
    }

    .industry-page-links {
        gap: 20px;
    }

    .industry-hero-content {
        padding: 50px 0;
    }

    .industry-hero-title {
        font-size: 32px;
    }

    .industry-hero-desc {
        font-size: 16px;
    }

    .industry-solutions-section {
        padding: 60px 0;
    }

    .industry-solutions-content {
        flex-direction: column;
        align-items: center;
    }

    .solutions-list-wrapper {
        flex: none;
        width: 100%;
        max-width: 700px;
    }

    .solutions-list-column {
        flex: 1;
    }

    .solutions-detail-panel {
        flex: none;
        width: 100%;
        max-width: 700px;
        height: auto;
        min-height: 320px;
    }

    .industry-agents-section {
        padding: 60px 0;
    }

    .industry-agents-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .agent-card {
        width: calc(50% - 8px);
        max-width: 340px;
    }

    .industry-whatwedo-section {
        padding: 60px 0;
    }

    .whatwedo-slider {
        gap: 12px;
    }

    .whatwedo-card {
        height: 300px;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 40px;
    }

    .why-choose-content {
        max-width: 100%;
    }

    .industry-why-choose .why-choose-content {
        flex: none;
        max-width: 100%;
    }

    .industry-why-choose .tech-stack-grid {
        flex: none;
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-why-choose .tech-card {
        width: 100%;
        height: 80px;
    }

    .industry-clients {
        padding: 40px;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }
}

/* Medium Screens - Tablets (992px and below) */
@media (max-width: 992px) {
    .industry-page-nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 24px;
    }

    .industry-page-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .industry-page-link {
        font-size: 13px;
        padding: 8px 12px;
    }

    .industry-hero-section {
        min-height: auto;
        height: auto;
    }

    .industry-hero-section .row {
        flex-direction: column-reverse;
    }

    .industry-hero-content {
        max-width: 100%;
        text-align: center;
        width: 100%;
        padding: 40px 0;
    }

    .industry-hero-title {
        font-size: 28px;
        line-height: 1.3;
    }

    .industry-hero-desc {
        font-size: 15px;
    }

    .btn-industry-hero {
        margin: 0 auto;
    }

    .industry-hero-right {
        max-height: 300px;
    }

    .industry-solutions-section,
    .industry-agents-section,
    .industry-whatwedo-section {
        padding: 50px 0;
    }

    .industry-solutions-title,
    .industry-agents-title,
    .industry-whatwedo-title {
        font-size: 28px;
    }

    .industry-solutions-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .solutions-list-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .solutions-list-column {
        flex: 0 0 calc(50% - 8px);
    }

    .solutions-detail-panel {
        min-height: 280px;
    }

    .agent-card {
        width: calc(50% - 8px);
    }

    .whatwedo-slider {
        display: none !important;
    }

    .industry-why-choose .tech-stack-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-container {
        padding: 0 24px;
    }

    .testimonials-grid {
        gap: 16px;
    }

    .testimonial-card {
        min-width: 320px;
    }

    .cta-container {
        padding: 40px 24px;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .cta-content {
        max-width: 100%;
        gap: 32px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-form-wrapper {
        width: 100%;
    }

    .cta-form {
        padding: 24px;
    }

    .cta-input {
        height: 54px;
        font-size: 16px;
        border-radius: 14px;
    }

    .cta-textarea {
        height: 92px;
        font-size: 16px;
        border-radius: 14px;
    }

    .cta-marquee-track {
        gap: 36px;
    }

    .cta-marquee-track img {
        height: 34px;
        max-width: 120px;
    }

    .cta-bg-graphic {
        width: 100%;
        opacity: 0.25;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-cta,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}

/* Small Screens - Large Phones (768px and below) */
@media (max-width: 768px) {
    .industry-page-nav {
        padding: 8px 0;
    }

    .industry-page-nav-container {
        padding: 8px 16px;
    }

    .industry-page-links {
        gap: 8px;
    }

    .industry-page-link {
        font-size: 12px;
        padding: 6px 10px;
    }

    .industry-hero-content {
        padding: 30px 0;
    }

    .industry-hero-title {
        font-size: 24px;
    }

    .industry-hero-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .btn-industry-hero {
        font-size: 16px;
        padding: 10px 16px;
    }

    .industry-hero-right {
        max-height: 250px;
    }

    .industry-solutions-section,
    .industry-agents-section,
    .industry-whatwedo-section {
        padding: 40px 0;
    }

    .industry-solutions-header,
    .industry-agents-header,
    .industry-whatwedo-header {
        margin-bottom: 30px;
    }

    .industry-solutions-title,
    .industry-agents-title,
    .industry-whatwedo-title {
        font-size: 24px;
    }

    .industry-solutions-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .solutions-list-wrapper {
        flex-direction: column;
    }

    .solutions-list-column {
        flex: none;
        width: 100%;
    }

    .solutions-list-item {
        padding: 14px 20px;
    }

    .solutions-item-number {
        font-size: 14px;
    }

    .solutions-item-title {
        font-size: 16px;
    }

    .solutions-detail-panel {
        padding: 20px;
        min-height: 250px;
    }

    .solutions-detail-title {
        font-size: 18px;
    }

    .solutions-detail-desc {
        font-size: 14px;
        line-height: 24px;
    }

    .industry-agents-grid {
        flex-direction: column;
    }

    .agent-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .agent-icon {
        width: 50px;
        height: 50px;
    }

    .agent-icon img {
        width: 28px;
        height: 28px;
    }

    .agent-category {
        font-size: 11px;
        padding: 3px 8px;
        top: 20px;
        right: 20px;
    }

    .agent-title {
        font-size: 18px;
        line-height: 24px;
    }

    .agent-desc {
        font-size: 14px;
        line-height: 22px;
    }

    .industry-whatwedo-section .row.d-lg-none .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .whatwedo-card-mobile {
        padding: 16px;
    }

    .whatwedo-card-mobile .whatwedo-card-title {
        font-size: 16px;
    }

    .whatwedo-card-mobile .whatwedo-card-desc {
        font-size: 13px;
    }

    .whatwedo-card-mobile .whatwedo-card-image {
        height: 160px;
    }

    .industry-clients {
        padding: 30px 20px;
    }

    .industry-clients .clients-title {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonials-title {
        font-size: 24px;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 20px;
    }

    .author-name {
        font-size: 16px;
    }

    .author-company {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-title {
        font-size: 24px;
    }

    .why-choose-desc {
        font-size: 14px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
    }

    .feature-icon {
        margin: 0;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-desc {
        font-size: 13px;
    }

    .industry-why-choose .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .industry-why-choose .tech-card {
        height: 70px;
        padding: 16px;
    }

    .industry-why-choose .tech-card img {
        max-width: 100px;
        max-height: 35px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-container {
        padding: 40px 24px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-desc {
        font-size: 14px;
    }

    .cta-input {
        height: 50px;
        font-size: 15px;
        border-radius: 12px;
    }

    .cta-textarea {
        height: 88px;
        font-size: 15px;
        border-radius: 12px;
    }

    .cta-form {
        padding: 20px;
        gap: 20px;
        border-radius: 12px;
    }

    .cta-checkbox-label {
        font-size: 14px;
    }

    .cta-nine {
        width: 200px;
        height: auto;
    }
}

/* Extra Small Screens - Small Phones (576px and below) */
@media (max-width: 576px) {
    .industry-page-nav {
        display: none;
    }

    /* Center \"Why Choose Us\" section tag and heading on mobile */
    .why-choose-header {
        align-items: center;
        text-align: center;
    }

    .why-choose-header .section-tag {
        align-self: center;
    }

    .industry-hero-content {
        padding: 24px 0;
    }

    .industry-hero-title {
        font-size: 22px;
    }

    .industry-hero-desc {
        font-size: 13px;
    }

    .btn-industry-hero {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .industry-hero-right {
        max-height: 200px;
    }

    .industry-solutions-section,
    .industry-agents-section,
    .industry-whatwedo-section {
        padding: 32px 0;
    }

    .section-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .industry-solutions-title,
    .industry-agents-title,
    .industry-whatwedo-title {
        font-size: 20px;
        margin-top: 0;
    }

    .industry-solutions-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .solutions-list-item {
        padding: 12px 16px;
    }

    .solutions-item-number {
        font-size: 13px;
    }

    .solutions-item-title {
        font-size: 15px;
    }

    .solutions-detail-panel {
        padding: 16px;
        min-height: 220px;
        border-radius: 12px;
    }

    .solutions-detail-title {
        font-size: 16px;
    }

    .solutions-detail-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .agent-card {
        padding: 16px;
        border-radius: 12px;
    }

    .agent-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .agent-icon img {
        width: 24px;
        height: 24px;
    }

    .agent-category {
        font-size: 10px;
        padding: 2px 6px;
        top: 16px;
        right: 16px;
    }

    .agent-title {
        font-size: 16px;
        line-height: 22px;
    }

    .agent-desc {
        font-size: 13px;
        line-height: 20px;
    }

    .whatwedo-card-mobile {
        padding: 14px;
        border-radius: 12px;
    }

    .whatwedo-card-mobile .whatwedo-card-number {
        font-size: 12px;
    }

    .whatwedo-card-mobile .whatwedo-card-title {
        font-size: 15px;
        line-height: 20px;
    }

    .whatwedo-card-mobile .whatwedo-card-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .whatwedo-card-mobile .whatwedo-card-image {
        height: 140px;
        border-radius: 8px;
    }

    .industry-clients {
        padding: 24px 16px;
    }

    .industry-clients .clients-title {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .testimonials-section {
        padding: 32px 0;
    }

    .testimonials-header {
        margin-bottom: 24px;
    }

    .testimonials-title {
        font-size: 20px;
    }

    .testimonial-card {
        min-width: 260px;
        padding: 16px;
        border-radius: 12px;
    }

    .author-name {
        font-size: 14px;
    }

    .author-company {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .why-choose-section {
        padding: 32px 0;
    }

    .why-choose-container {
        padding: 0 16px;
    }

    .why-choose-header {
        margin-bottom: 24px;
    }

    .why-choose-title {
        font-size: 20px;
    }

    .why-choose-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .features-list {
        gap: 16px;
    }

    .feature-item {
        gap: 12px;
    }

    .feature-icon {
        width: 36px;
        height: 36px;
    }

    .feature-icon img {
        width: 30px;
        height: 30px;
    }

    .feature-title {
        font-size: 14px;
    }

    .feature-desc {
        font-size: 12px;
        line-height: 18px;
    }

    .industry-why-choose .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industry-why-choose .tech-card {
        height: 60px;
        padding: 12px;
        border-radius: 12px;
    }

    .industry-why-choose .tech-card img {
        max-width: 80px;
        max-height: 30px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-container {
        padding: 32px 16px;
    }

    .cta-wrapper {
        gap: 24px;
    }

    .cta-content {
        gap: 24px;
    }

    .cta-title {
        font-size: 20px;
        line-height: 1.4;
    }

    .cta-desc {
        font-size: 13px;
        line-height: 22px;
    }

    .cta-partners-label {
        font-size: 14px;
    }

    .cta-marquee-track img {
        height: 28px;
    }

    .cta-input {
        height: 48px;
        font-size: 14px;
        padding: 0 16px;
        border-radius: 10px;
    }

    .cta-textarea {
        height: 80px;
        font-size: 14px;
        padding: 14px 16px;
        border-radius: 10px;
    }

    .cta-form {
        padding: 16px;
        gap: 16px;
        border-radius: 10px;
    }

    .cta-form-fields {
        gap: 12px;
    }

    .cta-checkbox-label {
        font-size: 13px;
        line-height: 22px;
    }

    .cta-submit-btn {
        font-size: 14px;
        padding: 10px 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-primary-cta,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
        font-size: 14px;
        padding: 10px 16px;
    }

    .btn-arrow,
    .btn-arrow-white {
        width: 18px;
        height: 18px;
    }

    .cta-nine {
        width: 150px;
        opacity: 0.3;
    }

    .cta-bg-graphic {
        display: none;
    }
}

/* ===============================================
   BLOG DETAIL PAGE STYLES
   =============================================== */

/* Blog Detail Hero */
.blog-detail-hero {
    position: relative;
    width: 100%;
    height: 388px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.blog-detail-hero .container {
    position: relative;
    z-index: 2;
}

.blog-detail-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.blog-detail-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: var(--white);
    font-size: 14px;
    color: var(--light-text);
    line-height: normal;
}

.blog-detail-hero-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 36px;
    line-height: 52px;
    color: var(--white);
    max-width: 630px;
    margin: 0;
}

.blog-detail-hero-date {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

/* Blog Detail Content Section */
.blog-detail-content-section {
    padding-top: 80px;
    padding-bottom: 80px;
    background: var(--white);
}

/* Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog-detail-toc {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blog-detail-toc-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
    color: var(--black-text);
    margin: 0;
}

.blog-detail-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.blog-detail-toc-link {
    display: block;
    padding: 12px 10px;
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--black-text);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

.blog-detail-toc-link:hover {
    color: var(--primary-color);
}

.blog-detail-toc-link.active {
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

/* Newsletter Card */
.blog-detail-newsletter {
    background: linear-gradient(to top, #045DE8 38.196%, #002560 100%);
    border-radius: 16px;
    padding: 33px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.blog-detail-newsletter-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 33px;
    color: var(--white);
    margin: 0;
}

.blog-detail-newsletter-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: var(--white);
    opacity: 0.7;
    margin: -20px 0 0;
}

.blog-detail-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.blog-detail-newsletter-input {
    width: 100%;
    height: 48px;
    padding: 12px;
    border-radius: 8px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    outline: none;
}

.blog-detail-newsletter-input::placeholder {
    color: var(--white);
}

.blog-detail-newsletter-btn {
    width: 100%;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    background: var(--white);
    color: var(--primary-color);
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    cursor: pointer;
    box-shadow: 0px 1px 2px 0px rgba(10, 13, 18, 0.05);
    transition: opacity 0.2s ease;
}

.blog-detail-newsletter-btn:hover {
    opacity: 0.9;
}

/* Article Content */
.blog-detail-article {
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #000416;
    padding: 0 10px;
}

.blog-detail-intro p,
.blog-detail-section p {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 28px;
    color: #000416;
    margin: 0 0 12px;
}

.blog-detail-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-detail-section h2 {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 25px;
    line-height: 36px;
    color: #000416;
    margin: 0;
}

.blog-detail-section h3 {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #000416;
    margin: 0;
}

.blog-detail-section p strong {
    font-weight: 500;
}

.blog-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.blog-detail-list li {
    font-family: 'Lexend', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #000416;
    padding-left: 0;
}

/* Recent Articles Section */
.blog-detail-recent {
    background: var(--white);
    padding-top: 80px;
    padding-bottom: 80px;
}

.blog-detail-recent-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.blog-detail-recent-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 300;
    font-size: 32px;
    line-height: normal;
    color: var(--black-text);
    text-align: center;
    letter-spacing: -0.889px;
    margin: 0;
}

.blog-detail-recent-title .highlight {
    font-weight: 500;
    color: var(--primary-color);
}

.blog-detail-recent-card {
    height: 100%;
    border-radius: 16px;
    border: 1px solid var(--blue-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.blog-detail-recent-card:hover {
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.08);
}

.blog-detail-recent-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-detail-recent-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-detail-recent-card:hover .blog-detail-recent-card-image img {
    transform: scale(1.05);
}

.blog-detail-recent-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: var(--white);
    backdrop-filter: blur(17px);
    flex: 1;
}

.blog-detail-recent-card-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: var(--white);
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    color: var(--light-text);
    align-self: flex-start;
}

.blog-detail-recent-card-title {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 23.4px;
    color: var(--black-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-detail-recent-card-desc {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    color: var(--secondary-text);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-detail-recent-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.blog-detail-recent-card-info {
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.8px;
    color: #5d5d5d;
}

.blog-detail-recent-action {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===============================================
   BLOG DETAIL PAGE RESPONSIVE STYLES
   =============================================== */
@media (max-width: 991.98px) {
    .blog-detail-hero {
        height: 320px;
    }

    .blog-detail-hero-title {
        font-size: 28px;
        line-height: 40px;
        max-width: 500px;
    }

    .blog-detail-content-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-detail-sidebar {
        position: static;
    }

    .blog-detail-recent {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-detail-recent-card-image {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .blog-detail-hero {
        height: 280px;
    }

    .blog-detail-hero-title {
        font-size: 24px;
        line-height: 34px;
        max-width: 90%;
    }

    .blog-detail-hero-date {
        font-size: 14px;
    }

    .blog-detail-toc-title {
        font-size: 20px;
    }

    .blog-detail-section h2 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-detail-recent-title {
        font-size: 24px;
    }

    .blog-detail-recent-card-image {
        height: 200px;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-hero {
        height: 240px;
    }

    .blog-detail-hero-title {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-detail-hero-tag {
        font-size: 12px;
        padding: 4px 10px;
    }

    .blog-detail-newsletter-title {
        font-size: 20px;
        line-height: 28px;
    }

    .blog-detail-newsletter-btn {
        font-size: 16px;
    }

    .blog-detail-recent-card-image {
        height: 180px;
    }

    .blog-detail-intro p,
    .blog-detail-section p {
        font-size: 14px;
        line-height: 24px;
    }

    .blog-detail-section h2 {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Very Small Screens (400px and below) */
@media (max-width: 400px) {
    .industry-hero-title {
        font-size: 20px;
    }

    .industry-hero-desc {
        font-size: 12px;
    }

    .industry-solutions-title,
    .industry-agents-title,
    .industry-whatwedo-title,
    .testimonials-title,
    .why-choose-title,
    .cta-title {
        font-size: 18px;
    }

    .solutions-detail-panel {
        min-height: 200px;
    }

    .solutions-detail-title {
        font-size: 15px;
    }

    .solutions-detail-desc {
        font-size: 12px;
        line-height: 20px;
    }

    .agent-card {
        padding: 14px;
    }

    .agent-title {
        font-size: 15px;
    }

    .agent-desc {
        font-size: 12px;
    }

    .testimonial-card {
        min-width: 240px;
    }

    .industry-why-choose .tech-card {
        height: 55px;
    }

    .industry-why-choose .tech-card img {
        max-width: 70px;
        max-height: 25px;
    }
}
.non-filter{
    filter: none !important;
}
.job-open-iframe iframe {
    height: 600px;
}