.solution-card-block.digital .arrow-line.xs.light-clr {
  background-color: #fff !important;
}

/* Keep Tech (Data Services) card text white (override inline JS styles) */
.solution-card-block.tech,
.solution-card-block.tech .sol-title,
.solution-card-block.tech .sol-subtext-wp,
.solution-card-block.tech .sol-subtext-wp div,
.solution-card-block.tech .button.tertiary-light {
  color: #fff !important;
}

.solution-card-block.tech .arrow-line.xs.light-clr {
  background-color: #fff !important;
}
/* ========================================
   9SERIES - AI-FIRST TECHNOLOGY PARTNER
   ======================================== */

/* ========================================
   1. ROOT VARIABLES & GLOBAL SETTINGS
   ======================================== */
:root {
    /* Colors from Figma */
    --primary-blue: #045de8;
    --secondary-blue: #527DFF;
    --light-blue: #85A3FF;
    --accent-blue: #B8C9FF;
    --blue-border: #e2e9ff;
    --dark-text: #222222;
    --gray-text: #4f4e4e;
    --white: #FFFFFF;
    --light-bg: #FFFFFF;
    --border-light: #E5E7EB;
    --yellow-accent: #FBBD23;
    --bar-height: 2.5rem;
    --nav-height: 3rem;
    --footer-bar-height: 3rem;
    
    /* Typography */
    --font-family: 'Lexend', sans-serif;
    
    /* Typography Scale - Improved for readability */
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-base: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 28px;
    --font-size-3xl: 32px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;
    --font-size-6xl: 60px;
    --font-size-7xl: 72px;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Spacing */
    --section-padding: 64px 0;
    --container-padding: 0 32px;
}

/* ========================================
   2. GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Ensure minimum font sizes for accessibility */
@media (max-width: 480px) {
    :root {
        --font-size-xs: 14px; /* Never go below 14px */
        --font-size-sm: 16px; /* Minimum readable size */
        --font-size-base: 16px; /* Standard body text */
        --font-size-lg: 18px;
        --font-size-xl: 20px;
        --font-size-2xl: 22px;
        --font-size-3xl: 24px;
        --font-size-4xl: 26px;
        --font-size-5xl: 28px;
        --font-size-6xl: 30px;
        --font-size-7xl: 32px;
    }
}

body {
    font-family: var(--font-family) !important;
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: var(--line-height-tight);
    margin-bottom: 1rem;
}

h1 {
    font-size: var(--font-size-6xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

h5 {
    font-size: var(--font-size-lg);
}

h6 {
    font-size: var(--font-size-base);
}

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
}

/* ========================================
   4. BUTTONS & INTERACTIVE ELEMENTS
   ======================================== */
.btn {
    font-family: var(--font-family);
    font-weight: 500;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1a4de6 0%, #4a70e6 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.3);
}

.btn-outline-primary {
    background: transparent;
    color: var(--dark-text);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(12px);
}

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

.btn-light {
    background: var(--white);
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
}

.btn-light:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

/* ========================================
   5. NAVIGATION
   ======================================== */
.navbar {
    background: var(--white);
    padding: 16px 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(249, 250, 251, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: var(--border-light);
    box-shadow: 0 2px 20px rgba(31, 87, 255, 0.1);
}

.navbar-brand .brand-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-text);
    text-decoration: none;
}

.brand-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: var(--gray-text);
    margin: 0 16px;
    transition: color 0.3s ease;
}

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

.cta-button {
    font-size: var(--font-size-xs);
    padding: 8px 16px;
    height: 40px;
}

/* ========================================
   6. HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    padding: 160px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #C8CDDB 0%, rgba(62, 110, 255, 0.1) 100%);
    opacity: 0.5;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
}

.blur-1 {
    width: 256px;
    height: 256px;
    background: rgba(130, 161, 255, 0.2);
    top: 80px;
    left: 80px;
}

.blur-2 {
    width: 384px;
    height: 384px;
    background: rgba(125, 157, 255, 0.2);
    top: 446px;
    right: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: rgba(31, 87, 255, 0.1);
    border: 1px solid rgba(31, 87, 255, 0.2);
    border-radius: 9999px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 24px;
}

.hero-title {
    font-size: var(--font-size-7xl);
    font-weight: 700;
    line-height: var(--line-height-tight);
    color: var(--dark-text);
    margin-bottom: 24px;
    text-align: center;
}

.title-line-1 {
    display: block;
}

.title-line-2 {
    display: block;
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-tight);
}

.hero-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--gray-text);
    text-align: center;
    margin-bottom: 32px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    height: 44px;
}

.service-tags-container {
    position: relative;
    margin-bottom: 24px;
    width: 100%;
    max-width: 885px;
    margin-left: auto;
    margin-right: auto;
}

.service-tags-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: #CCDAFF;
    z-index: 1;
}

.service-tags-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    padding-top: 28px;
}

.service-tag-group {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.service-tag {
    background: transparent;
    padding: 0;
    font-size: var(--font-size-base);
    font-weight: 700;
    color: var(--dark-text);
    white-space: nowrap;
    position: relative;
}

.tag-content {
    background: var(--light-bg);
    padding: 8px 16px;
    position: relative;
    z-index: 3;
}

.tag-underline {
    width: 100%;
    height: 2px;
    background: #CCDAFF;
    margin-top: 8px;
}

.tag-underline.active {
    background: #045DE8;
}

.service-tag.active .tag-content {
    color: #045DE8;
}

/* ========================================
   7. HERO STATS SECTION
   ======================================== */
.hero-stats {
    margin-top: 24px;
    padding: 0 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: var(--primary-blue);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: var(--line-height-snug);
}

.stat-label {
    font-size: var(--font-size-sm);
    font-weight: 400;
    color: var(--gray-text);
    line-height: var(--line-height-normal);
}

/* ========================================
   8. SECTION STYLES & LAYOUT
   ======================================== */
.section-header {
    margin-bottom: 64px;
    
}


.solutions-section .section-header {
    width: 10%;
    margin-bottom: 0px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 16px;
    background: rgba(31, 87, 255, 0.1);
    border: 1px solid rgba(31, 87, 255, 0.2);
    border-radius: 9999px;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 16px;
    width: fit-content;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--dark-text);
    margin-bottom: 16px;
    
}
.solutions-section .section-title {
    text-align: left;
    font-weight: 500;

}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-badge {
    color: var(--white);
    background-color: #2c7dff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.services-section .section-header {
    margin-bottom: 0px;
}
.services-section .section-description {
    margin-bottom: 0;
}

/* .client-section .section-title {
    color: var(--white);
} */

.section-description {
    font-size: 18px;
    line-height: var(--line-height-relaxed);
    color: var(--gray-text);
    opacity: 0.9;
    
}

.solutions-section .section-description {
    text-align: left;
}

.client-section .section-description {
    margin-bottom: 0px;
}

.services-section .section-description {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--white);
    opacity: 0.9;
}

/* ========================================
   9. SOLUTIONS SECTION
   ======================================== */
.solutions-section {
    padding: var(--section-padding);
    background: var(--light-bg);
    height: calc(100vh - 83px);
    min-height: calc(100vh - 83px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 64px;
}

/* Responsive header width within horizontal scroll group */
.solutions-scroll-group .section-header {
    flex: 0 0 25%;
    min-width: 500px;
}

@media (max-width: 1200px) {
    .solutions-scroll-group .section-header {
        flex-basis: 25%;
        min-width: 500px;
    }
}

@media (max-width: 992px) {
    .solutions-scroll-group .section-header {
        flex-basis: 25%;
        min-width: 500px;
    }
}

@media (max-width: 576px) {
    .solutions-scroll-group .section-header {
        flex-basis: 25%;
        min-width: 500px;
    }
}

.solution-title{
    font-size:20px !important;
    font-weight: 600;
    text-align: left;
    color: var(--dark-text);
}

.solutions-container {
    /* Default grid layout; overridden in horizontal mode by inline JS */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    justify-items: center;
}

.solutions-container-responsive {
    display: none;
}

/* Circular Solutions Layout */
.circular-solutions-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    margin: 100px 0;
    background: linear-gradient(135deg, #0F1729 0%, #1E293B 100%);
    border-radius: 20px;
    padding: 60px 40px;
}

.circular-center {
    position: relative;
    z-index: 10;
    text-align: center;
    background: radial-gradient(circle at center, #527DFF 0%, #1F57FF 100%);
    border-radius: 50%;
    width: 400px;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(31, 87, 255, 0.4);
    border: 6px solid rgba(255, 255, 255, 0.1);
}

.circular-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.circular-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.circular-items {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.circular-item {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 60px;
    padding: 20px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    cursor: pointer;
    min-width: 320px;
}

.circular-item:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 1);
}

.circular-number {
    background: linear-gradient(135deg, #1F57FF 0%, #527DFF 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(31, 87, 255, 0.4);
}

.circular-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.circular-content p {
    font-size: 16px;
    color: var(--gray-text);
    margin: 0;
    line-height: 1.4;
}

/* Position the circular items around the center - matching the image layout */
.circular-item[data-number="1"] {
    top: 15%;
    left: 10%;
    transform: translate(-50%, -50%);
}

.circular-item[data-number="2"] {
    top: 15%;
    right: 10%;
    left: auto;
    transform: translate(50%, -50%);
}

.circular-item[data-number="3"] {
    bottom: 15%;
    right: 10%;
    left: auto;
    top: auto;
    transform: translate(50%, 50%);
}

.circular-item[data-number="4"] {
    bottom: 15%;
    left: 10%;
    top: auto;
    transform: translate(-50%, 50%);
}

.solution-card-wide {
    background: rgba(31, 87, 255, 0.04);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(16, 38, 120, 0.04);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    height: fit-content;
    min-height: 300px;
    width: 100%;
    /* max-width: 400px; */
}
.solution-card {
    border: none;
    padding-top: 0px;
}
.solution-card-wide:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(16, 38, 120, 0.08);
}


.solution-card-wide:hover .solution-features {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.solution-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    text-align: center;
}

.solution-header {
    text-align: center;
}

.solution-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0;
    line-height: var(--line-height-snug);
}

