/* ============================================
   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;
}

* {
    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);
}

/* 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: all 0.3s 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: 35px;
    height: 35px;
    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;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--black-text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav.active {
    max-height: 500px;
    padding: 20px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Lexend', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-text);
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    transition: color 0.3s ease;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    cursor: pointer;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

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

.mobile-nav-link .bi-chevron-down {
    margin-left: auto;
    transition: transform 0.3s ease;
}

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

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

.mobile-nav-accordion {
    border-bottom: 1px solid var(--border-color);
}

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

.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

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

.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 0;
    border-bottom: 1px solid rgba(39, 39, 39, 0.05);
    transition: color 0.3s ease;
}

.mobile-submenu-link:last-child {
    border-bottom: none;
}

.mobile-submenu-link:hover {
    color: var(--primary-color);
}

/* 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: 1059px;
    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%;
}

.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;
}

/* ============================================
   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-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;
}

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

.hero-nav-arrow.left {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-nav-arrow.right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.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;
}

.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: 630px;
}

.hero-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    font-weight: 300;
    line-height: 1.493;
    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;
    gap: 8px;
    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: space-between;
    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: 176px;
    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;
}

.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: 60px 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: 36px;
}

.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: 48px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

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

.client-logo {
    height: 40px;
    width: auto;
    opacity: 0.7;
    flex-shrink: 0;
}

@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;
    background-size: cover;
    border-radius: 64px 64px 0 0;
    position: relative;
    overflow: hidden;
}

.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);
    text-decoration: none;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
}

.ai-labs-card:hover {
    height: auto;
}

.ai-labs-content-left {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.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;
    transition: opacity 0.3s ease;
}

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

.ai-labs-card:hover .ai-labs-arrow {
    opacity: 0;
}

/* Expanded content - hidden by default */
.ai-labs-expanded {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease 0.15s, transform 0.3s ease 0.15s;
    margin-top: 20px;
    max-width: 472px;
}

.ai-labs-card:hover .ai-labs-expanded {
    opacity: 1;
    transform: translateY(0);
}

.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;
    transition: opacity 0.3s ease 0.15s;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ai-labs-card:hover .ai-labs-tech-logos {
    opacity: 1;
}

.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;
    gap: 16px;
    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);
}

.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;
}

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

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

.service-arrow {
    width: 36px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.service-item:hover .service-arrow {
    display: none;
}

/* Right side - tech logos */
.service-right {
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    flex-shrink: 0;
}

.service-item:hover .service-right {
    display: flex;
    animation: slideInUp 0.4s ease-out forwards;
}

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

.service-item:hover .service-expanded {
    display: flex;
    animation: slideInUp 0.4s ease-out forwards;
}

/* Keyframe animations for service hover */
@keyframes slideInUp {
    from {
        transform: translateY(-10px);
    }
    to {
        transform: translateY(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(4, auto);
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
}

.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;
    gap: 16px;
    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;
}

.industry-card:hover {
    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);
}

.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;
    gap: 16px;
    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: radial-gradient(ellipse at center bottom, rgba(221, 234, 255, 1) 0%, rgba(255, 255, 255, 1) 60%);
    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: 10.2px;
    font-weight: 400;
    line-height: 1.635;
    letter-spacing: 0.889px;
    text-transform: uppercase;
    color: #272727;
}

.case-study-name {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    font-weight: 400;
    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: 1.5;
    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: 40px;
    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;
    gap: 16px;
    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;
}

.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-avatar {
    width: 63px;
    height: 63px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.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: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 456px;
    align-content: center;
}

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

.tech-card:nth-child(1) img{
    width: 120px;
}
.tech-card:last-child img{
    width: 130px;
}
/* Middle row - 3 cards */
.tech-card:nth-child(3),
.tech-card:nth-child(4),
.tech-card:nth-child(5) {
    width: 163px;
}

/* Circular card for SOC */
.tech-card.circle {
    width: 97px;
    border-radius: 50%;
    padding: 5px;
}
.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;
    gap: 16px;
    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%;
    min-height: 583px;
    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-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
}

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

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

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

.cta-bg-graphic {
    position: absolute;
    top: -193px;
    right: 0;
    height: 955px;
    z-index: 1;
    pointer-events: none;
}