.solution-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 0;
    margin-top: 6px;
    line-height: var(--line-height-normal);
}

.solution-description {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-relaxed);
    color: var(--gray-text);
    margin-bottom: 0;
    padding-top: 8px;
}

.solution-features {
    margin: 16px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-items: center;
    text-align: center;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 300px;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    margin: 8px 12px 0 0;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 4px;
    line-height: 1.52;
}

.feature-content p {
    font-size: 18px;
    line-height: 1.60;
    color: var(--gray-text);
    margin: 0;
    text-align: left;
}

.solution-btn a {
    color: var(--primary-blue);
    transition: transform 0.3s ease
}

.solution-btn a:hover {
    
    transform: translateY(-2px);
}

.solution-stats-overlay {
    background: #ffffff;
    border-radius: 12px;
    /* border: 1px solid var(--blue-border); */
    padding: 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    pointer-events: none;
    gap: 16px;
    min-height: 108px;
}

.stat-item {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 0;
    line-height: 1.48;
    text-align: center;
}

.stat-desc {
    font-size: 14px;
    font-weight: 300;
    color: var(--dark-text);
    line-height: 1.55;
    text-align: center;
    margin: 0;
}

/* ========================================
   10. AI FEATURES SECTION
   ======================================== */
.ai-features-section {
    position: relative;
    padding: var(--section-padding);
    margin-top: 64px;
    overflow: hidden;
}

.ai-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4eeff;
    z-index: -1;
}

.gradient-overlay-ai {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.ai-feature-card {
    height: 100%;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.10);
    box-shadow: 0px 8px 25px 0px rgba(31, 87, 255, 0.15);
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
}

.ai-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-blue);
}

.ai-feature-icon.predictive {
    background: rgba(31, 87, 255, 0.1);
}

.ai-feature-icon.automation {
    background: rgba(82, 125, 255, 0.1);
}

.ai-feature-icon.insights {
    background: rgba(133, 163, 255, 0.1);
}

.ai-feature-icon.security {
    background: rgba(133, 163, 255, 0.1);
}

.ai-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.4;
}

/* ========================================
   11. SERVICES SECTION
   ======================================== */
.services-section {
    padding: var(--section-padding);
    padding-top: 0 !important;
    padding-bottom: 0px !important;
    margin-top: 0 !important;
    background: var(--light-bg);
}

/* .service-card {
    background: var(--white);
    border: 1px solid #045de81c;
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(12px);
    height: 100%;
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
} */

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.service-card.ai-ml .service-icon {
    background: rgba(31, 87, 255, 0.1);
}

.service-card.digital-eng .service-icon {
    background: rgba(82, 125, 255, 0.1);
}

.service-card.cloud .service-icon {
    background: rgba(133, 163, 255, 0.1);
}
.service-card.data .service-icon {
    background: rgba(133, 163, 255, 0.1);
}



.service-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.service-subtitle {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-text);
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.service-features li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 8px;
    font-size: 12.7px;
    line-height: 1.58;
    color: var(--gray-text);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--gray-text);
    border-radius: 50%;
}

/* ========================================
   12. WHY SECTION
   ======================================== */
.why-section {
    position: relative;
    padding: var(--section-padding);
    overflow: hidden;
    /* height: calc(100vh - 83px);
    min-height: calc(100vh - 83px); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 64px;
}

.why-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #e4eeff;
    z-index: -1;
}

/* Responsive height adjustments for why-section */
@media (max-width: 1200px) {
    /* .why-section {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
    }
} */

/* @media (max-width: 992px) {
    .why-section {
        height: calc(100vh - 70px);
        min-height: calc(100vh - 70px);
    } */
}

@media (max-width: 576px) {
    .why-section {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    /* Further improve mobile card layout */
    .why-card {
        max-width: 100%;
        padding: 20px 16px;
    }
    
    .why-cards-container {
        gap: 16px;
        padding: 0 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .why-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
}

.gradient-overlay-why {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.why-cards-container {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
}

.why-card {
    border: 1px solid #d3e2ff;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.10);
    height: 100%;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(31, 87, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-blue);
}

.why-stat {
    font-size: 27.4px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}


.why-card h3 {
    font-size: 18.4px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.why-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--gray-text);
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   13. RESULTS SECTION
   ======================================== */
.results-section {
    position: relative;
    padding: var(--section-padding);
    margin-top: 64px;
    overflow: hidden;
}

.results-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    z-index: -1;
}

.gradient-overlay-results {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.result-card {
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.10);
    height: 100%;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.result-card:hover {
    transform: translateY(-5px);
}

.result-card h3 {
    font-size: 18.8px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
    line-height: 1.4;
}

.result-stats {
    display: none;
    justify-content: space-between;
    margin-bottom: 0;
    gap: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

/* Result Stats Overlay for Hover Effect */
.result-stats-overlay {
    background: rgba(249, 249, 251, 0.5);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(20px);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    pointer-events: none;
    opacity: 0;
    gap: 16px;
    height: 80px;
    width: 90%;
    max-width: 400px;
    z-index: 10;
}

.result-stat {
    text-align: center;
    flex: 1;
}

.result-stat .stat-number {
    font-size: 21.6px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.result-stat .stat-label {
    font-size: 12.9px;
    font-weight: 400;
    color: var(--gray-text);
    line-height: 1.55;
}

.result-card p {
    font-size: 14.4px;
    line-height: 1.67;
    color: var(--gray-text);
    margin-bottom: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Result Card Hover Effects */
.result-card:hover {
    transform: translateY(-5px);
}

.result-card:hover .result-stats-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
    pointer-events: auto;
}

.result-card:hover .result-stats {
    display: flex;
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    margin-bottom: 0;
}

.result-card:hover p {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.result-card:hover .result-tags {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.result-card:hover .read-more-btn {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}

.result-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tag {
    background: #FFFFFF;
    color: var(--dark-text);
    font-size: 11.1px;
    font-weight: 400;
    padding: 3px 11px;
    border-radius: 9999px;
    white-space: nowrap;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: none;
    background: none;
    padding: 0;
    float: right;
}

.read-more-btn:hover {
    color: var(--light-blue);
    text-decoration: none;
    transform: translateX(4px);
}

.read-more-btn i {
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(2px);
}

/* Mobile responsive for result stats overlay */
/* ========================================
   14. PROCESS SECTION
   ======================================== */
.process-section {
    padding: var(--section-padding);
    background: var(--light-bg);
    margin-top: 64px;
}

.process-badge {
    background: rgba(31, 87, 255, 0.1);
    border-color: rgba(31, 87, 255, 0.2);
    color: var(--primary-blue);
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.15);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(31, 87, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--primary-blue);
}

.process-number {
    position: absolute;
    top: -11px;
    right: -11px;
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.process-card h3 {
    font-size: 16.7px;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.process-card p {
    font-size: 12.1px;
    line-height: 1.65;
    color: var(--gray-text);
    margin: 0;
}

/* ========================================
   15. CTA SECTION
   ======================================== */
.cta-section {
    padding: var(--section-padding);
    background: var(--light-bg);
    margin-top: 64px;
}

/* Full Width CTA Section */
.cta-section-fullwidth {
    width: 100%;
    margin-top: 64px;
    padding: 0;
}

.cta-card-fullwidth {
    background: var(--primary-blue);
    width: 100%;
    padding: 48px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a4de6 100%);
    z-index: 1;
}

.cta-content-fullwidth {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content-fullwidth h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content-fullwidth p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-content-fullwidth .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* .cta-content-fullwidth .btn {
    height: 56px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
} */

.cta-content-fullwidth .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: white;
}

.cta-card {
    background: var(--primary-blue);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(31, 87, 255, 0.15);
    backdrop-filter: blur(12px);
}

.cta-content {
    padding: 0 266px;
}

.cta-card h2 {
    font-size: 33.3px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-card p {
    font-size: 18px;
    line-height: 1.56;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* ========================================
   16. FOOTER
   ======================================== */
.footer-section {
    background: var(--light-bg);
    padding: 0 0 24px 0;
}
.footer {
    background: var(--light-bg);
    padding: 49px 0 0 0px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    align-items: stretch;
    justify-content: space-between;
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    
}

.footer-brand .brand-logo {
    height: 40px;
    width: auto;
}

.footer-desc p {
    font-size: 14.6px;
    line-height: 1.64;
    color: var(--gray-text);
    margin: 0;
    max-width: 360px;
}

.footer-social {
    margin-top: 24px;
}

.social-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    margin: 0 0 12px 0;
}

.social-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--gray-text);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

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

.footer-title {
    font-size: 15.5px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.55;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    font-size: 14.4px;
    line-height: 1.67;
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    border: 0;
    height: 1px;
    background: var(--border-light);
    margin: 0;
    padding-top: 1px;
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 14.9px;
    line-height: 1.61;
    color: var(--gray-text);
    margin: 0;
}

/* Desktop footer distribution */
@media (min-width: 992px) {
    .footer-content {
        display: grid;
        grid-template-columns: 0.5fr 1fr;
        align-items: start;
        gap: 48px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-link {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 32px;
        align-items: start;
    }

    .footer-column {
        align-items: start;
    }
}

.footer-review{
    display: flex;
    flex-direction: row;
    gap: 8px;   
    border: 1px solid var(--border-light);
    padding: 8px 24px;
    justify-content: space-between;
    width: 220px;
    border-radius: 16px;
}
 
.clutch-rating-star{
    color: rgb(226, 226, 0);
}
.clutch-rating{
    display: flex;
    flex-direction: row;
    gap: 8px;
    font-weight: 600;
}
.clutch p{
    margin: 0;
}
 
.clutch{
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
}

/* ========================================
   17. RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    :root {
        --font-size-6xl: 52px;
        --font-size-7xl: 64px;
    }
    
    .cta-content {
        padding: 0 50px;
    }
    
    .service-tags-container {
        max-width: 600px;
    }
    
    .service-tags-wrapper {
        gap: 20px;
    }
    
    /* Solutions Section responsive height */
    .solutions-section {
        height: calc(100vh - 80px);
        min-height: calc(100vh - 80px);
        margin-top: 60px;
    }
    
    /* Responsive margins for all sections */
    .ai-features-section,
    .why-section,
    .results-section,
    .process-section,
    .cta-section,
    .awards-section {
        margin-top: 60px;
    }
}

@media (max-width: 1200px) {
    .solutions-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

@media (max-width: 992px) {
    :root {
        --font-size-4xl: 32px;
        --font-size-6xl: 44px;
        --font-size-7xl: 52px;
    }
    
    .service-tags-container {
        max-width: 100%;
    }
    
    .service-tags-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .service-tags-line {
        display: none;
    }
    
    .tag-underline {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .result-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .solution-card-wide {
        gap: 20px;
    }
    
    .solution-stats-overlay {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .stat-item {
        margin-bottom: 0;
    }
    
    .cta-content {
        padding: 0 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    /* Full width CTA responsive */
    .cta-card-fullwidth {
        padding: 48px 0;
    }
    
    .cta-content-fullwidth h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .cta-content-fullwidth p {
        font-size: 18px;
        margin-bottom: 28px;
    }
    
    .cta-content-fullwidth .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-content-fullwidth .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-brand-section {
        text-align: left;
    }
    
    /* Solutions Section responsive height for tablets */
    .solutions-section {
        height: calc(100vh - 70px);
        min-height: calc(100vh - 70px);
        margin-top: 50px;
    }
    
    /* Responsive margins for all sections - tablets */
    .ai-features-section,
    .why-section,
    .results-section,
    .process-section,
    .cta-section,
    .awards-section {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-2xl: 24px;
        --font-size-4xl: 28px;
        --font-size-6xl: 36px;
        --font-size-7xl: 42px;
        --font-size-lg: 18px;
    }
    
    .hero-section {
        padding: 120px 0 60px;
    }
    
    .hero-stats {
        margin-top: 40px;
    }
    
    .service-card {
        flex-direction: column;
    }
    
    .service-icon {
        margin: 0 auto 16px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: var(--font-size-xs);
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .service-tag-group {
        margin-bottom: 16px;
    }
    
    .tag-content {
        font-size: var(--font-size-sm);
        padding: 6px 12px;
    }
    
    .solutions-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .solution-card-wide {
        padding: 20px;
    }
    
    .solution-stats-overlay {
        padding: 12px;
    }
    
    .stat-item {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .footer-brand-section {
        order: -1;
    }
    
    /* Solutions Section responsive height for mobile */
    .solutions-section {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
        margin-top: 40px;
    }
    
    /* Responsive margins for all sections - mobile */
    .ai-features-section,
    .why-section,
    .results-section,
    .process-section,
    .cta-section,
    .awards-section {
        margin-top: 40px;
    }
    
    /* Solutions scroll group */
    .solutions-scroll-group .section-header {
        flex-basis: 25%;
        min-width: 500px;
    }
    
    /* Why section */
    .why-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    
    /* Ensure cards stack properly on mobile */
    .why-section .row {
        flex-direction: column;
    }
    
    .why-section .col-lg-4 {
        width: 100%;
        margin-bottom: 24px;
    }
    
    .why-section .col-lg-4:last-child {
        margin-bottom: 0;
    }
    
    /* Improve card appearance on mobile */
    .why-card {
        margin: 0 auto;
        max-width: 400px;
    }
    
    /* Ensure proper spacing between cards */
    .why-cards-container {
        gap: 20px;
        padding: 0  ;
    }
    
    /* Result stats */
    .result-stats {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        margin-bottom: 16px;
    }
    
    .result-stats-overlay {
        display: none;
    }
    
    .result-card:hover .result-stats {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .result-card:hover p {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .result-card:hover .result-tags {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .result-card:hover .read-more-btn {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    /* Ensure all image containers don't overflow */
    .platform-illust-cover,
    .circular-solutions-container,
    .sticky-slide,
    .service-card,
    .why-card,
    .result-card,
    .process-card,
    .ai-feature-card {
        overflow: hidden;
        max-width: 100%;
    }
    
    /* Information section */
    .information-section {
        padding: 60px 0;
    }
    
    .information-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .information-buttons {
        margin-bottom: 2.5rem;
    }
    
    .information-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0;
    }
    
    .service-tags-wrapper {
        gap: 1rem;
    }
    
    .tag-content {
        font-size: 0.875rem;
    }
    
    .info-stat-card {
        padding: 1.5rem 1rem;
    }
    
    .info-stat-number {
        font-size: 2rem;
    }
    
    /* Awards section */
    .awards-section {
        padding: 60px 0;
    }
    
    .award-item {
        padding: 0 20px;
        min-width: 140px;
    }
    
    .award-badge {
        max-width: 110px;
        max-height: 110px;
    }
    
    .soc-badge {
        max-width: 100px;
        max-height: 100px;
    }
    
    .awards-marquee-track {
        animation-duration: 35s;
    }
    
    /* Client section */
    .client-section {
        padding: 60px 0;
    }
    
    .client-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .client-tagline {
        font-size: 16px;
    }
    
    .client-logo {
        max-width: 100px;
        max-height: 50px;
    }
    
    .client-subtitle {
        font-size: 10px;
    }
    
    .client-item {
        padding: 0 25px;
        min-width: 150px;
    }
    
    .client-marquee-track {
        animation-duration: 25s;
    }
    
    /* Footer */
    .footer-review {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-title {
        text-align: left;
    }
    
    .footer-links {
        text-align: left;
        display: flex;
        justify-content: space-between;
    }
    
    /* Solutions container */
    .solutions-container {
        display: none !important;
    }
    
    .solutions-container-responsive {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 16px;
    }
    
    .solutions-container-responsive .solution-card-wide {
        width: 320px !important;
        min-width: 320px !important;
        max-width: 320px !important;
        flex-shrink: 0 !important;
        justify-content: space-between;
        border: 1px solid #f3f4ff;
        text-align: center;
        margin: 0 auto;
    }
    
    /* Show both features and stats on mobile by default since hover doesn't work well on touch devices */
    .solution-features {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    
    
    /* Circular Solutions Mobile Layout */
    .circular-solutions-container {
        min-height: 500px;
        margin: 60px 0;
        padding: 20px 15px;
        overflow: hidden;
    }
    
    .circular-center {
        width: 250px;
        height: 250px;
    }
    
    .circular-title {
        font-size: var(--font-size-xl);
    }
    
    .circular-item {
        min-width: 240px;
        padding: 12px 20px;
        gap: 12px;
    }
    
    .circular-number {
        width: 35px;
        height: 35px;
        font-size: var(--font-size-base);
    }
    
    .circular-content h4 {
        font-size: var(--font-size-base);
    }
    
    .circular-content p {
        font-size: var(--font-size-xs);
    }
    
    /* Fix platform illustration covers overflow on tablet */
    .platform-illust-cover {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-bottom: 20px;
    }
    
    .platform-illust-cover img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
    }
    
    /* Ensure platform main wrapper doesn't overflow */
    .platform-main-wp {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Fix any container overflow issues */
    .platform-main-illust-wp {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Advanced tab bar */
    .advncd-tbbr-outer-wrapper.home4c-sec {
        padding: 0;
        height: 100vh;
    }
    
    .mobile_nav_wrap {
        display: block;
    }
    
    .flex_row {
        gap: 30px;
        height: 100vh;
        padding: 10px 0;
    }
    
    .tb-image {
        width: 120px;
        height: 120px;
    }
    
    .tbttl {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .tab-link {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .tab-content-inner {
        padding: 20px;
    }
    
    .tab-content-inner h3 {
        font-size: var(--font-size-2xl);
    }
    
    .tab-content-inner p {
        font-size: var(--font-size-base);
    }
    
    /* Services section */
    .services-section {
        height: calc(100vh - 60px);
        min-height: calc(100vh - 60px);
    }
    .story-stats{
        height: 100% !important;
    }

    .solution-stats-overlay{
        flex-direction: column !important;
    }
    .why-card{
        max-width: 100% !important;
    }
    .why-cards-container{
        flex-direction: column;
    }
    
}

@media (max-width: 576px) {
    :root {
        --font-size-2xl: 20px;
        --font-size-4xl: 24px;
        --font-size-6xl: 28px;
        --font-size-7xl: 32px;
        --font-size-base: 16px;
        --font-size-lg: 18px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 8px 0;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Full width CTA mobile responsive */
    .cta-card-fullwidth {
        padding: 40px 0;
    }
    
    .cta-content-fullwidth h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .cta-content-fullwidth p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    /* .cta-content-fullwidth .btn {
        height: 48px;
        padding: 12px 24px;
        font-size: 14px;
    } */
    
    .service-tags-wrapper {
        flex-direction: column;
        gap: 10px;
    }
    
    .tag-content {
        font-size: var(--font-size-xs);
        padding: 4px 8px;
    }
    
    .solution-card-wide,
    .service-card,
    .result-card,
    .process-card {
        margin-bottom: 24px;
    }
    
    .solution-card-wide {
        padding: 16px;
        gap: 20px;
    }
    
    .solution-stats-overlay {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .stat-item {
        margin-bottom: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
    }
    
    .blur-1,
    .blur-2 {
        display: none;
    }
    
    /* Solutions Section responsive height for small mobile */
    .solutions-section {
        height: calc(100vh - 50px);
        min-height: calc(100vh - 50px);
        margin-top: 30px;
    }
    
    /* Responsive margins for all sections - small mobile */
    .ai-features-section,
    .why-section,
    .results-section,
    .process-section,
    .cta-section,
    .awards-section {
        margin-top: 30px;
    }
}

/* ========================================
   18. ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.hero-description,
.hero-buttons {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-description {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ===================================
   SCROLL ANIMATIONS
   =================================== */

/* Base animation classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all var(--scroll-anim-duration, 0.8s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Fallback: Ensure Proven Results section is always visible */
.section-header.animate-on-scroll {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Fallback: Ensure all animate-on-scroll elements are visible after 3 seconds */
.animate-on-scroll {
    animation: fallback-visible 0.1s ease-in-out 3s forwards;
}

@keyframes fallback-visible {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade in from left */
.animate-fade-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--scroll-anim-duration, 0.8s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.animate-fade-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--scroll-anim-duration, 0.8s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation */
.animate-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--scroll-anim-duration, 0.8s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Stagger animation for multiple elements */
.animate-stagger {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Animation delays for staggered effects */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.animate-delay-6 { transition-delay: 0.6s; }

/* Special animation for cards */
.card-animate {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: all var(--scroll-anim-duration, 0.8s) cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Section header animations */
.section-header.animate-on-scroll {
    transform: translateY(30px);
}

.section-header.animate-on-scroll.animate-in {
    transform: translateY(0);
}

/* Marquee animation enhancement */
.client-marquee-container.animate-on-scroll,
.awards-carousel-container.animate-on-scroll {
    transform: translateY(20px);
}

.client-marquee-container.animate-on-scroll.animate-in,
.awards-carousel-container.animate-on-scroll.animate-in {
    transform: translateY(0);
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

/* Optimize animations for better performance */
.client-logo, 
.award-badge,
.service-card,
.why-card,
.result-card,
.process-card,
.ai-feature-card,
.solution-card-wide {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0); /* Force hardware acceleration */
}

/* Optimize marquee animations */
.client-marquee-track,
.awards-marquee-track {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Remove will-change after animation completes to save memory */
.animate-in {
    will-change: auto;
}

/* Optimize images for performance */
img {
    loading: lazy;
    decoding: async;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    max-width: 100%;
    height: auto;
}

/* Prevent image overflow on mobile devices */
/* Critical images that should load immediately */
.hero-section img,
.navbar img,
.brand-logo {
    loading: eager !important;
}

/* Optimize video performance */
video {
    will-change: transform;
    backface-visibility: hidden;
}

/* GPU acceleration for smooth transitions */
.btn,
.nav-link,
.service-tag {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* ===================================
   SERVICES SECTION DIRECTIONAL ANIMATIONS
   =================================== */

/* Left side cards - slide in from left */
.animate-from-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-from-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Right side cards - slide in from right */
.animate-from-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-from-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Add staggered delays for better effect */

.service-card.animate-from-left:nth-of-type(2),
.service-card.animate-from-right:nth-of-type(2) {
    transition-delay: 0.3s;
}

/* ===================================
   ACCESSIBILITY ENHANCEMENTS
   =================================== */

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    /* Disable all scroll animations */
    .animate-on-scroll,
    .animate-fade-left,
    .animate-fade-right,
    .animate-scale,
    .animate-stagger,
    .card-animate,
    .animate-from-left,
    .animate-from-right {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Pause marquee animations */
    .client-marquee-track,
    .awards-marquee-track {
        animation-play-state: paused !important;
    }
    
    /* Disable hover animations */
    .service-card:hover,
    .why-card:hover,
    .result-card:hover,
    .process-card:hover,
    .ai-feature-card:hover,
    .award-badge-card:hover,
    .btn:hover,
    .client-logo:hover,
    .award-badge:hover {
        transform: none !important;
    }
    
    /* Remove smooth scrolling */
    html {
        scroll-behavior: auto !important;
    }
    
    /* Disable hero animations */
    .hero-badge,
    .hero-title,
    .hero-description,
    .hero-buttons {
        animation: none !important;
    }
}

/* Enhanced focus states for better accessibility */
.btn:focus,
.nav-link:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 1px var(--white), 0 0 0 4px var(--primary-blue);
}

/* Focus states for interactive elements */
.service-card:focus,
.why-card:focus,
.result-card:focus,
.process-card:focus,
.ai-feature-card:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-badge {
        border-width: 2px;
        font-weight: 700;
    }
    
    .btn {
        border: 2px solid;
    }
    
    .service-card,
    .why-card,
    .result-card,
    .process-card,
    .ai-feature-card {
        border-width: 2px;
    }
}

/* Screen reader only text */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Skip link for keyboard navigation */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
    outline: 2px solid var(--white);
}

/* Ensure sufficient color contrast */
.services-section 
.section-description,
.client-subtitle {
    color: var(--white); /* Darker gray for better contrast */
}

/* Focus management for marquee elements */
.client-item:focus,
.award-item:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Keyboard navigation improvements */
.navbar-nav .nav-link:focus {
    background-color: rgba(31, 87, 255, 0.1);
    border-radius: 4px;
}

/* Ensure interactive elements meet minimum size requirements */
/* .btn,
.nav-link {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
} */

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
    box-shadow: 0 0 0 1px var(--white), 0 0 0 4px var(--primary-blue);
}

/* Print styles */
@media print {
    .navbar,
    .hero-buttons,
    .cta-section {
        display: none;
    }
    
    .hero-section {
        padding: 20px 0;
    }
    
    * {
        background: transparent !important;
        color: black !important;
        box-shadow: none !important;
    }
}
.custom-padding {
    padding: 0 40px;
}

/* ===================================
   INFORMATION SECTION STYLES
   =================================== */

/* ========================================
   19. INFORMATION SECTION
   ======================================== */
.information-section {
    background-color: #e4eeff;
    padding: 80px 0;
    position: relative;
}

.information-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.information-buttons {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    
    
}

.information-btn-outline {
    background: white;
    border: 1px solid #e5e7eb;
    color: #374151;
}

.information-btn-outline:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    color: #374151;
}

/* Service Tags Styles */
.service-tags-container {
    margin-bottom: 4rem;
}

.service-tags-line {
    width: 100px;
    height: 2px;
    background: #e5e7eb;
    margin: 0 auto 2rem;
}

.service-tags-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-tag-group {
    position: relative;
}

.service-tag {
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-content {
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.service-tag.active .tag-content {
    color: #3b82f6;
}

.tag-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background 0.3s ease;
}

.tag-underline.active {
    background: #3b82f6;
}

.service-tag:hover .tag-content {
    color: #3b82f6;
}

/* Information Stats Styles */
.information-stats {
    margin-top: 3rem;
}

.info-stat-card {
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 8px 25px 0px rgba(31, 87, 255, 0.15);
    backdrop-filter: blur(12px);
    height: 100%;
}

.info-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.info-stat-icon {
    font-size: 24px;
    color: #045de8;
    text-align: center;
}

/* Remove individual icon colors - using uniform blue */

.info-stat-number {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 12px;
    margin-top: 8px;
}

.info-stat-label {
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
    width: 160px;
    text-align: center;
}

/* Responsive Design for Information Section */
/* ===================================
   AWARDS & RECOGNITION SECTION STYLES
   =================================== */

.awards-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

/* ========================================
   20. AWARDS SECTION
   ======================================== */
.awards-carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 0 0 20px 0;
    position: relative;
}

.awards-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
}

.awards-marquee-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
}


.award-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    min-width: 180px;
    flex-direction: column;
    gap: 10px;
}
.award-item p {
    margin-bottom: 0;
    width: 200px;
    text-align: center;
}
.award-badge {
    width: 180px;
    height: 180px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 15px rgba(31, 87, 255, 0.1));
}

.award-badge:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(31, 87, 255, 0.2));
}

/* Special styling for SOC badge (circular) */
.soc-badge {
    max-width: 220px;
    max-height: 220px;
}

/* Awards Marquee Animation Keyframes */
@keyframes awardsMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.awards-carousel-container:hover .awards-marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments for awards */
@media (max-width: 1024px) {
    .awards-section {
        padding: 60px 0;
    }
    
    .award-badge {
        width: 140px;
        height: 140px;
    }
    
    .soc-badge {
        max-width: 180px;
        max-height: 180px;
    }
    
    .award-item {
        padding: 0 20px;
        min-width: 160px;
    }
    
    .awards-marquee-track {
        gap: 15px;
        flex-wrap: nowrap;
        animation: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .awards-section {
        padding: 50px 0;
    }
    
    .award-badge {
        width: 120px;
        height: 120px;
    }
    
    .soc-badge {
        max-width: 160px;
        max-height: 160px;
    }
    
    .award-item {
        padding: 0 15px;
        min-width: 140px;
    }
    
    .awards-marquee-track {
        animation: marquee 25s linear infinite;
        animation-duration: 25s;
        gap: 10px;
        flex-wrap: nowrap;
        width: calc(200%);
    }
}

@media (max-width: 576px) {
    .awards-section {
        padding: 40px 0;
    }
    
    .award-item {
        padding: 0 8px;
        min-width: 100px;
    }
    
    .award-badge {
        width: 80px;
        height: 80px;
    }
    
    .soc-badge {
        max-width: 100px;
        max-height: 100px;
    }
    
    .awards-marquee-track {
        animation: marquee 18s linear infinite;
        animation-duration: 18s;
        gap: 6px;
        flex-wrap: nowrap;
        width: calc(200%);
    }
    
    .client-subtitle {
        font-size: 10px;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    .awards-section {
        padding: 25px 0;
    }
    
    .awards-carousel-container {
        overflow: hidden;
        padding: 0 10px 20px 10px;
    }
    
    .awards-marquee-track {
        flex-direction: column;
        gap: 20px;
        animation: none;
        transform: none;
        width: 100%;
    }
    
    .award-item {
        padding: 0;
        min-width: auto;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .award-badge {
        width: 100px;
        height: 100px;
        max-width: 100px;
        max-height: 100px;
    }
    
    .soc-badge {
        max-width: 120px;
        max-height: 120px;
    }
    
    .client-subtitle {
        font-size: 11px;
        line-height: 1.4;
        max-width: 180px;
        margin-top: 8px;
    }
    
    .award-item p {
        width: auto;
        max-width: 180px;
    }
}

/* ===================================
   CLIENT SECTION STYLES
   =================================== */

.client-section {
    background: var(--light-bg);
    padding: 48px 0; /* reduced spacing */
}

.client-tagline {
    font-size: 18px;
    color: var(--gray-text);
    font-weight: 400;
    margin-bottom: 8px;
}

.client-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 48px;
    line-height: 1.2;
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.client-subtitle {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    max-width: 200px;
}

/* ========================================
   21. CLIENT MARQUEE
   ======================================== */
.client-marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

.client-marquee {
    width: 100%;
    overflow: hidden;
}

.client-marquee-track {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: calc(200%);
    
}

.client-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    min-width: 200px;
}

/* Marquee Animation Keyframes */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover for better UX */
.client-marquee-container:hover .client-marquee-track {
    animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .client-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .client-logo {
        max-width: 120px;
        max-height: 60px;
    }
    
    .client-subtitle {
        font-size: 9px;
    }
    
    .client-item {
        padding: 0 20px;
        min-width: 120px;
    }
    
    .client-marquee-track {
        animation-duration: 20s;
    }
}


/* ===================================
   SAHIL UPDATED CSS
   =================================== */

   .solutions-container{
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
   }    

   .solution-card-wide{
    height: 100%;
    display: flex;
    flex-direction: column;
    
   }


   .stat-item {
    text-align: center;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
   }
   .custom-padding {
    padding: 0 0px;
}

.nav-padding{
    padding: 0 24px;
}

.information-description {
    margin-bottom: 24px;
}

.information-section
 {
    padding: 64px 0;
    
}

.information-buttons {
    margin-top: 32px;
    margin-bottom: 0;
}

.information-stats {
    margin-top: 32px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    padding: 0;
}

.information-card{

}

.info-stat-card {
    display: flex;
  flex-direction: column;
  width: 100%;           
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 8px 25px 0px rgba(31, 87, 255, 0.15);
  backdrop-filter: blur(12px);
  height: 100%;
  align-items: center;
}

.section-header{
    margin-bottom: 48px;
}
.client-section {
    padding: 48px 0 0 0 !important; /* reduced top spacing near solutions */
}

.awards-section {
    padding: 64px 0;
}

/* ========================================
   22. SCROLL STEPPER & VIDEO SWAPPING
   ======================================== */
.steps { position: relative; }
.scroll-step { height: 100vh; }

/* Optional: if your .video-container is absolutely positioned by Webflow,
   keep it that way; we'll pin via ScrollTrigger (JS), not CSS sticky. */
#heroVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Additional platform card styles for 5-card layout */
.about-card._4,
.about-card._5 {
    /* Cards 4 and 5 inherit all base styles from .about-card */
    display: inherit;
}

.platform-illust-cover.analytics {
    justify-content: flex-end;
    align-items: center;
}

.platform-illust-cover.security {
    justify-content: flex-start;
    align-items: flex-end;
}

/* Clean approach - let Webflow handle all animations naturally */
/* .platform-main-illust-wp {
    grid-row-gap: 4rem !important;
} */

/* Ensure new cards have proper background colors */
.platform-illust-cover.analytics {
    justify-content: flex-end;
    align-items: center;
}

.platform-illust-cover.security {
    justify-content: flex-start;
    align-items: flex-end;
}

/* ========================================
   23. TYPOGRAPHY IMPROVEMENTS
   ======================================== */
.service-card h3,
.why-card h3,
.result-card h3,
.process-card h3,
.ai-feature-card h3 {
    font-size: var(--font-size-xl) !important;
    line-height: var(--line-height-snug) !important;
}

.service-card p,
.why-card p,
.result-card p,
.process-card p {
    font-size: var(--font-size-sm) !important;
    line-height: var(--line-height-relaxed) !important;
}

/* Improve readability for small text elements */
.client-subtitle,
.award-subtitle,
.footer-links a,
.social-title {
    font-size: var(--font-size-xs) !important;
    line-height: var(--line-height-normal) !important;
}

/* Ensure proper spacing and readability */
.information-description {
    font-size: var(--font-size-lg) !important;
    line-height: var(--line-height-relaxed) !important;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature lists in service cards */
.service-features li {
    font-size: var(--font-size-sm) !important;
    line-height: var(--line-height-relaxed) !important;
    margin-bottom: 8px;
}




/* Result tags should be readable */
.result-tags .tag {
    font-size: 13px !important;
    padding: 4px 10px;
    font-weight: 400;
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
}

/* Improve mobile readability further */
@media (max-width: 480px) {
    .service-card,
    .why-card,
    .result-card,
    .process-card {
        padding: 20px 16px;
    }
    
    .solution-card-wide {
        padding: 20px 16px;
    }
    
    /* Ensure buttons are large enough for touch */
    .btn {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    /* Improve spacing for mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
}

.plat-illust{
    border-radius: 16px;
}


.platform-illust-cover  {
    transform: none !important;  /* Removes any inline transform Webflow might apply */
}

@media (max-width: 480px) {
    .circular-solutions-container {
        min-height: 400px;
        margin: 40px 0;
        padding: 20px 10px;
        overflow: hidden;
    }

    .circular-center {
        width: 200px;
        height: 200px;
    }

    .circular-title {
        font-size: var(--font-size-lg);
    }

    .circular-subtitle {
        font-size: var(--font-size-xs);
    }

    .circular-item {
        min-width: 200px;
        padding: 10px 16px;
        gap: 10px;
    }

    .circular-number {
        width: 30px;
        height: 30px;
        font-size: var(--font-size-sm);
    }

    .circular-content h4 {
        font-size: var(--font-size-sm);
    }

    .circular-content p {
        font-size: 12px;
    }

    /* Stack items vertically on very small screens */
    .circular-item[data-number="1"],
    .circular-item[data-number="2"],
    .circular-item[data-number="3"],
    .circular-item[data-number="4"] {
        position: static;
        transform: none;
        margin: 8px auto;
        display: flex;
    }

    .circular-items {
        position: static;
        transform: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    /* Fix platform illustration covers overflow on mobile */
    .platform-illust-cover {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        margin-bottom: 16px;
    }

    .platform-illust-cover img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        display: block;
    }

    /* Ensure platform main wrapper doesn't overflow */
    .platform-main-wp {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        gap: 0;
    }

    /* Fix any container overflow issues */
    .platform-main-illust-wp {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        gap: 40px;
    }
}

@media (max-width: 425px) {
    .information-section{
        padding: 32px 16px;
        margin-top: 64px !important;
    }
    .information-description{
        text-align: left;
    }
    .information-stats{
        flex-direction: column;
        margin-top: 24px;
    }
    .information-section .container{
        padding: 0;
    }
    .info-stat-icon{
        width: 24px;
        height: 24px;
    }
    .info-stat-card{
        padding: 16px;
        gap: 16px;
        box-shadow: 1px 4px 11px 0px rgba(31, 87, 255, 0.15);
    }
    .info-stat-number{
        margin-bottom: 8px;
    }
    .information-buttons{
        margin-top: 24px;
    }
    .information-buttons .btn{
        margin-bottom: 0px;
    }
    .platform-illust-cover{
        margin-bottom: 16px;
    }
    .platform-main-wp{
        gap: 0;
    }
    .cs-label{
        margin-bottom: 0;
        font-weight: 600;
        font-size: 18px;
    }
    .about-plat-wp{
        gap: 8px;
    }
    .about-body-text{
        line-height: 1.5;
        font-size: 18px;
    }
    .platform-main-illust-wp{
        gap: 40px;
    }
    .section-badge{
        font-weight: 600;
        margin-bottom: 12px;
    }
    .section-title{
        margin-bottom: 12px;
        font-size: var(--font-size-2xl);
    }
    .section-header{
        margin-bottom: 24px;
    }
    .section-description{
        font-size: var(--font-size-lg);
    }
    .service-card{
        box-shadow: 0px 5px 8px rgba(31, 87, 255, 0.08);
        border: 1px solid #f3f4ff;
    }

    /* Our services section REsponsive */
    .our-services-row{
        display: none !important;
    }
    .our-services-responsive{
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 16px;
    }
    .our-services-responsive .service-card{
        width: 320px;
        justify-content: space-between;
    }

    .our-services-responsive .service-card .service-icon{
        margin: 0 ;
    }
    .services-section{
        padding-bottom: 0 !important;
    }
    .footer-left{
        flex-direction: column;
        align-items: flex-start !important;
    }
    .footer-review{
        width: 100%;
        justify-content: space-around;
        gap: 16px;
    }
    .footer-link{
        flex-direction: column !important;
        gap: 24px !important;
    }
    .footer-column{
        gap: 12px;
    }
    .footer-title{
        font-size: 16px;
        font-weight: 600;
    }
    .footer-links a{
        font-size: 16px !important;
    }
    .story-stats{
        height: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
    }
    .story-stat{
        flex-direction: column !important;
        align-items: center !important;
    }
    .stat-value{
        text-align: left !important;
        margin-bottom: 8px !important;
    }
    .stat-label{
        text-align: center !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
        font-weight: 400 !important ;
    }
    .solution-card-w-responsive .hori-solutions{
        flex-direction: column !important;
    }
    .solution-card-w-responsive .solution-card{
        width: 100% !important;
    }
}


/* ===================================
   DYNA TECH 4C APPROACH SECTION
   =================================== */

/* DynaTech 4C Approach Section - CSS */
/* Based on the original DynaTech design */

/* Root Variables for DynaTech */
:root {
    --dynatech-blue: rgba(38, 51, 103, 1.0);
    --dynatech-light-blue: #9bcc66;
}

/* Main Section */
.advncd-tbbr-outer-wrapper.home4c-sec {
    position: relative;
    overflow: hidden;
    padding: 0;
    height: 100vh; /* Fixed viewport height */
    min-height: 100vh;
}

/* Animation Wrapper */
.start_animation,
.end_animation {
    position: absolute;
    width: 100%;
    height: 1px;
    z-index: 1;
}

.start_animation {
    top: 0;
}

.end_animation {
    bottom: 0;
}

/* Main Container */
.advncd-tbbr {
    position: relative;
    z-index: 2;
}

/* Top Section */
.top_section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1;
}

/* Outer Background */
.outer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.outer-background-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Animated Image Wraps */
.animate_img_wrap {
    position: absolute;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.animate_img_wrap.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 10;
}

.animate_img_wrap img {
    width: 100%;
    height: auto;
    max-width: 60px;
}

/* Position the floating elements */
.animate_img_wrap.odd {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.animate_img_wrap.even {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

/* Mobile Navigation */
.mobile_nav_wrap {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.mobile_nav_wrap.hide {
    display: none;
}

.mobile_nav {
    padding: 20px;
    text-align: center;
}

.mobile_nav .tbttl {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

/* Page Center */
.page-center {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flex Row */
.flex_row {
    display: flex;
    align-items: center;
    height: 100vh;
    gap: 60px;
    padding: 20px 0;
}

/* Left Column */
.col5 {
    flex: 0 0 40%;
    max-width: 40%;
}

.tab-lfsec {
    text-align: center;
}

.tb-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.tbttl {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
    line-height: 1.2;
}

/* Tab Links */
.tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.tab-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
}

.tab-link:hover {
    /* background: rgba(155, 204, 102, 0.2); */
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

.tab-link.active {
    background: var(--primary-blue);
    /* border-color: var(--dynatech-light-blue); */
    color: var(--white);
    transform: scale(1.1);
    /* box-shadow: 0 10px 30px rgba(155, 204, 102, 0.4); */
}

/* Right Column */
.col7 {
    flex: 0 0 60%;
    max-width: 60%;
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 4s ease;
}
.tab-content .btn{
    padding: 0;
    background-color: none !important;
    color: var(--primary-blue);
    min-height: 24px !important;
}
.tab-content .btn-outline-primary:hover {
    background: none;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.tab-content .btn-outline-primary{
    backdrop-filter: none;
    border: none;
}

/* Services Section Button Hover Effect */
.services-section .btn-outline-primary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.services-section .btn-outline-primary:hover {
    transform: translateY(-4px);
}

.services-section .btn-outline-primary:active {
    transform: translateY(-2px);
}

/* Button content animation */
.services-section .btn-outline-primary i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-section .btn-outline-primary:hover i {
    transform: translateX(2px);
}

.tab-content.current {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.tab-content-inner {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-content-inner h3 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.tab-content-inner p {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.tab-content-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tab-content-inner ul.list-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.tab-content-inner ul:not(.list-box) {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tab-content-inner li {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-content-inner li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tab-content-inner li:hover::before {
    left: 100%;
}

.tab-content-inner li:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.tab-content-inner li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tab-content-inner li a:hover {
    color: var(--dynatech-light-blue);
}

.tab-content-inner li strong {
    font-weight: 700;
}

/* Special styling for highlighted items */
.tab-content-inner li span[style*="color: #9bcc66"] {
    color: var(--dynatech-light-blue) !important;
}

.tab-content-inner li a[style*="color: #9bcc66"] {
    color: var(--dynatech-light-blue) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .flex_row {
        flex-direction: column;
        gap: 40px;
        height: 100vh;
        padding: 15px 0;
    }
    
    .col5,
    .col7 {
        flex: 1;
        max-width: 100%;
    }
    
    .tb-image {
        width: 150px;
        height: 150px;
    }
    
    .tbttl {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .tab-content-inner {
        padding: 30px;
    }
    
    .tab-content-inner ul.list-box {
        grid-template-columns: 1fr;
    }
    .footer-brand{
        text-align: left;
    }
    .social-title{
        text-align: left;
    }

    .footer-left{
        display: flex;
        justify-content: space-between;
    }
    .footer-link{
        display: flex
;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    }
    }
    

@media (max-width: 480px) {
    .advncd-tbbr-outer-wrapper.home4c-sec {
        padding: 0;
        height: 100vh;
    }
    
    .page-center {
        padding: 0 15px;
    }
    
    .flex_row {
        height: 100vh;
        padding: 5px 0;
    }
    
    .tb-image {
        width: 100px;
        height: 100px;
    }
    
    .tbttl {
        font-size: 20px;
    }
    
    .tab-link {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
    
    .tab-content-inner {
        padding: 15px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll-based Tab Switching Enhancements */
.advncd-tbbr-outer-wrapper.home4c-sec {
    scroll-behavior: smooth;
}

/* Enhanced tab content transitions for scroll switching */
.tab-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-content.current {
    opacity: 1;
    transform: translateY(0);
}

.tab-content:not(.current) {
    opacity: 0.7;
    transform: translateY(10px);
}

/* Smooth tab link transitions */
.tab-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Navigation System */
.modern-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

/* Progress Container */
.progress-container {
    width: 100%;
    max-width: 400px;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-blue), var(--dynatech-light-blue));
    border-radius: 2px;
    width: 25%;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Progress Dots */
.progress-dots {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    position: relative;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(155, 204, 102, 0.5);
}

.dot.active::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Floating Action Buttons */
.fab-container {
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    border-radius: 50px;

}

.fab {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 18px;
    color: var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.fab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.fab:hover::before {
    transform: translateX(100%);
}

.fab:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    color: var(--primary-blue);
    
}

.fab:active {
    transform: scale(0.95);
}

.fab:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.fab:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: none;
    box-shadow: none;
}

/* FAB Indicator */
.fab-indicator {
    width: 233px;
    text-align: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-service {
    font-size: 14px;
    font-weight: 600;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Styles */
.mobile-nav {
    gap: 20px;
    margin-top: 20px;
}

.mobile-progress {
    max-width: 300px;
}

.mobile-progress .progress-bar {
    height: 3px;
}

.mobile-progress .dot {
    width: 10px;
    height: 10px;
}

.mobile-fab {
    gap: 15px;
    padding: 6px 12px;
}

.mobile-fab .fab {
    width: 40px;
    height: 40px;
    font-size: 16px;
}

.mobile-fab .fab-indicator {
    min-width: 60px;
    padding: 6px 12px;
}

.mobile-fab .current-service {
    font-size: 12px;
}

/* Service Names - Defined in JavaScript */

/* Our Services Section Background Image */
.services-section {
    overflow: hidden;
    position: relative;
    height: calc(100vh - 83px);
    min-height: calc(100vh - 83px);
}

/* SVG Background with 10% opacity */
.services-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/9series-new/images/9series-pattern-white.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2; /* 10% opacity */
    z-index: 4;
    pointer-events: none;
}

/* Optional overlay for better text readability */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Dark overlay - adjust opacity as needed */
    z-index: 1;
    pointer-events: none;
}

/* Ensure content is above background */
.services-section .advncd-tbbr-outer-wrapper {
    position: relative;
    z-index: 2;
}

/* Alternative background styles for easy switching */
.services-section.bg-light::before {
    background: rgba(255, 255, 255, 0.1); /* Light overlay */
}

.services-section.bg-none::before {
    background: none; /* No overlay */
}

.services-section.bg-gradient::before {
    background: linear-gradient(135deg, rgba(155, 204, 102, 0.2), rgba(31, 87, 255, 0.2)); /* Gradient overlay */
}

/* Responsive height adjustments */
@media (max-width: 480px) {
    .services-section {
        height: calc(100vh - 50px);
        min-height: calc(100vh - 50px);
    }
}

.arrow-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 24px;
    color: var(--dark-text);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.arrow-btn:hover {
    background: rgba(155, 204, 102, 0.2);
    border-color: var(--primary-blue);
    transform: scale(1.1);
    color: var(--primary-blue);
}

.arrow-btn:active {
    transform: scale(0.95);
}

.arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.arrow-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-light);
    color: var(--dark-text);
    transform: none;
}

.tab-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.current-tab-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
}

.tab-separator {
    font-size: 18px;
    color: var(--dark-text);
    opacity: 0.6;
}

.total-tabs {
    font-size: 18px;
    color: var(--dark-text);
    opacity: 0.8;
}

/* Mobile Arrow Navigation */
.mobile-arrow-nav {
    gap: 20px;
    margin-top: 20px;
}

.mobile-arrow-nav .arrow-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.mobile-arrow-nav .tab-indicator {
    padding: 10px 16px;
}

.mobile-arrow-nav .current-tab-number {
    font-size: 20px;
}

.mobile-arrow-nav .tab-separator,
.mobile-arrow-nav .total-tabs {
    font-size: 16px;
}

.tab-link.current {
    transform: scale(1.1);
    /* box-shadow: 0 10px 30px rgba(155, 204, 102, 0.4); */
}

/* Enhanced animated image wraps for scroll switching */
.animate_img_wrap {
    transition: all 4s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate_img_wrap.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 10;
}

.animate_img_wrap:not(.active) {
    opacity: 0.3;
    transform: scale(0.8) translateY(20px);
    z-index: 1;
}

/* Scroll indicator for better UX */
/* .advncd-tbbr-outer-wrapper.home4c-sec::before {
    content: '';
    position: fixed;
    top: 50%;
    right: 20px;
    width: 4px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
} */

.advncd-tbbr-outer-wrapper.home4c-sec:hover::before {
    opacity: 1;
}

/* Scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #9bcc66, #1F57FF);
    transform-origin: left;
    transform: scaleX(0);
    z-index: 1001;
    transition: transform 0.1s ease;
}


.slide-in-left {
    animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s ease forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

* Container */
.service { justify-content: center; padding-top: 120px; padding-bottom: 120px; display: flex; }
.service-container { flex: 1; max-width: 1280px; margin-left: 40px; margin-right: 40px; }
.service-title { max-width: 642px; }

/* Cards */
.service-card { grid-column-gap: 32px; grid-row-gap: 32px; display: flex; position: relative; }
.service-card-inner { padding-bottom: 50px; }
.heading-02 { font-size: 56px; line-height: 1.1; font-weight: 800; color: var(--dark-text); }
.heading-05 { font-size: 20px; font-weight: 700; color: var(--dark-text); }
.heading-06-regular { font-size: 18px; color: #667085; }
.mt-8 { margin-top: 8px; }
.mt-32 { margin-top: 32px; }

/* Tags */
.service-tag-wrap { grid-column-gap: 12px; grid-row-gap: 12px; flex-wrap: wrap; justify-content: flex-start; align-items: center; width: 100%; margin-top: 24px; margin-bottom: 34px; text-decoration: none; display: flex; }
.service-tag { grid-column-gap: 8px; color: var(--gray); background-color: #fff; border: 1px solid #dcdcdc; border-radius: 12px; flex: 0 auto; justify-content: center; align-items: center; padding: 8px 12px; text-decoration: none; display: flex; }
.para-03-geist { font-size: 14px; color: var(--dark-text); }

/* Left number + line */
.service-float { grid-column-gap: 8px; grid-row-gap: 8px; color: var(--primary-blue); flex-flow: column; align-items: center; display: flex; }
.service-line { background-color: #d9d9d9; flex-flow: column; width: 1px; height: 100%; display: flex; position: relative; overflow: hidden; }
.service-line-inner { 
    background-color: var(--primary-blue); 
    width: 100%; 
    height: 0%; 
    position: absolute; 
    transition: height 0.2s ease-out;
}

/* Grid wrapper + sticky layers */
.service-card-list { grid-column-gap: 8px; grid-row-gap: 8px; grid-template-rows: auto auto; grid-template-columns: 1fr; grid-auto-columns: 1fr; max-width: 650px; display: grid; }
.service-list-wrapper { justify-content: space-between; align-items: flex-start; margin-top: 80px; display: flex; }
.service-layer { flex-flow: column; margin-top: 155px; display: flex; position: sticky; top: 40vh; }
.service-laer-img { filter: none; }
.layer-link { opacity: .3; margin-top: -140px; transition: opacity .2s; }
.layer-link.w--current { opacity: 1; }

/* Responsive */
@media (max-width: 991px){
  .service { padding-top: 100px; }
  .service-layer { display: none; }
}

@media (max-width: 479px){
  .service { padding-top: 80px; }
  .service-container { margin-left: 20px; margin-right: 20px; }
  .service-card { grid-column-gap: 16px; }
  .service-list-wrapper { margin-top: 60px; }
}

/* Number Box (Service Number) */
.number-box {
    text-align: center;
    width: 30px;
    height: 40px;
}

/* Service Card List Container */
.service-card-list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    max-width: 650px;
    display: grid;
}

/* Service List Wrapper */
.service-list-wrapper {
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 80px;
    display: flex;
}

/* Service Layer (Sticky Layer) */
.service-layer {
    flex-flow: column;
    margin-top: 155px;
    display: flex;
    position: sticky;
    top: 40vh;
}

.new-services-title{
    font-size: 36px;
    width: 100%;
}

/* service section v2 - REMOVED */


/* horizontal soltions  */
.hori-solutions{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.solutions-container-main{
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.solutions-container-main .section-header{

    display: flex;
    flex-direction: column;
}





/* Ensure the container takes full width and hides overflow */
.solutions-container {
    display: flex;
    overflow-x: hidden;        /* Prevent native horizontal scroll; GSAP controls movement */
    padding: 20px;
    gap: 32px;                 /* Space between the cards */
    align-items: center;
  }
  
  /* Ensure the solution cards don't shrink */
  .solution-card-wide {
    flex: 0 0 auto;             /* Prevent shrinking */
    width: 1000px;              /* Fixed width of the card */
    scroll-snap-align: start; 
    overflow: hidden;  /* Align each card when scrolling */
  }

  .solution-card-wide::after{content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
    border-radius: 10px;
}
  
  /* Optional: Add styles for scrolling experience */
  .solutions-container::-webkit-scrollbar {
    height: 8px;
  }
  
  .solutions-container::-webkit-scrollbar-thumb {
    background-color: #045de8;
    border-radius: 4px;
  }
  
  .solutions-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
  }
  

  .our-service-title{
    color: var(--white);
    padding: 6px 16px;
    border: 1px solid white;
    width: fit-content;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 14px;
  }

/* ===== STICKY SLIDES PLATFORM CARDS ===== */
@import 'https://unpkg.com/open-props' layer(design.system);

@import 'https://unpkg.com/open-props/normalize.light.min.css'
  layer(base.normalize);

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200..900&display=swap');

@layer base.override-normalize {
  :root {
    font-family: 'Inter', sans-serif;
    --surface-1: white;
    --text-1: black;
  }
}

@layer base.sticky-slides {
  .sticky-slides-container {
    height: 500vh;
    overflow-y: visible;
    scroll-snap-type: none;
    scroll-behavior: smooth;
    overscroll-behavior-block: auto;
    margin-left: -50vw;
    margin-right: -50vw;

    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
    &::-webkit-scrollbar {
      display: none;
    }

    & .sticky-slide {
      height: 100vh;
      /* width: 100%; */
      position: relative;
      top: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      scroll-snap-align: none;
      scroll-snap-stop: normal;
    }

    & img {
      /* width: 100%; */
      height: 100%;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .sticky-slides-controls {
      position: fixed;
      z-index: 1000;
      bottom: 50%;
      right: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      
      & button {
        background: transparent;
        border: none;
        color: rgba(255, 255, 255, 0.8);
        font-size: 2rem;
        cursor: pointer;
        transition: color 0.2s ease;
        padding: 0.5rem;

        &:hover {
          color: white;
        }
      }

      @media (max-width: 800px) {
        bottom: 5%;
        right: 1rem;
      }
    }

    .sticky-slides-progress {
      position: fixed;
      bottom: 0;
      left: 0;
      /* width: 100%; */
      height: 4px;
      background: rgba(255, 255, 255, 0.3);
      z-index: 1000;
      transform-origin: 0 50%;
    }

    .sticky-slide-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      backdrop-filter: blur(15px);
      color: var(--white) !important;
      border-radius: 20px;
      padding: 3rem;
      text-align: center;
    }

    .sticky-slide-title {
      color: var(--primary-colour-brand--primary-50);
      font-size: 2.5rem;
      color: var(--white) !important;
      font-weight: 700;
      margin: 0 0 1.5rem 0;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .sticky-slide-description {
      font-size: 1.2rem;
      line-height: 1.6;
      color: var(--white) !important;
      margin: 0;
      font-weight: 400;
    }
  }
}

/* param*/
/* Black hover effect for sticky slide images */
.sticky-slide {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 100vh;
}

.sticky-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.sticky-slide:hover::before {
  opacity: 1;
}

.sticky-slide img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sticky-slide:hover img {
  transform: scale(1.05);
}

.sticky-slide-content {
  z-index: 3;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sticky-slide:hover .sticky-slide-content {
  transform: translate(-50%, -50%) scale(1.1);
}

@layer animation.scroll-driven {
  .sticky-slides-container {
    scroll-timeline: none;

    .sticky-slides-button-up {
      animation: none;
    }

    .sticky-slides-button-down {
      animation: none;
    }

    .sticky-slides-progress {
      animation: none;
    }
  }

  @keyframes grow-progress {
    from {
      transform: scaleX(0);
    }
    to {
      transform: scaleX(1);
    }
  }

  @keyframes prev {
    from {
      visibility: hidden;
    }
  }

  @keyframes next {
    to {
      visibility: hidden;
    }
  }
}
/* Param*/

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

.result-content p{
    margin: 0;
}

/* Keep Digital card text white (override inline JS styles) */
.solution-card-block.digital,
.solution-card-block.digital .sol-title,
.button.tertiary-light {
  color: #fff !important;
}

/* Lottie fade default (re-enable) */
.journey-lottie {
  transition: opacity var(--scroll-anim-duration, 0.8s) ease, transform var(--scroll-anim-duration, 0.8s) ease;
}

/* Opt-in fade helper for lotties */
.lottie-fade { opacity: 0; transform: translateY(30px); }
.lottie-fade.animate-in { opacity: 1; transform: translateY(0); }
/* 1024px and below adjustments */
@media (max-width: 1024px) {
    .information-stats{
        flex-wrap: wrap;
        gap: 16px;
    }
    .information-card{
        flex: 1 1 48%;
    }
    .information-buttons{
        gap: 12px;
        
    }
    .information-buttons .btn{
        padding: 12px 16px;
        font-size: 16px;
    }
    .solutions-section{
        display: none !important;
    }
}
@media (min-width: 1025px) {
    .solution-sec-responsive{
        display: none !important;
    }
}

/* Make WHY section hug content below 1024px */
@media (max-width: 1024px) {
    .why-section {
        height: auto;
        min-height: auto;
        padding: 60px 0;
    }
    .why-section .row.g-4 { gap: 24px; }
    .why-card { max-width: 520px; margin-left: auto; margin-right: auto; }
}
/* 500px and below adjustments */
@media (max-width: 530px) {
    .information-buttons{
        flex-wrap: wrap;
    }
}
/* 320px and below adjustments */
@media (max-width: 320px) {
    .why-cards-container {
        gap: 24px;
        padding: 0 8px;
        flex-direction: column;
    }
    
    .why-card {
        min-width: auto;
        max-width: 100%;
        padding: 20px 16px;
    }
    
    .why-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .why-card p {
        font-size: 13px;
        line-height: 1.5;
    }
    
    .why-icon {
        width: 48px;
        height: 48px;
    }
    
    .why-icon i {
        font-size: 20px;
    }
    
    .information-stats{
        gap: 16px;
    }
    .info-stat-card{
        padding: 12px;
        gap: 12px;
    }
    .info-stat-number{
        margin-top: 4px;
        margin-bottom: 6px;
    }
    .info-stat-label{
        width: auto;
    }
    .information-buttons{
        margin-top: 24px;
    }
    .information-buttons .btn{
        padding: 10px 12px;
        font-size: 14px;
    }
    .client-title, .section-title, .is-feature-title{
        font-size: 20px;
        line-height: 32px;
    }


}

.features_image-wrapper{
    overflow: hidden;
}

.result-card::after{content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
    border-radius: 10px;
}


/* casestudy section responisive */

.success-stories-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    width: 100%;
}

.success-story-card {
    background: rgba(31, 87, 255, 0.04);
    border-radius: 10px;
    border: 1px solid var(--blue-border);
    padding: 25px;
    justify-content: space-between;
    transition: transform 0.3s ease;
    height: 100%;
    min-height: 476px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
    align-items: stretch;
}

.success-story-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #06b6d4, #10b981);
}


.story-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0px;
    line-height: 1.3;
}

.story-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-text);
    margin-bottom: 0;
    flex-grow: 1;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0px;
    align-items: center;
    justify-content: flex-start;
}

.story-tags .tag {
    background: white;
    color: var(--primary-blue);
    border: 1px solid var(--border-light);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    text-align: center;
    line-height: 1.2;
}

.story-stats {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--blue-border);
    padding: 24px;
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
    pointer-events: auto !important;
    height: 100px;
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
}

.story-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.story-stat .stat-value {
    font-size: 28px;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1;
}

.story-stat .stat-label {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.story-link {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: #3730a3;
    transform: translateX(4px);
}

.story-link::after {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.story-link:hover::after {
    transform: translateX(4px);
}


/* Results sections visibility */
#results-old {
    display: none;
}

#results-new {
    display: none;
}

@media (max-width: 1102px) {
    #results-new {
        display: block;
    }
    #results-new p{
        margin-bottom: 0px;
    }
}

@media (min-width: 1103px) {
    #results-old {
        display: block;
    }
}

/* Responsive: Success Stories 320px–1102px */
@media (max-width: 1102px) {
    .success-stories-cards {
        gap: 24px;
    }

    .success-story-card {
        padding: 20px;
        min-height: auto;
        gap: 16px;
    }

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

    .story-description {
        font-size: 16px;
    }

    .story-tags .tag {
        font-size: 14px;
        padding: 6px 12px;
    }

    .story-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 16px;
    }

    .story-stat .stat-value {
        font-size: 24px;
        font-weight: 400;
    }

    .story-stat .stat-label {
        font-size: 12px;
    }
    .solution-sec-responsive .stat-value{
        font-size: 22px !important;
        font-weight: 400;
    }
}

@media (max-width: 767px) {
    .success-stories-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .story-stats {
        grid-template-columns: 1fr;
    }
}


@media (min-width: 768px) and (max-width: 1024px) {
    .platform-illust-cover{
        width: 70%;
    }
    
    
}


.results-card{
    display: flex;
    flex-direction: column;
    gap: 16px    ;
}
.main-result-card{
    display: flex;
    flex-direction: row;
    gap: 16px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .story-stats{
        height: 240px !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 24px !important;
    }
    .story-stat{
        flex-direction: column !important;
        align-items: center !important;
    }
    .stat-value{
        text-align: left !important;
        margin-bottom: 8px !important;
        
    }
    .stat-label{
        text-align: center !important;
        font-size: 13px !important;
        line-height: 1.5 !important;
        font-weight: 400 !important ;
    }
    
}

.story-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: space-between;
}

.solution-card-container{
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.solution-sec-responsive{
    margin: 48px 0px 16px 0px;
}

.solution-sec-responsive .solution-card-wide{
    width: 100%;
}

.solution-card-w-responsive{
    background: rgba(31, 87, 255, 0.04);
    border: 1px solid var(--blue-border);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(16, 38, 120, 0.04);
    padding: 24px;
    transition: transform 0.3s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
    height: fit-content;
    min-height: 300px;
    width: 100%;
    
}

.solution-card-w-responsive .solution-card{
    width: 50%;
}

.solution-card-w-responsive .hori-solutions{
    flex-direction: row;
}

.solution-card-w-responsive .solution-stats-overlay{
    min-width: 50%;
}

/* ========================================
   WHY SECTION - RESPONSIVE LAYOUT
   ======================================== */
@media (max-width: 1024px) {
    .why-cards-container {
        gap: 20px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .why-cards-container {
        gap: 18px;
        padding: 0 16px;
    }
    .why-card h3 { font-size: 17px; }
    .why-card p { font-size: 14px; }
}

@media (max-width: 576px) {
    .why-cards-container {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 12px;
    }
}

/* ========================================
   SECTION ANIMATIONS
   ======================================== */

.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered animation for child elements */
.animate-section.animate-in .animate-delay-1 {
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.animate-section.animate-in .animate-delay-2 {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.animate-section.animate-in .animate-delay-3 {
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.animate-section.animate-in .animate-delay-4 {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Intersection Observer fallback for older browsers */
@media (prefers-reduced-motion: reduce) {
    .animate-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .animate-section.animate-in .animate-delay-1,
    .animate-section.animate-in .animate-delay-2,
    .animate-section.animate-in .animate-delay-3,
    .animate-section.animate-in .animate-delay-4 {
        animation: none;
    }
}


.hero-button{
    border: 1px solid #ffffff4a;
    background: rgba(255, 255, 255, 0);
}