.cta-nine {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 665px;
    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: 26px;
    color: #444444;
    margin: 0;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.social-icon-link img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-icon-link:hover {
    opacity: 0.7;
}

/* 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 {
    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 Links Section */
.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: 16px;
    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: 14px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.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;
    }

    .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;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 48px;
    }

    .tech-stack-grid {
        justify-content: center;
    }

    /* Dropdown responsive */
    .dropdown-content {
        width: calc(100% - 80px);
        max-width: 1059px;
    }

    .dropdown-column {
        width: 240px;
    }

    .dropdown-card {
        width: 280px;
    }

    .dropdown-card-header,
    .dropdown-card-body,
    .dropdown-card-icons {
        width: 100%;
    }

    /* AI Labs responsive */
    .ai-labs-section {
        padding: 40px;
        border-radius: 48px 48px 0 0;
    }

    .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) {
    .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;
    }

    /* AI Labs responsive */
    .ai-labs-card {
        height: 85px;
        padding: 24px;
    }

    .ai-labs-arrow {
        right: 24px;
        top: 24px;
    }

    .ai-labs-arrow img {
        width: 32px;
        height: 28px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        justify-items: center;
    }

    /* Services responsive */
    .service-name {
        font-size: 24px;
    }

    .services-title {
        font-size: 28px;
    }

    /* Services responsive 1024px */
    .service-item {
        flex-direction: column;
        gap: 20px;
    }

    .service-left {
        max-width: 100%;
        width: 100%;
    }

    .service-tech-logos {
        grid-template-columns: repeat(4, auto);
        gap: 16px;
        justify-content: flex-start;
    }

    .service-tech-logo {
        height: 40px;
    }

    /* 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 {
        width: 180px;
        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;
        max-height: 0;
        padding: 0 20px;
    }

    .mobile-nav.active {
        max-height: 500px;
        padding: 20px;
    }

    /* Hide dropdown on mobile - handled by mobile menu */
    .nav-dropdown-menu {
        display: none;
    }

    .hero-section {
        min-height: 600px;
    }

    .hero-intro,
    .hero-title,
    .hero-subtitle {
        font-size: 28px;
    }

    .hero-nine {
        width: 200px;
        height: auto;
        right: -50px;
        top: 150px;
    }

    .stats-section {
        margin-top: -100px;
    }

    .stats-card {
        flex-wrap: wrap;
        gap: 24px;
        padding: 32px;
        margin: 0 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 12px);
    }

    .stat-divider {
        display: none;
    }

    .service-name {
        font-size: 18px;
    }

    .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;
    }

    /* 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: 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: 20px;
        height: 20px;
    }

    .feature-title {
        font-size: 16px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 20px;
    }

    .tech-stack-grid {
        max-width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .tech-card {
        width: calc(50% - 6px);
        max-width: 180px;
        height: 70px;
        padding: 16px;
    }

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

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

    .cta-title {
        font-size: 28px;
    }

    .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);
    }

    /* AI Labs responsive */
    .ai-labs-section {
        padding: 32px 20px;
        border-radius: 32px 32px 0 0;
    }

    .ai-labs-card {
        height: 75px;
        padding: 20px;
    }

    .ai-labs-text {
        font-size: 24px;
    }

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

    .ai-labs-arrow {
        right: 20px;
        top: 20px;
    }

    .ai-labs-arrow img {
        width: 28px;
        height: 24px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }

    .tech-logo {
        height: 36px;
    }

    /* Services responsive */
    .services-section {
        padding: 60px 0;
    }

    .services-title {
        font-size: 24px;
        line-height: 36px;
    }

    /* Services responsive 768px */
    .service-item {
        padding: 20px 0;
        flex-direction: column;
        gap: 16px;
    }

    .service-left {
        max-width: 100%;
        width: 100%;
    }

    .service-title-row {
        flex-wrap: wrap;
        gap: 12px;
    }

    .service-description {
        font-size: 14px;
        line-height: 22px;
    }

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

    .service-tech-logos {
        grid-template-columns: repeat(4, auto);
        gap: 12px;
    }

    .service-tech-logo {
        height: 32px;
    }

    .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;
    }

    .stat-item {
        flex: 0 0 100%;
    }

    .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-avatar {
        width: 40px;
        height: 40px;
    }

    .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: 18px;
        height: 18px;
    }

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

    .feature-desc {
        font-size: 13px;
        line-height: 18px;
    }

    .tech-stack-grid {
        gap: 10px;
    }

    .tech-card {
        width: calc(50% - 5px);
        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 */
    .ai-labs-section {
        padding: 24px 16px;
        border-radius: 24px 24px 0 0;
    }

    .ai-labs-card {
        height: 65px;
        padding: 16px;
    }

    .ai-labs-text {
        font-size: 20px;
    }

    .ai-labs-icon {
        width: 24px;
        height: 24px;
    }

    .ai-labs-icon img {
        width: 20px;
        height: 20px;
    }

    .ai-labs-arrow {
        right: 16px;
        top: 16px;
    }

    .ai-labs-arrow img {
        width: 24px;
        height: 20px;
    }

    .ai-labs-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .tech-logo {
        height: 32px;
    }

    /* Services responsive 480px */
    .services-section {
        padding: 48px 0;
    }

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

    .service-name {
        font-size: 16px;
    }

    .service-item {
        padding: 16px 0;
        flex-direction: column;
        gap: 12px;
    }

    .service-left {
        max-width: 100%;
        width: 100%;
    }

    .service-title-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .service-arrow {
        width: 24px;
        height: 20px;
    }

    .service-arrow img {
        width: 24px;
        height: 20px;
    }

    .service-description {
        font-size: 13px;
        line-height: 20px;
    }

    .service-link {
        font-size: 12px;
    }

    .service-tech-logos {
        grid-template-columns: repeat(2, auto);
        gap: 8px;
    }

    .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-section {
        padding: 48px 0;
    }

    .cta-title {
        font-size: 24px;
        line-height: 32px;
    }

    /* 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-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-heading {
        font-size: 15px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .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;
    }
}
