.three-ps-card.procure {
    border: 3px solid #38bdf8 !important;
    box-shadow: 0 0 0 4px #e0f2fe !important;
}
.three-ps-card.prepare {
    border: 3px solid #34d399 !important;
    box-shadow: 0 0 0 4px #d1fae5 !important;
    /* Test border for debug */
    border-right: 8px solid red !important;
}

/* Debug: Make left accent border extremely visible */
.three-ps-card.prepare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 20px;
    background: #00ff00;
    border-radius: 20px 0 0 20px;
    z-index: 10;
    opacity: 0.8;
    pointer-events: none;
}

/* Prominent green left accent border using pseudo-element */
.three-ps-card.prepare::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 10px;
    background: #10b981;
    border-radius: 20px 0 0 20px;
    z-index: 2;
}
.three-ps-card.promote {
    border: 3px solid #fb7185 !important;
    box-shadow: 0 0 0 4px #ffe4e6 !important;
}
.three-ps-card {
    /* ...existing code... */
    background: #fff;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 24px 0 rgba(80, 112, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    flex: 1 1 320px;
    max-width: 400px;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

/* Unique color outlines and backgrounds for each card */
.three-ps-card.procure {
    border-color: #38bdf8;
    background: linear-gradient(135deg, #f0f9ff 60%, #e0f2fe 100%);
}
.three-ps-card.prepare {
    border-color: #34d399;
    background: linear-gradient(135deg, #f0fdf4 60%, #d1fae5 100%);
}
.three-ps-card.promote {
    border-color: #fb7185;
    background: linear-gradient(135deg, #fff1f2 60%, #ffe4e6 100%);
}

.three-ps-card:hover {
    /* ...existing code... */
    box-shadow: 0 8px 32px 0 rgba(80, 112, 255, 0.16);
}

/* ...existing code... */
/* 3Ps Approach Section Outline Box Styling */
.three-ps-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.three-ps-card {
    background: #fff;
    border: 2px solid #e0e7ff;
    box-shadow: 0 4px 24px 0 rgba(80, 112, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    flex: 1 1 320px;
    max-width: 400px;
    transition: box-shadow 0.2s, border-color 0.2s;
    position: relative;
}

.three-ps-card:hover {
    border-color: #a78bfa;
    box-shadow: 0 8px 32px 0 rgba(80, 112, 255, 0.16);
}

.three-ps-card h2, .three-ps-card h3 {
    margin-top: 1.2rem;
    margin-bottom: 0.8rem;
}

.three-ps-card ul {
    margin-top: 1rem;
    padding-left: 1.2rem;
}

.three-ps-card li {
    margin-bottom: 0.5rem;
    color: #6b7280;
    font-size: 1rem;
}

.three-ps-card .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.three-ps-card .label {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.2rem 0.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    background: #f3f4f6;
    color: #6366f1;
}

.three-ps-card .label.prepare {
    background: #d1fae5;
    color: #10b981;
}
.three-ps-card .label.promote {
    background: #fee2e2;
    color: #ef4444;
}

@media (max-width: 1100px) {
    .three-ps-section {
        flex-direction: column;
        align-items: center;
    }
    .three-ps-card {
        max-width: 90vw;
        margin-bottom: 2rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563eb;
    --primary-purple: #8b5cf6;
    --primary-green: #10b981;
    --primary-red: #ef4444;
    --primary-pink: #ec4899;
    --primary-teal: #14b8a6;
    --primary-cyan: #06b6d4;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --light-purple: #ede9fe;
    --light-green: #d1fae5;
    --light-red: #fee2e2;
    --light-pink: #fce7f3;
    --light-teal: #ccfbf1;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    padding-top: 76px;
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Performance optimization */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background floating elements removed to show background image */

body::after {
    display: none;
}

/* Floating elements hidden to show background image */
.bg-floating-elements {
    display: none;
}



/* Floating background cards hidden */
.bg-card-500,
.bg-card-200,
.bg-card-tech {
    display: none;
}

/* Background circles hidden */
.bg-circle-1,
.bg-circle-2,
.bg-circle-3 {
    display: none;
}

/* Disabled animations for better performance */
@keyframes blobFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px 2px 0 0;
}

.nav-link,
.nav a {
    text-decoration: none !important;
}

/* Dropdown Navigation */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 12px;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, margin-top 0.3s;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

.dropdown-item {
    display: flex;
    gap: 16px;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s;
    margin-bottom: 4px;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: #f8f9fa;
}

.dropdown-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.dropdown-item-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

.btn-touch {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-touch:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-touch svg {
    width: 18px;
    height: 18px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 60px 0 80px;
    background: none;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    top: 60px;
    right: 45%;
}

.circle-2 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.06) 0%, transparent 70%);
    border: 1px solid rgba(20, 184, 166, 0.12);
    bottom: 40px;
    right: 5%;
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
    border: 1px solid rgba(168, 85, 247, 0.12);
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
}

.hero::before {
    display: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f5f7ff;
    color: #2563eb;
    font-weight: 500;
    border-radius: 24px;
    padding: 12px 28px;
    margin-bottom: 32px;
    font-size: 16px;
    box-shadow: 0 6px 24px 0 rgba(37,99,235,0.10);
    filter: drop-shadow(0 2px 12px rgba(139,92,246,0.08));
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    min-height: 220px;
}

.hero-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.brand-text {
    color: var(--primary-blue);
}

.purple-text {
    color: var(--primary-purple);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.btn {
    padding: 15px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: #2563eb;
    color: white;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
}

.btn-secondary {
    background: white;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
}

.btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #f8fafc;
}

.hero-secondary-rounded {
    border-radius: 12px;
    padding-inline: 32px;
}

.hero-pagination {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.hero-pagination .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-pagination .dot.active {
    background: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}

.hero-cards {
    position: relative;
    min-width: 500px;
    min-height: 450px;
}

.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.circle-blue {
    width: 80px;
    height: 80px;
    border-color: rgba(96, 165, 250, 0.4);
    top: 10px;
    left: 100px;
}

.circle-green {
    width: 100px;
    height: 100px;
    border-color: rgba(52, 211, 153, 0.4);
    bottom: 80px;
    right: 30px;
}

.stat-card {
    padding: 30px 35px;
    border-radius: 24px;
    width: 220px;
    position: absolute;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    z-index: 1;
}

.stat-card:nth-child(3) {
    top: 0;
    right: 0;
    transform: rotate(-8deg);
}

.stat-card:nth-child(4) {
    top: 120px;
    left: 0;
    transform: rotate(5deg);
}

.stat-card:nth-child(5) {
    bottom: 0;
    right: 80px;
    transform: rotate(-5deg);
}

.stat-card:hover {
    transform: translateY(-10px) rotate(0deg) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.card-blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
}

.card-green {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
}

.card-red {
    background: linear-gradient(135deg, #fb923c 0%, #ec4899 100%);
    color: white;
}

.card-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
}

.card-label {
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.3px;
    margin-bottom: 0;
}

.card-icon {
    display: none;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.why-choose-section .section-header h2 {
    color: #0f172a;
}

.why-choose-section .section-header .purple-text {
    color: #7c3aed;
}

.why-choose-section .section-header .section-subtitle {
    color: #475569;
}
.why-choose-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 50%, rgba(236, 72, 153, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.why-choose-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.why-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 28px 24px 24px 24px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.why-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.why-card:nth-child(2) {
    border-right-color: rgba(236, 72, 153, 0.55);
}

.why-card:nth-child(3) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.why-card:nth-child(4) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

.why-card:nth-child(5) {
    border-right-color: rgba(6, 182, 212, 0.55);
}

/* Staggered vertical positioning */
.why-card:nth-child(2),
.why-card:nth-child(4) {
    margin-top: 30px;
}

.why-card:nth-child(1),
.why-card:nth-child(3),
.why-card:nth-child(5) {
    margin-top: -10px;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.why-icon.icon-purple {
    background: transparent;
    color: var(--primary-purple);
}

.why-icon.icon-pink {
    background: transparent;
    color: var(--primary-pink);
}

.why-icon.icon-teal {
    background: transparent;
    color: var(--primary-teal);
}

.why-icon.icon-cyan {
    background: transparent;
    color: var(--primary-cyan);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.3;
}

.why-card:nth-child(1) h3 {
    color: #2563eb;
}

.why-card:nth-child(2) h3 {
    color: #db2777;
}

.why-card:nth-child(3) h3 {
    color: #0f766e;
}

.why-card:nth-child(4) h3 {
    color: #7c3aed;
}

.why-card:nth-child(5) h3 {
    color: #0284c7;
}

.why-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0;
}

/* 3Ps Approach Section */
.approach-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
}

.section-tag {
    color: var(--primary-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.why-choose-section .section-tag,
.enterprise-section .section-tag,
.platforms-section .section-tag {
    color: var(--primary-purple);
}
.approach-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.approach-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 6px solid rgba(37, 99, 235, 0.35);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.approach-card:nth-child(1) {
    border-left-color: rgba(37, 99, 235, 0.5);
}

.approach-card:nth-child(2) {
    border-left-color: rgba(16, 185, 129, 0.5);
}

.approach-card:nth-child(3) {
    border-left-color: rgba(239, 68, 68, 0.5);
}

.approach-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.approach-card:nth-child(1):hover {
    border-left-color: rgba(37, 99, 235, 0.85);
}

.approach-card:nth-child(2):hover {
    border-left-color: rgba(16, 185, 129, 0.85);
}

.approach-card:nth-child(3):hover {
    border-left-color: rgba(239, 68, 68, 0.85);
}

.approach-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 12px 0;
}

.icon-symbol {
    font-size: 32px;
    padding: 10px;
    border-radius: 12px;
}

.icon-blue .icon-symbol {
    background: transparent;
}

.icon-green .icon-symbol {
    background: transparent;
}

.icon-red .icon-symbol {
    background: transparent;
}

.icon-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.badge-blue {
    background: var(--primary-blue);
}

.badge-green {
    background: var(--primary-green);
}

.badge-red {
    background: #fef2f2;
    color: #dc2626;
}

.approach-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}

.approach-card:nth-child(1) h3 {
    color: #1d4ed8;
}

.approach-card:nth-child(2) h3 {
    color: #059669;
}

.approach-card:nth-child(3) h3 {
    color: #dc2626;
}

.approach-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.approach-card:nth-child(1) p {
    color: #1e40af;
}

.approach-card:nth-child(2) p {
    color: #047857;
}

.approach-card:nth-child(3) p {
    color: #b91c1c;
}
.approach-card ul {
    list-style: none;
    margin-bottom: 20px;
}

.approach-card ul li {
    padding: 8px 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 25px;
}

.approach-card ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--primary-purple);
    font-weight: bold;
    font-size: 20px;
}

.learn-more {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-bottom: 0;
    margin-top: auto;
    display: inline-block;
}

.learn-more:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Enterprise Section */
.enterprise-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.enterprise-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.enterprise-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    transition: all 0.3s;
}

.enterprise-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.enterprise-card:nth-child(2) {
    border-right-color: rgba(236, 72, 153, 0.55);
}

.enterprise-card:nth-child(3) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.enterprise-card:nth-child(4) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

/* Staggered vertical positioning */
.enterprise-card:nth-child(1),
.enterprise-card:nth-child(3) {
    margin-top: -15px;
}

.enterprise-card:nth-child(2),
.enterprise-card:nth-child(4) {
    margin-top: 25px;
}

.enterprise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.enterprise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.icon-purple {
    background: transparent;
}

.icon-pink {
    background: transparent;
}

.icon-teal {
    background: transparent;
}

.icon-purple-light {
    background: transparent;
}

.icon-cyan {
    background: transparent;
}

.enterprise-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.enterprise-card:nth-child(1) h3 {
    color: #1d4ed8;
}

.enterprise-card:nth-child(2) h3 {
    color: #db2777;
}

.enterprise-card:nth-child(3) h3 {
    color: #0f766e;
}

.enterprise-card:nth-child(4) h3 {
    color: #7c3aed;
}

.enterprise-card p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Platforms Section */
.platforms-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.platform-card {
    background: white;
    padding: 30px 25px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.platform-card:nth-child(1) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.platform-card:nth-child(2) {
    border-left-color: rgba(236, 72, 153, 0.55);
}

.platform-card:nth-child(3) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.platform-card:nth-child(4) {
    border-left-color: rgba(168, 85, 247, 0.55);
}

.platform-card:nth-child(5) {
    border-left-color: rgba(6, 182, 212, 0.55);
}

.platform-card:hover {
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.platform-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.platform-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
}

.platform-card:nth-child(1) h3 {
    color: #2563eb;
}

.platform-card:nth-child(2) h3 {
    color: #db2777;
}

.platform-card:nth-child(3) h3 {
    color: #0f766e;
}

.platform-card:nth-child(4) h3 {
    color: #7c3aed;
}

.platform-card:nth-child(5) h3 {
    color: #0284c7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.testimonial-card-featured {
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-left: 4px solid #06b6d4;
}

.testimonial-card:nth-child(2) {
    border-left-color: var(--primary-purple);
}

.testimonial-card:nth-child(3) {
    border-left-color: var(--primary-green);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.quote-icon {
    font-size: 48px;
    margin-bottom: 15px;
    color: #06b6d4;
    opacity: 0.3;
    line-height: 1;
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 16px;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 14px;
    margin-top: 2px;
}


/* Core Capabilities Section */
.core-capabilities-section {
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}

.core-capabilities-section .section-header {
    margin-bottom: 30px;
}

.capabilities-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0 20px 50px;
}

.capability-item {
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: default;
}

.capability-purple {
    color: #8b5cf6;
}

.capability-pink {
    color: #ec4899;
}

.capability-orange {
    color: #f97316;
}

.capability-blue {
    color: #3b82f6;
}

.capability-indigo {
    color: #6366f1;
}

.capability-separator {
    font-size: 18px;
    color: var(--text-gray);
    opacity: 0.5;
}

.capability-bar {
    display: flex;
    width: 100%;
    height: 8px;
}

.bar-segment {
    flex: 1;
}

.bar-purple {
    background: linear-gradient(90deg, #8b5cf6 0%, #a78bfa 100%);
}

.bar-pink {
    background: linear-gradient(90deg, #ec4899 0%, #f472b6 100%);
}

.bar-orange {
    background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}

.bar-blue {
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 100%);
}

.bar-indigo {
    background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
}

/* About Page */
.about-hero {
    position: relative;
    padding: 40px 0;
    background: transparent;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.about-hero-bg-circle {
    display: none;
}

.about-circle-1,
.about-circle-2,
.about-circle-3 {
    display: none;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.about-hero-text {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.about-stat-label {
    font-size: 15px;
    color: #64748b;
    font-weight: 500;
}

.about-hero-badge {
    background: #eef2ff;
    color: #4f46e5;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-hero-title br {
    display: block;
    content: "";
}

.about-hero-title .brand-text {
    color: #8b5cf6;
}

.about-hero-subtitle {
    font-size: 18px;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto 32px auto;
    line-height: 1.7;
}

.about-hero .hero-buttons {
    justify-content: center;
}

.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
    justify-content: center;
}

.about-stat-card {
    background: white;
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    backdrop-filter: blur(10px);
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}

.about-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-stat-purple {
    background: white;
    border-left-color: rgba(99, 102, 241, 0.55);
}

.about-stat-green {
    background: white;
    border-left-color: rgba(20, 184, 166, 0.55);
}

.about-stat-orange {
    background: white;
    border-left-color: rgba(249, 115, 22, 0.55);
}

.about-stat-icon {
    font-size: 32px;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.about-section {
    padding: 80px 0;
    position: relative;
    background: transparent;
}

.about-section + .about-section {
    margin-top: -30px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 22px;
}

.about-card {
    background: transparent;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: none;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
    background: transparent;
}

.about-card-blue {
    background: transparent;
}

.about-card-green {
    background: transparent;
}

.about-card-orange {
    background: transparent;
}

/* How We Work cards */
.how-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
    max-width: 1040px;
    margin: 28px auto 0;
}

.how-card {
    position: relative;
    min-height: 230px;
    border-radius: 32px;
    padding: 28px 26px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.how-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 10% 0%, rgba(129, 140, 248, 0.15), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.how-card-blue {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border-color: #bfdbfe;
    border-left-color: rgba(59, 130, 246, 0.55);
}

.how-card-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #bbf7d0;
    border-left-color: rgba(20, 184, 166, 0.55);
}

.how-card-orange {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-color: #fed7aa;
    border-left-color: rgba(249, 115, 22, 0.55);
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.how-card:hover::before {
    opacity: 1;
}

.how-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-card-blue h3 {
    color: #3b82f6;
}

.how-card-green h3 {
    color: #14b8a6;
}

.how-card-orange h3 {
    color: #f97316;
}

.how-card p {
    font-size: 14px;
    color: var(--text-gray);
    max-width: 270px;
}

.how-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 22px;
    background: #111827;
    color: #ffffff;
}

.how-icon-blue {
    background: transparent;
}

.how-icon-green {
    background: transparent;
}

.how-icon-orange {
    background: transparent;
}

.story-timeline {
    max-width: 840px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.story-step {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(88, 28, 135, 0.35);
}

.story-icon-purple {
    background: transparent;
}

.story-icon-green {
    background: transparent;
}

.story-icon-orange {
    background: transparent;
}

.story-card {
    background: #ffffff;
    border-radius: 999px;
    padding: 18px 32px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    min-width: 0;
    max-width: 620px;
}

.story-card-purple {
    background: linear-gradient(135deg, #e0edff 0%, #e0f7ff 100%);
}

.story-card-green {
    background: linear-gradient(135deg, #d1fae5 0%, #e0f2fe 100%);
}

.story-card-orange {
    background: linear-gradient(135deg, #fee2e2 0%, #fff7ed 100%);
}

.story-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.story-step-left .story-icon {
    margin-right: 18px;
    transform: translateX(-18px);
}

.story-step-right {
    flex-direction: row-reverse;
}

.story-step-right .story-icon {
    margin-left: 18px;
    transform: translateX(18px);
}

.story-bottom-grid {
    max-width: 900px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.story-bottom-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px 22px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

.story-bottom-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.story-bottom-card:nth-child(2) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

.story-bottom-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.story-bottom-card:nth-child(1) h3 {
    color: #3b82f6;
}

.story-bottom-card:nth-child(2) h3 {
    color: #a855f7;
}

.story-bottom-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.about-values {
    background: transparent;
}

.values-grid {
    max-width: 1040px;
    margin: 32px auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 24px;
}

.value-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 26px;
    padding: 22px 24px 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.value-card:nth-child(2) {
    border-right-color: rgba(99, 102, 241, 0.55);
}

.value-card:nth-child(3) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.value-card:nth-child(4) {
    border-right-color: rgba(249, 115, 22, 0.55);
}

.value-card:nth-child(5) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

.value-card:nth-child(6) {
    border-right-color: rgba(6, 182, 212, 0.55);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.value-card:nth-child(1) h3 {
    color: #3b82f6;
}

.value-card:nth-child(2) h3 {
    color: #6366f1;
}

.value-card:nth-child(3) h3 {
    color: #14b8a6;
}

.value-card:nth-child(4) h3 {
    color: #f97316;
}

.value-card:nth-child(5) h3 {
    color: #a855f7;
}

.value-card:nth-child(6) h3 {
    color: #06b6d4;
}

.value-card p {
    font-size: 14px;
    color: var(--text-gray);
}

.value-icon {
    width: 40px;
    height: 40px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    color: #4f46e5;
}

.value-icon-shield {
    background: transparent;
}

.value-icon-lightbulb {
    background: transparent;
}

.value-icon-eye {
    background: transparent;
}

.value-icon-heart {
    background: transparent;
}

.value-icon-star {
    background: transparent;
}

.value-icon-link {
    background: transparent;
}

.about-cta {
    padding: 70px 0 90px;
    background: transparent;
}

.about-cta-centered {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.about-cta-centered h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.about-cta-centered p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.cta-pill-button {
    padding: 12px 40px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(90deg, #2563eb 0%, #4f46e5 50%, #22c55e 100%);
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-pill-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.45);
}

/* Culture cards */
.culture-grid {
    max-width: 1040px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.culture-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    text-align: left;
    transition: all 0.3s ease;
}

.culture-card:nth-child(1) {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.culture-card:nth-child(2) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.culture-card:nth-child(3) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.culture-card:nth-child(4) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.culture-icon {
    font-size: 24px;
    margin-bottom: 14px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: transparent;
}

.culture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.08);
}

.culture-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.culture-card:nth-child(1) h3 {
    color: #6366f1;
}

.culture-card:nth-child(2) h3 {
    color: #14b8a6;
}

.culture-card:nth-child(3) h3 {
    color: #3b82f6;
}

.culture-card:nth-child(4) h3 {
    color: #f97316;
}

.culture-card p {
    font-size: 14px;
    color: var(--text-gray);
}

/* About responsive */
@media (max-width: 968px) {
    .about-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .about-hero-stats {
        flex-direction: row;
    }

    .how-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .values-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .culture-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 34px;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    .about-hero-stats {
        width: 100%;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1e3a8a;
    color: white;
    padding: 50px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.8fr;
    gap: 60px;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 769px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1.8fr !important;
    }
}

.footer-brand h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #60a5fa;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 18px;
    opacity: 0.9;
    font-weight: 400;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.75;
    margin-bottom: 12px;
    max-width: 320px;
}

.footer-copyright {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 12px;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.quick-links-list {
    display: block;
}

.quick-links-list li {
    width: 100%;
    margin-bottom: 10px;
}

.footer-contact {
    margin-left: 28px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: white;
    transform: translateX(3px);
}

.contact-list li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-top: 0;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0.75;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links span {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */

/* ===================== HAMBURGER MENU ===================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== TABLET: 968px ===================== */
@media (max-width: 968px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-pagination {
        justify-content: center;
    }

    .hero-cards {
        min-width: unset;
        min-height: 300px;
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
    }

    .stat-card {
        width: 180px;
        padding: 22px 28px;
    }

    .card-number {
        font-size: 36px;
    }

    .stat-card:nth-child(3) {
        top: 0;
        right: 10%;
    }

    .stat-card:nth-child(4) {
        top: 120px;
        left: 5%;
    }

    .stat-card:nth-child(5) {
        bottom: 10px;
        right: 15%;
    }

    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-card:nth-child(2),
    .why-card:nth-child(4) {
        margin-top: 0;
    }

    .why-card:nth-child(1),
    .why-card:nth-child(3),
    .why-card:nth-child(5) {
        margin-top: 0;
    }

    .enterprise-card:nth-child(1),
    .enterprise-card:nth-child(3) {
        margin-top: 0;
    }

    .enterprise-card:nth-child(2),
    .enterprise-card:nth-child(4) {
        margin-top: 0;
    }

    .enterprise-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 32px;
    }

    .section-header h2 br {
        display: none;
    }
}

/* ===================== TABLET/MOBILE NAV: 768px ===================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header .container {
        position: relative;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 12px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        z-index: 999;
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 24px;
        font-size: 16px;
        width: 100%;
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown .nav-link {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        min-width: unset;
        box-shadow: none;
        border-radius: 0;
        padding: 0 12px 8px 24px;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        display: none;
        border-top: 1px solid #f1f5f9;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 10px 12px;
    }

    .btn-touch {
        font-size: 14px;
        padding: 8px 18px;
    }

    .hero {
        min-height: auto;
        padding: 40px 0 60px;
    }

    .hero-slide h1,
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-slide {
        min-height: 180px;
    }

    .hero-cards {
        min-height: 260px;
    }

    .stat-card {
        width: 160px;
        padding: 18px 22px;
    }

    .card-number {
        font-size: 32px;
    }

    .card-label {
        font-size: 12px;
    }

    .why-choose-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .quick-links-list {
        display: block;
    }

    .quick-links-list li {
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-contact {
        margin-left: 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-desc {
        max-width: 100%;
    }

    .approach-cards {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .capabilities-list {
        gap: 10px;
    }

    .capability-item {
        font-size: 15px;
    }

    /* About page */
    .about-hero-title {
        font-size: 34px;
    }

    .about-hero-subtitle {
        font-size: 15px;
    }

    .about-hero-stats {
        width: 100%;
    }

    .about-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================== MOBILE: 640px ===================== */
@media (max-width: 640px) {
    body {
        padding-top: 66px;
    }

    .header {
        padding: 12px 0;
    }

    .logo-icon svg {
        width: 32px;
        height: 32px;
    }

    .logo-name, .logo-sub {
        font-size: 16px;
    }

    .hero {
        padding: 30px 0 40px;
    }

    .hero-slide h1,
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-slide {
        min-height: 160px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 18px;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 24px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
        width: auto;
    }

    .hero-cards {
        min-height: 220px;
        max-width: 320px;
    }

    .stat-card {
        width: 130px;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .card-number {
        font-size: 26px;
    }

    .card-label {
        font-size: 11px;
    }

    .hero-decorative-circle {
        display: none;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .why-choose-section,
    .approach-section,
    .enterprise-section,
    .platforms-section,
    .testimonials-section,
    .core-capabilities-section {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .why-choose-cards {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 22px 20px;
    }

    .approach-card {
        padding: 25px 20px;
    }

    .approach-card h3 {
        font-size: 20px;
    }

    .enterprise-cards {
        grid-template-columns: 1fr;
    }

    .enterprise-card {
        padding: 25px 20px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
    }

    .platform-card {
        padding: 22px 20px;
    }

    .testimonial-card {
        padding: 25px 20px;
    }

    .capabilities-list {
        flex-direction: column;
        gap: 8px;
    }

    .capability-separator {
        display: none;
    }

    .capability-item {
        font-size: 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 24px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }

    .footer-brand h3 {
        font-size: 18px;
    }

    .footer-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    /* About page mobile */
    .about-hero {
        min-height: auto;
        padding: 30px 0;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .about-stat-card {
        min-width: unset;
        width: 100%;
    }

    .about-section {
        padding: 50px 0;
    }
}

/* ===================== SMALL MOBILE: 480px ===================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-slide h1,
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-cards {
        min-height: 200px;
        max-width: 280px;
    }

    .stat-card {
        width: 115px;
        padding: 12px 14px;
        border-radius: 14px;
    }

    .card-number {
        font-size: 22px;
    }

    .card-label {
        font-size: 10px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-touch {
        padding: 6px 14px;
        font-size: 13px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .why-card h3,
    .approach-card h3,
    .enterprise-card h3 {
        font-size: 17px;
    }

    .footer-bottom-links {
        font-size: 12px;
    }
}

/* Contact Page */
.contact-hero {
    position: relative;
    padding: 54px 0 70px;
    background: transparent;
    overflow: visible;
    min-height: 600px;
}

.contact-hero-bg {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(147, 197, 253, 0.3);
    pointer-events: none;
    z-index: 0;
}

.contact-bg-1 {
    width: 400px;
    height: 400px;
    top: 250px;
    left: 50%;
    margin-left: -200px;
    animation: rotateOrbit 30s linear infinite;
}

.contact-bg-1::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #fb923c, #f97316);
    border-radius: 50%;
    top: -6px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 0 2px 8px rgba(251, 146, 60, 0.4);
}

.contact-bg-2 {
    width: 280px;
    height: 280px;
    top: 310px;
    left: 50%;
    margin-left: -140px;
    animation: rotateOrbit 20s linear infinite reverse;
    border-color: rgba(134, 239, 172, 0.3);
}

.contact-bg-2::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #34d399, #10b981);
    border-radius: 50%;
    bottom: 50%;
    right: -5px;
    margin-bottom: -5px;
    box-shadow: 0 2px 8px rgba(52, 211, 153, 0.4);
}

.contact-bg-3 {
    width: 160px;
    height: 160px;
    top: 370px;
    left: 50%;
    margin-left: -80px;
    animation: rotateOrbit 15s linear infinite;
    border-color: rgba(147, 197, 253, 0.4);
}

.contact-bg-3::before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    border-radius: 50%;
    bottom: -5px;
    left: 25%;
    margin-left: -5px;
    box-shadow: 0 2px 8px rgba(96, 165, 250, 0.4);
}

.contact-bg-3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.8), rgba(191, 219, 254, 0.6));
    border: 2px solid rgba(147, 197, 253, 0.5);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2), inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.contact-hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-badge {
    background: #eef2ff;
    color: #4f46e5;
    font-size: 14px;
    font-weight: 500;
}

.contact-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.08;
    margin: 14px 0 12px;
    letter-spacing: -0.02em;
}

.contact-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 680px;
    margin: 0 auto 26px;
    line-height: 1.6;
    font-weight: 400;
}

.contact-form-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.contact-form-card {
    width: min(520px, 100%);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 28px 26px 24px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 6px solid rgba(59, 130, 246, 0.55);
    backdrop-filter: blur(14px);
    text-align: left;
}

.contact-form-card h3 {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 6px;
}

.contact-form-sub {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 18px;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-field {
    display: grid;
    gap: 6px;
}

.contact-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.contact-input {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 12px;
    padding: 12px 12px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus-within {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.12);
}

.contact-input-icon {
    width: 26px;
    height: 26px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    background: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.9);
    flex-shrink: 0;
}

.contact-input input,
.contact-input textarea {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    color: var(--text-dark);
}

.contact-input textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-textarea {
    align-items: flex-start;
}

.contact-textarea .contact-input-icon {
    margin-top: 2px;
}

.contact-submit {
    border: none;
    cursor: pointer;
    padding: 14px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #2563eb 0%, #4f46e5 55%, #22c55e 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 42px rgba(37, 99, 235, 0.34);
}

.contact-submit-icon {
    width: 20px;
    height: 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
}

.contact-why {
    padding: 70px 0 60px;
    background: transparent;
}

.contact-section-header {
    margin-bottom: 38px;
}

.contact-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.contact-why-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    border-radius: 18px;
    padding: 20px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-why-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.contact-why-card:nth-child(2) {
    border-right-color: rgba(239, 68, 68, 0.5);
}

.contact-why-card:nth-child(3) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.contact-why-card:nth-child(4) {
    border-right-color: rgba(34, 197, 94, 0.55);
}

.contact-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.contact-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 20px;
}

.why-quick {
    background: transparent;
}
.why-enterprise {
    background: transparent;
}
.why-pressure {
    background: transparent;
}
.why-clear {
    background: transparent;
}

.contact-why-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
}

.contact-why-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-next {
    padding: 60px 0 70px;
    background: transparent;
}

.contact-next-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
    gap: 0;
    position: relative;
}

/* Accent heading colors across internal pages */
:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
) h3 {
    color: #1e293b;
}

:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
):nth-child(1) h3 {
    color: #2563eb;
}

:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
):nth-child(2) h3 {
    color: #db2777;
}

:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
):nth-child(3) h3 {
    color: #0f766e;
}

:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
):nth-child(4) h3 {
    color: #7c3aed;
}

:is(
    .about-card,
    .how-card,
    .story-bottom-card,
    .value-card,
    .culture-card,
    .contact-why-card,
    .careers-feature-card,
    .careers-culture-card,
    .careers-grow-step,
    .careers-job-card,
    .offering-service-card,
    .offering-help-card,
    .offering-together-card,
    .offering-work-step,
    .offering-choose-card,
    .usecase-card,
    .it-capability-card,
    .it-work-step,
    .telecom-deliver-card,
    .digital-deliver-card,
    .digital-work-step,
    .digital-ai-card,
    .digital-usecase-card,
    .ai-capability-card,
    .ai-usecase-card,
    .ai-work-step,
    .ai-why-card
):nth-child(5) h3 {
    color: #0284c7;
}

/* About page: keep heading/label colors tied to each card border accent */
.about-stat-card.about-stat-purple .about-stat-number,
.about-stat-card.about-stat-purple .about-stat-label {
    color: #6366f1;
}

.about-stat-card.about-stat-green .about-stat-number,
.about-stat-card.about-stat-green .about-stat-label {
    color: #14b8a6;
}

.about-stat-card.about-stat-orange .about-stat-number,
.about-stat-card.about-stat-orange .about-stat-label {
    color: #f97316;
}

.about-how-we-work .how-card.how-card-blue h3 {
    color: #3b82f6;
}

.about-how-we-work .how-card.how-card-green h3 {
    color: #14b8a6;
}

.about-how-we-work .how-card.how-card-orange h3 {
    color: #f97316;
}

.about-story .story-bottom-card:nth-child(1) h3 {
    color: #3b82f6;
}

.about-story .story-bottom-card:nth-child(2) h3 {
    color: #a855f7;
}

.about-values .value-card:nth-child(1) h3 {
    color: #3b82f6;
}

.about-values .value-card:nth-child(2) h3 {
    color: #6366f1;
}

.about-values .value-card:nth-child(3) h3 {
    color: #14b8a6;
}

.about-values .value-card:nth-child(4) h3 {
    color: #f97316;
}

.about-values .value-card:nth-child(5) h3 {
    color: #a855f7;
}

.about-values .value-card:nth-child(6) h3 {
    color: #06b6d4;
}

.about-culture .culture-card:nth-child(1) h3 {
    color: #6366f1;
}

.about-culture .culture-card:nth-child(2) h3 {
    color: #14b8a6;
}

.about-culture .culture-card:nth-child(3) h3 {
    color: #3b82f6;
}

.about-culture .culture-card:nth-child(4) h3 {
    color: #f97316;
}

/* Contact page: match heading color to each card border accent */
.contact-why-card:nth-child(1) h3 {
    color: #2563eb;
}

.contact-why-card:nth-child(2) h3 {
    color: #db2777;
}

.contact-why-card:nth-child(3) h3 {
    color: #0f766e;
}

.contact-why-card:nth-child(4) h3 {
    color: #22c55e;
}

.contact-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-step-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.contact-step-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.contact-step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid white;
}

.step-purple .contact-step-icon {
    background: linear-gradient(135deg, #ede9fe 0%, #e0e7ff 100%);
    color: #8b5cf6;
}

.step-purple .contact-step-number {
    background: #8b5cf6;
}

.step-green .contact-step-icon {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    color: #10b981;
}

.step-green .contact-step-number {
    background: #10b981;
}

.step-orange .contact-step-icon {
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    color: #f97316;
}

.step-orange .contact-step-number {
    background: #f97316;
}

.contact-step-connector {
    flex: 0 0 44px;
    height: 2px;
    background: #cbd5e1;
    border-radius: 999px;
    margin: 0 8px;
    align-self: flex-start;
    margin-top: 40px;
    position: relative;
    top: 0;
    z-index: 0;
}

.contact-step h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0 auto;
    max-width: 260px;
    min-height: 42px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
}

.contact-connect {
    padding: 70px 0 90px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.contact-connect-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: center;
}

.contact-connect-left h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 8px;
}

.contact-connect-sub {
    color: var(--text-gray);
    margin-bottom: 18px;
    font-size: 14px;
}

.contact-connect-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.contact-connect-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    padding: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    backdrop-filter: blur(10px);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-connect-card:nth-child(1) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.contact-connect-card:nth-child(2) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.contact-connect-card:nth-child(3) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.contact-connect-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.14);
}

.contact-connect-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: none;
    margin-bottom: 0;
}

.contact-connect-card-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
}

.cc-email {
    background: #dbeafe;
    color: #2563eb;
}

.cc-phone {
    background: #d1fae5;
    color: #059669;
}

.cc-map {
    background: #fed7aa;
    color: #ea580c;
}

.cc-email svg {
    stroke: #1e3a8a;
}

.cc-phone svg {
    stroke: #14532d;
}

.cc-map svg {
    stroke: #9a3412;
}

.contact-connect-card-body {
    flex: 1;
}

.contact-connect-card-title {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-gray);
}

.contact-connect-card-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.6;
}

.contact-connect-card-value a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-connect-card-value a:hover {
    color: #2563eb;
    text-decoration: none;
}

.contact-map {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1 / 1;
    margin-left: auto;
    border-radius: 999px;
    position: relative;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.06), transparent 55%),
                radial-gradient(circle at 50% 50%, rgba(20, 184, 166, 0.05), transparent 65%);
}

.contact-map-ring {
    position: absolute;
    border-radius: 999px;
    border: 2px dashed;
    inset: 0;
}

.ring-1 { 
    inset: 8%; 
    border-color: rgba(59, 130, 246, 0.2);
    border-style: dashed;
    animation: rotateOrbit 40s linear infinite;
}
.ring-2 { 
    inset: 20%; 
    border-color: rgba(20, 184, 166, 0.2);
    border-style: dashed;
    animation: rotateOrbit 30s linear infinite reverse;
}
.ring-3 { 
    inset: 32%; 
    border-color: rgba(249, 115, 22, 0.2);
    border-style: dashed;
    animation: rotateOrbit 25s linear infinite;
}
.ring-4 { 
    inset: 45%; 
    border-color: rgba(59, 130, 246, 0.15);
    border-style: dashed;
    animation: rotateOrbit 20s linear infinite reverse;
}

.contact-map-center {
    position: absolute;
    inset: 48%;
    border-radius: 999px;
    background: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
    border: 3px solid white;
}

.contact-map-pin {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: white;
    position: relative;
}

.contact-map-pin::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    border: 2px solid rgba(37, 99, 235, 0.22);
}

.contact-map-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    margin-left: -5px;
    margin-top: -5px;
}

.dot-1 {
    background: #f97316;
    animation: orbitDot1 35s linear infinite;
}

@keyframes orbitDot1 {
    from { transform: rotate(0deg) translateX(193px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(193px) rotate(-360deg); }
}

.dot-2 {
    background: #10b981;
    animation: orbitDot2 28s linear infinite reverse;
}

@keyframes orbitDot2 {
    from { transform: rotate(90deg) translateX(168px) rotate(-90deg); }
    to { transform: rotate(-270deg) translateX(168px) rotate(270deg); }
}

.dot-3 {
    background: #3b82f6;
    animation: orbitDot3 32s linear infinite;
}

@keyframes orbitDot3 {
    from { transform: rotate(180deg) translateX(143px) rotate(-180deg); }
    to { transform: rotate(540deg) translateX(143px) rotate(-540deg); }
}

.dot-4 {
    background: #f97316;
    animation: orbitDot4 24s linear infinite reverse;
}

@keyframes orbitDot4 {
    from { transform: rotate(270deg) translateX(115px) rotate(-270deg); }
    to { transform: rotate(-90deg) translateX(115px) rotate(90deg); }
}

.contact-reply-pill {
    margin: 32px auto 0;
    width: fit-content;
    padding: 10px 20px;
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.6);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-reply-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

@media (max-width: 968px) {
    .contact-title {
        font-size: 40px;
    }

    .contact-why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-connect-grid {
        grid-template-columns: 1fr;
    }

    .contact-map {
        margin: 18px auto 0;
    }
}

@media (max-width: 640px) {
    .contact-title {
        font-size: 32px;
    }

    .contact-why-grid {
        grid-template-columns: 1fr;
    }

    .contact-next-steps {
        flex-direction: column;
        gap: 24px;
    }

    .contact-step-connector {
        display: none;
    }

    .contact-form-card {
        padding: 22px 18px 18px;
    }

    .contact-connect-cards {
        flex-direction: column !important;
        gap: 28px;
    }

    .contact-connect-card {
        flex-direction: column !important;
        width: 100% !important;
    }

    .contact-connect-grid {
        grid-template-columns: 1fr;
    }
}

/* Careers Page */
.careers-hero {
    position: relative;
    padding: 80px 0 100px;
    background: transparent;
    overflow: hidden;
}

.careers-hero-bg {
    display: none;
}

.careers-bg-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.careers-bg-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.careers-bg-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.careers-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.careers-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.careers-hero-badge svg {
    width: 16px;
    height: 16px;
    color: #7c3aed;
}

.careers-hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.careers-hero-title .purple-text {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.careers-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 50px;
}

.careers-btn-primary {
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.careers-btn-primary svg {
    width: 16px;
    height: 16px;
}

.careers-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.careers-btn-secondary {
    background: rgba(139, 92, 246, 0.08);
    color: #7c3aed;
    padding: 14px 28px;
    border-radius: 24px;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.careers-btn-secondary:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.12);
    color: #6d28d9;
}

.careers-stats {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.careers-stat-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px 40px;
    border-radius: 16px;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 180px;
    backdrop-filter: blur(10px);
}

.careers-stat-card:nth-child(1) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.careers-stat-card:nth-child(2) {
    border-left-color: rgba(16, 185, 129, 0.55);
}

.careers-stat-card:nth-child(3) {
    border-left-color: rgba(168, 85, 247, 0.55);
}

.careers-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 8px;
}

.careers-stat-card:nth-child(2) .careers-stat-number {
    color: #10b981;
}

.careers-stat-card:nth-child(3) .careers-stat-number {
    color: #8b5cf6;
}

.careers-stat-label {
    font-size: 15px;
    color: var(--text-gray);
    font-weight: 500;
}

.careers-section {
    padding: 80px 0;
    background: transparent;
}

.careers-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.careers-feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 16px;
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.careers-feature-card:nth-child(1) {
    border-right-color: rgba(99, 102, 241, 0.55);
}

.careers-feature-card:nth-child(2) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.careers-feature-card:nth-child(3) {
    border-right-color: rgba(249, 115, 22, 0.55);
}

.careers-feature-card:nth-child(4) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.careers-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.careers-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.careers-feature-icon.icon-purple {
    background: transparent;
    color: #8b5cf6;
}

.careers-feature-icon.icon-green {
    background: transparent;
    color: #10b981;
}

.careers-feature-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.careers-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.careers-feature-card:nth-child(1) h3 {
    color: #6366f1;
}

.careers-feature-card:nth-child(2) h3 {
    color: #14b8a6;
}

.careers-feature-card:nth-child(3) h3 {
    color: #f97316;
}

.careers-feature-card:nth-child(4) h3 {
    color: #3b82f6;
}

.careers-feature-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.careers-culture {
    background: transparent;
}

.careers-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.careers-culture-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.careers-culture-card:nth-child(1) {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.careers-culture-card:nth-child(2) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.careers-culture-card:nth-child(3) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.careers-culture-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.careers-culture-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.careers-culture-card:nth-child(1) h3 {
    color: #6366f1;
}

.careers-culture-card:nth-child(2) h3 {
    color: #14b8a6;
}

.careers-culture-card:nth-child(3) h3 {
    color: #f97316;
}

.careers-culture-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.careers-grow {
    background: transparent;
}

.careers-grow-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
}

.careers-grow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.careers-grow-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: transparent !important;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: none;
}

.careers-grow-circle svg {
    width: 24px;
    height: 24px;
}

.careers-grow-number {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: #6366f1;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #ffffff;
}

.grow-purple {
    background: transparent;
    color: #4f46e5;
}

.grow-green {
    background: transparent;
    color: #059669;
}

.grow-orange {
    background: transparent;
    color: #ea580c;
}

.careers-grow-step h3 {
    font-size: 22px;
    font-weight: 700;
    min-height: 32px;
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.careers-grow-step p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.careers-grow-connector {
    flex: 0 0 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2) 0%, rgba(139, 92, 246, 0.1) 100%);
    margin-top: 28px;
}

.careers-roles {
    background: transparent;
}

.careers-jobs-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 32px;
}

.careers-job-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 26px 24px 24px;
    border-radius: 20px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.careers-job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.16);
}

.careers-job-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 16px;
}

.badge-purple {
    background: #eef2ff;
    color: #4f46e5;
}

.badge-green {
    background: #ecfdf3;
    color: #059669;
}

.badge-orange {
    background: #fff7ed;
    color: #ea580c;
}

.badge-blue {
    background: #eff6ff;
    color: #2563eb;
}

.careers-job-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.careers-job-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 18px;
}

.careers-job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.careers-job-tag {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    font-size: 12px;
    color: var(--text-gray);
    background: #f9fafb;
}

.careers-job-btn-outline {
    background: transparent;
    color: #4f46e5;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1.5px solid #4f46e5;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.careers-job-btn-outline span {
    font-size: 16px;
}

.careers-job-btn-outline:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08), rgba(59, 130, 246, 0.08));
    transform: translateY(-1px);
}

.careers-open-footer {
    text-align: center;
    margin-top: 8px;
}

.careers-open-note {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.careers-open-application-btn {
    padding: 10px 26px;
    border-radius: 999px;
    border: 1.5px solid #4f46e5;
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.careers-open-application-btn:hover {
    background: #4f46e5;
    color: #ffffff;
}

.careers-internship {
    background: transparent;
}

.careers-internship-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 16px;
    border-right: 6px solid rgba(99, 102, 241, 0.55);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 32px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.careers-internship-icon {
    width: 80px;
    height: 80px;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #8b5cf6;
}

.careers-internship-content {
    flex: 1;
}

.careers-internship-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.careers-internship-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.careers-internship-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.careers-internship-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.careers-internship-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.careers-testimonials {
    background: transparent;
}

.careers-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.careers-testimonial-card {
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.careers-testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-purple {
    background: #BE92EA;
    color: white;
}

.testimonial-pink {
    background: #EC90BE;
    color: white;
}

.careers-testimonial-avatar {
    font-size: 48px;
    margin-bottom: 16px;
}

.careers-testimonial-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.careers-testimonial-role {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
    color: white;
}

.careers-testimonial-text {
    font-size: 14px;
    line-height: 1.6;
    color: white;
    opacity: 0.95;
}

.careers-fit {
    background: transparent;
}

.careers-perks {
    background: transparent;
}

.careers-perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.careers-perk-item {
    text-align: center;
}

.careers-perk-item .careers-feature-icon {
    margin: 0 auto 16px;
}

.careers-perk-item p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Careers Responsive */
@media (max-width: 968px) {
    .careers-hero-title {
        font-size: 42px;
    }

    .careers-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-culture-grid {
        grid-template-columns: 1fr;
    }

    .careers-grow-steps {
        flex-direction: column;
        gap: 30px;
    }

    .careers-grow-connector {
        display: none;
    }

    .careers-jobs-grid {
        grid-template-columns: 1fr;
    }

    .careers-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-internship-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .careers-hero-title {
        font-size: 32px;
    }

    .careers-hero-buttons {
        flex-direction: column;
    }

    .careers-stats {
        flex-direction: column;
    }

    .careers-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .careers-perks-grid {
        grid-template-columns: 1fr;
    }
}

/* Offerings Page */
body.offerings-page::before {
    display: none;
}

.offerings-hero {
    position: relative;
    padding: 100px 0 120px;
    background: none;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
}

.offerings-hero::before {
    display: none;
}

.offerings-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.offerings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.offerings-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 32px;
    color: #111827;
    position: relative;
    z-index: 2;
    letter-spacing: -0.02em;
}

.power-text {
    position: relative;
    z-index: 1;
    color: #111827;
}

.offerings-hero-orange-circle {
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.6) 0%, rgba(249, 115, 22, 0.3) 50%, transparent 75%);
    filter: blur(70px);
    top: 50%;
    left: 50%;
    transform: translate(-48%, -50%);
    z-index: 1;
    pointer-events: none;
}

.purple-gradient-text {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.offerings-hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 48px;
    line-height: 1.75;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.offerings-hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.offerings-btn-primary {
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.25);
}

.offerings-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.35);
}

.offerings-btn-secondary {
    background: #ffffff;
    color: #111827;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.offerings-btn-secondary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.offerings-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.offering-icon-float {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    animation: floatVertical 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.offering-icon-float:hover {
    transform: scale(1.1) translateY(-5px);
    cursor: pointer;
}

@keyframes floatVertical {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.offering-icon-float svg,
.offering-icon-float img {
    width: 60px;
    height: 60px;
}

.offering-icon-float svg {
    stroke-width: 1.5;
}

.offering-icon-float.icon-purple {
    color: #8b5cf6;
    border-color: transparent;
    background: transparent;
}

.offering-icon-float.icon-green {
    color: #10b981;
    border-color: transparent;
    background: transparent;
}

.offering-icon-float.icon-orange {
    color: #f97316;
    border-color: transparent;
    background: transparent;
}

.offering-icon-float.icon-top-left {
    top: 8%;
    left: 8%;
    animation-delay: 0s;
}

.offering-icon-float.icon-mid-left {
    top: 50%;
    left: 6%;
    margin-top: -30px;
    animation-delay: 0.5s;
}

.offering-icon-float.icon-bottom-left {
    bottom: 15%;
    left: 8%;
    animation-delay: 1s;
}

.offering-icon-float.icon-top-right {
    top: 10%;
    right: 8%;
    animation-delay: 0.3s;
}

.offering-icon-float.icon-bottom-right {
    bottom: 20%;
    right: 8%;
    animation-delay: 1.2s;
}

.offering-icon-float.icon-mid-right {
    top: 50%;
    right: 6%;
    margin-top: -30px;
    animation-delay: 0.7s;
}

@media (min-width: 1200px) {
    .offering-icon-float.icon-top-left {
        left: 12%;
    }
    
    .offering-icon-float.icon-mid-left {
        left: 10%;
    }
    
    .offering-icon-float.icon-bottom-left {
        left: 12%;
    }
    
    .offering-icon-float.icon-top-right {
        right: 12%;
    }
    
    .offering-icon-float.icon-bottom-right {
        right: 12%;
    }
    
    .offering-icon-float.icon-mid-right {
        right: 10%;
    }
}

@media (max-width: 768px) {
    .offering-icon-float {
        display: none;
    }
}

.offerings-hero-bg-circle {
    display: none;
}

.offerings-hero .circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.offerings-hero .circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.offerings-hero .circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.offerings-services-section {
    padding: 100px 0;
    background: none;
    position: relative;
}

.offerings-services-section::before {
    display: none;
}

.offerings-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.offering-service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.offering-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offering-service-card.card-blue {
    border-top: 4px solid #2563eb;
}

.offering-service-card.card-green {
    border-top: 4px solid #10b981;
}

.offering-service-card.card-orange {
    border-top: 4px solid #f97316;
}

.offering-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.offering-service-card.card-blue .offering-service-icon {
    background: transparent;
    color: #2563eb;
}

.offering-service-card.card-green .offering-service-icon {
    background: transparent;
    color: #10b981;
}

.offering-service-card.card-orange .offering-service-icon {
    background: transparent;
    color: #f97316;
}

.offering-service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.offering-service-card.card-blue h3 {
    color: #2563eb;
}

.offering-service-card.card-green h3 {
    color: #10b981;
}

.offering-service-card.card-orange h3 {
    color: #f97316;
}

.offering-service-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 24px;
}

.offering-view-details {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.offering-view-details:hover {
    color: var(--primary-purple);
    gap: 12px;
}

.offerings-help-section {
    padding: 100px 0;
    background: none;
}

.offerings-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offering-help-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.offering-help-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offering-help-card.card-purple {
    border-top: 4px solid #8b5cf6;
}

.offering-help-card.card-green {
    border-top: 4px solid #10b981;
}

.offering-help-card.card-orange {
    border-top: 4px solid #f97316;
}

.offering-help-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offering-help-card.card-purple .offering-help-icon {
    background: transparent;
    color: #8b5cf6;
}

.offering-help-card.card-green .offering-help-icon {
    background: transparent;
    color: #10b981;
}

.offering-help-card.card-orange .offering-help-icon {
    background: transparent;
    color: #f97316;
}

.offering-help-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.offering-help-card.card-purple h3 {
    color: #8b5cf6;
}

.offering-help-card.card-green h3 {
    color: #10b981;
}

.offering-help-card.card-orange h3 {
    color: #f97316;
}

.offering-help-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.orange-text {
    color: #f97316;
}

.offerings-help-section .orange-text,
.offerings-choose-section .orange-text {
    color: #8b5cf6;
}

.offerings-together-section {
    padding: 100px 0;
    background: none;
}

.offerings-together-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offering-together-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.offering-together-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offering-together-card.card-purple {
    border-top: 4px solid #8b5cf6;
}

.offering-together-card.card-green {
    border-top: 4px solid #10b981;
}

.offering-together-card.card-orange {
    border-top: 4px solid #f97316;
}

.offering-together-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.offering-together-card.card-purple .offering-together-icon {
    background: transparent;
    color: #8b5cf6;
}

.offering-together-card.card-green .offering-together-icon {
    background: transparent;
    color: #10b981;
}

.offering-together-card.card-orange .offering-together-icon {
    background: transparent;
    color: #f97316;
}

.offering-together-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.offering-together-card.card-purple h3 {
    color: #8b5cf6;
}

.offering-together-card.card-green h3 {
    color: #10b981;
}

.offering-together-card.card-orange h3 {
    color: #f97316;
}

.offering-together-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.offerings-work-section {
    padding: 100px 0;
    background: none;
}

.offerings-work-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
    gap: 0;
    flex-wrap: nowrap;
}

.offering-work-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.offering-work-number {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6366f1;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
    margin: 0 auto 12px;
}

.offering-work-icon {
    width: auto;
    height: auto;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto 14px;
    box-shadow: none;
    background: transparent !important;
}

.offering-work-icon.icon-purple {
    background: transparent;
    color: #8b5cf6;
}

.offering-work-icon.icon-green {
    background: transparent;
    color: #10b981;
}

.offering-work-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.offering-work-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
    min-height: 48px;
}

.offering-work-step p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 280px;
    min-height: 76px;
    margin: 0 auto;
}

.offering-work-connector {
    flex: 0 0 72px;
    height: 2px;
    background: #c7d2fe;
    border-radius: 999px;
    margin: 0 14px;
    align-self: flex-start;
    margin-top: 18px;
    position: relative;
    top: 0;
}

.offerings-industries-section {
    padding: 100px 0;
    background: none;
}

.offerings-industries-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-tag {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    white-space: normal;
    line-height: 1.3;
    text-decoration: none;
}

.industry-tag.tag-pink {
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
}

.industry-tag.tag-cyan {
    color: #06b6d4;
    border-color: rgba(6, 182, 212, 0.3);
}

.industry-tag.tag-yellow {
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.industry-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.offerings-choose-section {
    padding: 100px 0;
    background: none;
}

.offerings-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.offering-choose-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    text-align: center;
}

.offering-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.offering-choose-card.card-purple {
    border-top: 4px solid #8b5cf6;
}

.offering-choose-card.card-blue {
    border-top: 4px solid #2563eb;
}

.offering-choose-card.card-green {
    border-top: 4px solid #10b981;
}

.offering-choose-card.card-orange {
    border-top: 4px solid #f97316;
}

.offering-choose-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.offering-choose-card.card-purple .offering-choose-icon {
    background: transparent;
    color: #8b5cf6;
}

.offering-choose-card.card-blue .offering-choose-icon {
    background: transparent;
    color: #2563eb;
}

.offering-choose-card.card-green .offering-choose-icon {
    background: transparent;
    color: #10b981;
}

.offering-choose-card.card-orange .offering-choose-icon {
    background: transparent;
    color: #f97316;
}

.offering-choose-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.offering-choose-card.card-purple h3 {
    color: #8b5cf6;
}

.offering-choose-card.card-blue h3 {
    color: #2563eb;
}

.offering-choose-card.card-green h3 {
    color: #10b981;
}

.offering-choose-card.card-orange h3 {
    color: #f97316;
}

.offering-choose-card p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
}

.offerings-cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.offerings-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.offerings-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.offerings-cta-star {
    position: absolute;
    top: -20px;
    left: 10%;
    color: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.offerings-cta-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.offerings-cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    line-height: 1.6;
}

.offerings-cta-btn {
    background: white;
    color: #2563eb;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.offerings-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
}

.btn-white {
    background: white;
    color: #2563eb;
}

/* Offerings Responsive */
@media (max-width: 968px) {
    .offerings-hero-title {
        font-size: 36px;
    }

    .offerings-services-grid {
        grid-template-columns: 1fr;
    }

    .offerings-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offerings-together-grid {
        grid-template-columns: 1fr;
    }

    .offerings-work-flow {
        flex-direction: column;
        gap: 40px;
    }

    .offering-work-connector {
        display: none;
    }

    .offerings-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offerings-industries-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .offerings-cta-title {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .offerings-hero-title {
        font-size: 28px;
    }

    .offerings-hero-buttons {
        flex-direction: column;
    }

    .offerings-help-grid {
        grid-template-columns: 1fr;
    }

    .offerings-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .offerings-industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .offerings-cta-title {
        font-size: 24px;
    }
}

/* Use Cases Page */
body.usecases-page {
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #ffffff;
    position: relative;
}

body.careers-page {
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #ffffff;
    position: relative;
}

/* Prevent scroll-end flicker on AI/ML page in some browsers/devices */
body.ai-ml-page {
    background-image: url('assets/Background.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-color: #ffffff;
    position: relative;
}

body.usecases-page::before {
    display: none;
}

body.usecases-page::after {
    display: none;
}

@keyframes blobMove {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.usecases-hero {
    position: relative;
    padding: 80px 0 60px;
    background: transparent;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

.usecases-hero-bg-circle {
    display: none;
}

.usecases-circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.usecases-circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.usecases-circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.usecases-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.usecases-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

.usecases-title-dark {
    color: #111827;
}

.usecases-hero-subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.usecases-filter-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.usecase-filter-btn {
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.usecase-filter-btn:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
}

.usecase-filter-btn.active {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.usecases-grid-section {
    padding: 60px 0 80px;
    background: transparent;
    backdrop-filter: none;
    position: relative;
    z-index: 1;
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.usecase-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    opacity: 1;
    transform: translateY(0);
    will-change: transform;
    contain: layout style paint;
}

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.usecase-card-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.image-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 50%, #60a5fa 100%);
    position: relative;
    overflow: hidden;
}

.image-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.15) 20px, rgba(255, 255, 255, 0.15) 40px),
        repeating-linear-gradient(-45deg, transparent, transparent 20px, rgba(16, 185, 129, 0.2) 20px, rgba(16, 185, 129, 0.2) 40px);
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(20px); }
}

.image-2 {
    background: linear-gradient(135deg, #2563eb 0%, #10b981 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(60deg, transparent, transparent 25px, rgba(255, 255, 255, 0.12) 25px, rgba(255, 255, 255, 0.12) 50px),
        repeating-linear-gradient(-60deg, transparent, transparent 25px, rgba(16, 185, 129, 0.18) 25px, rgba(16, 185, 129, 0.18) 50px);
    animation: wave 25s linear infinite reverse;
}

.image-3 {
    background: linear-gradient(135deg, #1d4ed8 0%, #10b981 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 40px 40px, 50px 50px, 30px 30px;
    animation: particles 15s linear infinite;
}

@keyframes particles {
    0% { transform: translate(0, 0); }
    100% { transform: translate(20px, 20px); }
}

.image-4 {
    background: linear-gradient(135deg, #1e40af 0%, #0f172a 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-4::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 50px;
    height: 70px;
    background: rgba(59, 130, 246, 0.4);
    border-radius: 4px;
    box-shadow: 
        25px 0 0 rgba(59, 130, 246, 0.3),
        50px 0 0 rgba(59, 130, 246, 0.2),
        75px 0 0 rgba(59, 130, 246, 0.15),
        0 80px 0 rgba(59, 130, 246, 0.3),
        25px 80px 0 rgba(59, 130, 246, 0.2),
        50px 80px 0 rgba(59, 130, 246, 0.15);
}

.image-4::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(59, 130, 246, 0.1) 2px, rgba(59, 130, 246, 0.1) 4px);
}

.image-5 {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.image-5::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.3) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.2) 50%, transparent 52%);
    background-size: 30px 30px, 25px 25px, 100% 100%;
}

.image-5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    filter: blur(20px);
}

.image-6 {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-6::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.6) 3px, transparent 3px),
        radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.5) 3px, transparent 3px),
        linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        linear-gradient(225deg, rgba(59, 130, 246, 0.2) 0%, transparent 50%);
    background-size: 40px 40px, 35px 35px, 100% 100%, 100% 100%;
}

.image-6::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    box-shadow: 
        inset 0 0 15px rgba(59, 130, 246, 0.3),
        0 0 0 15px rgba(59, 130, 246, 0.1);
}

.image-7 {
    background: linear-gradient(180deg, #0f172a 0%, #1e40af 60%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.image-7::before {
    content: '';
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 80px;
    background: rgba(59, 130, 246, 0.6);
    box-shadow: 
        0 0 0 10px rgba(59, 130, 246, 0.3),
        0 0 0 20px rgba(59, 130, 246, 0.15),
        0 0 0 30px rgba(59, 130, 246, 0.08);
}

.image-7::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.2) 1.5px, transparent 1.5px);
    background-size: 25px 25px, 20px 20px;
}

.image-8 {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-8::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 60%;
    height: 40%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(255, 255, 255, 0.2),
        0 0 0 8px rgba(255, 255, 255, 0.1);
}

.image-8::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 25%;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 
        40px 0 0 rgba(255, 255, 255, 0.2),
        0 25px 0 rgba(255, 255, 255, 0.15);
}

.image-9 {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-9::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
    background: 
        linear-gradient(90deg, rgba(59, 130, 246, 0.4) 0%, transparent 20%, transparent 80%, rgba(59, 130, 246, 0.4) 100%),
        linear-gradient(0deg, rgba(16, 185, 129, 0.3) 0%, transparent 30%, transparent 70%, rgba(16, 185, 129, 0.3) 100%);
    border-radius: 8px;
}

.image-9::after {
    content: '16:9';
    position: absolute;
    bottom: 20%;
    right: 20%;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.image-10 {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.image-10::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(0deg, transparent, transparent 6px, rgba(59, 130, 246, 0.3) 6px, rgba(59, 130, 246, 0.3) 12px),
        repeating-linear-gradient(90deg, transparent, transparent 6px, rgba(59, 130, 246, 0.2) 6px, rgba(59, 130, 246, 0.2) 12px),
        radial-gradient(circle at 40% 50%, rgba(59, 130, 246, 0.4) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(59, 130, 246, 0.3) 1.5px, transparent 1.5px);
    background-size: 100% 100%, 100% 100%, 20px 20px, 15px 15px;
}

.image-11 {
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 50%, #2563eb 100%);
    position: relative;
    overflow: hidden;
}

.image-11::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 15%;
    width: 70%;
    height: 60%;
    background: 
        linear-gradient(180deg, rgba(59, 130, 246, 0.5) 0%, transparent 30%, transparent 70%, rgba(59, 130, 246, 0.4) 100%),
        linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.3) 40%, rgba(16, 185, 129, 0.3) 60%, transparent 100%);
    border-radius: 4px;
    clip-path: polygon(0 80%, 20% 60%, 40% 40%, 60% 50%, 80% 30%, 100% 20%, 100% 100%, 0 100%);
}

.image-11::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 20%;
    width: 60%;
    height: 50%;
    background: 
        linear-gradient(180deg, rgba(59, 130, 246, 0.4) 0%, transparent 25%, transparent 75%, rgba(59, 130, 246, 0.3) 100%);
    border-radius: 4px;
    clip-path: polygon(0 70%, 25% 50%, 50% 45%, 75% 35%, 100% 25%, 100% 100%, 0 100%);
}

.image-12 {
    background: linear-gradient(135deg, #0f172a 0%, #1e40af 50%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.image-12::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8) 0%, rgba(59, 130, 246, 0.4) 50%, transparent 70%);
    box-shadow: 
        0 0 0 25px rgba(59, 130, 246, 0.3),
        0 0 0 50px rgba(59, 130, 246, 0.15),
        0 0 0 75px rgba(59, 130, 246, 0.08);
}

.image-12::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(59, 130, 246, 0.2) 1.5px, transparent 1.5px),
        linear-gradient(45deg, transparent 48%, rgba(59, 130, 246, 0.15) 50%, transparent 52%),
        linear-gradient(135deg, transparent 48%, rgba(59, 130, 246, 0.15) 50%, transparent 52%);
    background-size: 30px 30px, 25px 25px, 100% 100%, 100% 100%;
}

.usecase-card-content {
    padding: 24px;
}

.usecase-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.usecase-card-content p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
}

.usecase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.usecase-tag {
    padding: 4px 12px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #6b7280;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

.usecase-view-details {
    color: #2563eb;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
}

.usecase-view-details:hover {
    color: #1d4ed8;
    gap: 8px;
}

.usecases-cta-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    z-index: 1;
}

.usecases-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.usecases-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.usecases-cta-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.usecases-cta-btn {
    background: #2563eb;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.usecases-cta-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Use Cases Responsive */
@media (max-width: 968px) {
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .usecases-hero-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .usecases-grid {
        grid-template-columns: 1fr;
    }

    .usecases-hero-title {
        font-size: 28px;
    }

    .usecases-filter-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .usecase-filter-btn {
        width: 100%;
    }

    .usecases-cta-content h2 {
        font-size: 28px;
    }
}


/* Offering Detail Page Strip */
.offering-page-strip {
    position: relative;
    padding: 12px 0;
    background: transparent;
    overflow: hidden;
}

.offering-page-strip .container {
    padding-left: 12px;
}

.offering-page-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.24) 0,
        rgba(255, 255, 255, 0.24) 28px,
        transparent 28px,
        transparent 64px
    );
    opacity: 0;
    pointer-events: none;
}

.offering-page-strip-text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #1e3a8a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.offering-page-strip-link {
    color: inherit;
    text-decoration: none;
}

.offering-page-strip-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .offering-page-strip {
        padding: 10px 0;
    }

    .offering-page-strip .container {
        padding-left: 10px;
    }

    .offering-page-strip-text {
        font-size: 13px;
        letter-spacing: 0.06em;
    }
}
/* IT & Consulting Page */
.it-consulting-hero {
    position: relative;
    padding: 80px 0 100px;
    background: none;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.it-consulting-hero-bg-circle {
    display: none;
}

.it-circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.it-circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.it-circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.it-consulting-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.it-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.it-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
}

.it-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 700px;
}

.it-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.it-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.it-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.it-btn-secondary {
    background: white;
    color: #111827;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.it-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #cbd5e1;
}

.it-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.it-icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 2px solid;
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.it-icon-float svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.it-icon-float.icon-code {
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.it-icon-float.icon-grid {
    top: 50%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.it-icon-float.icon-network {
    bottom: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.it-icon-float.icon-gear {
    top: 30%;
    left: 5%;
    animation: float 9s ease-in-out infinite;
}

.it-icon-float.icon-brain {
    bottom: 15%;
    left: 10%;
    animation: float 6.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Capabilities Section */
.it-capabilities-section {
    padding: 80px 0;
    background: none;
}

.it-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.it-capability-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    transition: all 0.3s;
}

.it-capability-card:nth-child(1) {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.it-capability-card:nth-child(2) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.it-capability-card:nth-child(3) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.it-capability-card:nth-child(4) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.it-capability-card:nth-child(5) {
    border-left-color: rgba(168, 85, 247, 0.55);
}

.it-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.it-capability-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.it-capability-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.it-capability-card:nth-child(1) h3 {
    color: #6366f1;
}

.it-capability-card:nth-child(2) h3 {
    color: #3b82f6;
}

.it-capability-card:nth-child(3) h3 {
    color: #14b8a6;
}

.it-capability-card:nth-child(4) h3 {
    color: #f97316;
}

.it-capability-card:nth-child(5) h3 {
    color: #a855f7;
}

.it-capability-card > p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.it-capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.it-capability-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
}

.it-capability-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

/* How We Work Section */
.it-how-we-work-section {
    padding: 80px 0;
    background: none;
}

.it-work-steps {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.it-work-step {
    text-align: center;
    max-width: 280px;
    position: relative;
    z-index: 1;
}

.it-work-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 39px;
    right: -52px;
    width: 44px;
    height: 2px;
    background: rgba(59, 130, 246, 0.35);
    border-radius: 2px;
}

.it-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 2;
}

.it-work-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

/* Keep IT "How We Work" step titles consistently blue */
.it-how-we-work-section .it-work-step h3 {
    color: #2563eb;
}

.it-work-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* Where Used Section */
.it-where-used-section {
    padding: 80px 0;
    background: none;
}

.it-where-used-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 48px;
}

.it-where-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.it-where-tag:hover {
    background: white;
    border-color: #3b82f6;
    color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.it-where-tag svg {
    color: #3b82f6;
}

.green-gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Why Section */
.it-why-section {
    padding: 60px 0;
    background: none;
}

.it-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.it-why-card {
    background: white;
    padding: 16px 20px;
    border-radius: 8px;
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.it-why-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.it-why-card:nth-child(2) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.it-why-card:nth-child(3) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

.it-why-card:nth-child(4) {
    border-right-color: rgba(249, 115, 22, 0.55);
}

.it-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.it-why-card svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.it-why-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.it-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    text-align: center;
}

.it-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.it-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.it-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.it-cta-btn {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.it-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* IT & Consulting Responsive */
@media (max-width: 968px) {
    .it-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .it-why-grid {
        grid-template-columns: 1fr;
    }

    .it-hero-title {
        font-size: 42px;
    }

    .it-work-steps {
        gap: 40px;
    }

    .it-work-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 640px) {
    .it-hero-title {
        font-size: 32px;
    }

    .it-hero-buttons {
        flex-direction: column;
    }

    .it-btn-primary,
    .it-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .it-work-steps {
        flex-direction: column;
        gap: 32px;
    }

    .it-where-used-tags {
        flex-direction: column;
    }

    .it-where-tag {
        width: 100%;
        justify-content: center;
    }

    .it-cta-content h2 {
        font-size: 28px;
    }
}

/* Telecommunications Page */
.telecom-hero {
    position: relative;
    padding: 80px 0 100px;
    background: none;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.telecom-hero-bg-circle {
    display: none;
}

.telecom-circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.telecom-circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.telecom-circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.telecom-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.telecom-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.telecom-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
}

.telecom-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 700px;
}

.telecom-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.telecom-btn-primary {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.telecom-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.telecom-btn-secondary {
    background: #ffffff;
    color: #111827;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.telecom-btn-secondary:hover {
    background: #f3f4f6;
    border-color: #cbd5e1;
}

.telecom-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.telecom-icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 2px solid;
    color: #10b981;
    border-color: rgba(16, 185, 129, 0.2);
}

.telecom-icon-float svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.telecom-icon-float.icon-globe {
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.telecom-icon-float.icon-phone {
    top: 50%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.telecom-icon-float.icon-papers {
    bottom: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.telecom-icon-float.icon-network {
    top: 30%;
    left: 5%;
    animation: float 9s ease-in-out infinite;
}

.telecom-icon-float.icon-soundwave {
    bottom: 15%;
    left: 10%;
    animation: float 6.5s ease-in-out infinite;
}

/* What We Deliver Section */
.telecom-deliver-section {
    padding: 80px 0;
    background: none;
}

.telecom-deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.telecom-deliver-card {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border-right: 8px solid rgba(148, 163, 184, 0.65);
    transition: all 0.3s;
}

.telecom-deliver-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.75);
}

.telecom-deliver-card:nth-child(2) {
    border-right-color: rgba(20, 184, 166, 0.75);
}

.telecom-deliver-card:nth-child(3) {
    border-right-color: rgba(99, 102, 241, 0.75);
}

.telecom-deliver-card:nth-child(4) {
    border-right-color: rgba(168, 85, 247, 0.75);
}

.telecom-deliver-card:nth-child(5) {
    border-right-color: rgba(249, 115, 22, 0.75);
}

.telecom-deliver-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.telecom-deliver-icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.telecom-deliver-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.telecom-deliver-card:nth-child(1) h3 {
    color: #3b82f6;
}

.telecom-deliver-card:nth-child(2) h3 {
    color: #14b8a6;
}

.telecom-deliver-card:nth-child(3) h3 {
    color: #6366f1;
}

.telecom-deliver-card:nth-child(4) h3 {
    color: #a855f7;
}

.telecom-deliver-card:nth-child(5) h3 {
    color: #f97316;
}

.telecom-deliver-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.telecom-deliver-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    margin-bottom: 12px;
}

.telecom-deliver-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

/* OEM Section */
.telecom-oem-section {
    padding: 80px 0;
    background: none;
}

.telecom-oem-section .section-header h2 {
    font-weight: 600;
}

.telecom-oem-partners {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.telecom-oem-partner {
    padding: 12px 24px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.telecom-oem-partner:hover {
    background: #f8fafc;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

/* Where Used Section */
.telecom-where-used-section {
    padding: 80px 0;
    background: none;
}

.telecom-where-used-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    margin-top: 48px;
}

.telecom-where-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    transition: all 0.3s;
}

.telecom-where-tag:hover {
    background: white;
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.telecom-where-tag svg {
    color: #10b981;
}

/* Why Section */
.telecom-why-section {
    padding: 80px 0;
    background: none;
}

.telecom-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.telecom-why-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.telecom-why-card:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.telecom-why-card:nth-child(2) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.telecom-why-card:nth-child(3) {
    border-right-color: rgba(168, 85, 247, 0.55);
}

.telecom-why-card:nth-child(4) {
    border-right-color: rgba(249, 115, 22, 0.55);
}

.telecom-why-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.telecom-why-card svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.telecom-why-card p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.telecom-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #6366f1 0%, #3b82f6 100%);
    text-align: center;
}

.telecom-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.telecom-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.telecom-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.telecom-cta-btn {
    background: white;
    color: #6366f1;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.telecom-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Telecommunications Responsive */
@media (max-width: 968px) {
    .telecom-deliver-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .telecom-why-grid {
        grid-template-columns: 1fr;
    }

    .telecom-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 640px) {
    .telecom-hero-title {
        font-size: 32px;
    }

    .telecom-hero-buttons {
        flex-direction: column;
    }

    .telecom-btn-primary,
    .telecom-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .telecom-deliver-grid {
        grid-template-columns: 1fr;
    }

    .telecom-where-used-tags {
        flex-direction: column;
    }

    .telecom-where-tag {
        width: 100%;
        justify-content: center;
    }

    .telecom-oem-partners {
        flex-direction: column;
    }

    .telecom-oem-partner {
        width: 100%;
        text-align: center;
    }
}

/* Digital Marketing Page */
.digital-hero {
    position: relative;
    padding: 80px 0 100px;
    background: none;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.digital-hero-bg-circle {
    display: none;
}

.digital-circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.digital-circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.digital-circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.digital-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.digital-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.digital-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
}

.digital-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 850px;
}

.digital-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.digital-btn-primary {
    background: #2563eb !important;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.digital-btn-primary:hover {
    background: #1d4ed8 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.digital-btn-secondary {
    background: #ffffff !important;
    color: #111827 !important;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #d1d5db !important;
    cursor: pointer;
    transition: all 0.3s;
}

.digital-btn-secondary:hover {
    background: #f3f4f6 !important;
    border-color: #cbd5e1 !important;
}

.digital-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.digital-icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 2px solid;
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.2);
}

.digital-icon-float svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.digital-icon-float.icon-graph {
    top: 15%;
    right: 10%;
    color: #8b5cf6;
    animation: float 6s ease-in-out infinite;
}

.digital-icon-float.icon-target {
    top: 50%;
    right: 5%;
    color: #f97316;
    animation: float 8s ease-in-out infinite;
}

.digital-icon-float.icon-magnifying {
    bottom: 20%;
    right: 15%;
    color: #10b981;
    animation: float 7s ease-in-out infinite;
}

.digital-icon-float.icon-star {
    top: 30%;
    left: 5%;
    color: #10b981;
    animation: float 9s ease-in-out infinite;
}

.digital-icon-float.icon-speaker {
    bottom: 15%;
    left: 10%;
    color: #8b5cf6;
    animation: float 6.5s ease-in-out infinite;
}

/* What We Deliver Section */
.digital-deliver-section {
    padding: 80px 0;
    background: none;
}

.digital-deliver-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.digital-deliver-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.digital-deliver-card:nth-child(1) {
    border-left-color: rgba(59, 130, 246, 0.55);
}

.digital-deliver-card:nth-child(2) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.digital-deliver-card:nth-child(3) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.digital-deliver-card:nth-child(4) {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.digital-deliver-card:nth-child(5) {
    border-left-color: rgba(45, 212, 191, 0.55);
}

.digital-deliver-card:nth-child(6) {
    border-left-color: rgba(244, 114, 182, 0.55);
}

.digital-deliver-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.digital-deliver-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.digital-deliver-icon.icon-purple {
    background: transparent;
    color: #8b5cf6;
}

.digital-deliver-icon.icon-green {
    background: transparent;
    color: #10b981;
}

.digital-deliver-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.digital-deliver-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.digital-deliver-card:nth-child(1) h3 {
    color: #3b82f6;
}

.digital-deliver-card:nth-child(2) h3 {
    color: #14b8a6;
}

.digital-deliver-card:nth-child(3) h3 {
    color: #f97316;
}

.digital-deliver-card:nth-child(4) h3 {
    color: #6366f1;
}

.digital-deliver-card:nth-child(5) h3 {
    color: #2dd4bf;
}

.digital-deliver-card:nth-child(6) h3 {
    color: #f472b6;
}

.digital-deliver-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* How We Work Section */
.digital-how-work-section {
    padding: 80px 0;
    background: none;
}

.digital-work-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.digital-work-step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: white;
    padding: 32px;
    border-radius: 16px;
    border-right: 6px solid rgba(148, 163, 184, 0.5);
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.digital-work-step:nth-child(1) {
    border-right-color: rgba(59, 130, 246, 0.55);
}

.digital-work-step:nth-child(2) {
    border-right-color: rgba(20, 184, 166, 0.55);
}

.digital-work-step:nth-child(3) {
    border-right-color: rgba(249, 115, 22, 0.55);
}

.digital-work-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.digital-step-number {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.digital-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.digital-step-icon.icon-purple {
    background: transparent;
    color: #8b5cf6;
}

.digital-step-icon.icon-green {
    background: transparent;
    color: #10b981;
}

.digital-step-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.digital-work-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.digital-work-step:nth-child(3) h3 {
    color: #f97316;
}

.digital-work-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.digital-work-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
}

/* AI in Digital Marketing Section */
.digital-ai-section {
    padding: 80px 0;
    background: none;
}

.digital-ai-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.digital-ai-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border-left: 6px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.digital-ai-card:nth-child(1) {
    border-left-color: rgba(99, 102, 241, 0.55);
}

.digital-ai-card:nth-child(2) {
    border-left-color: rgba(20, 184, 166, 0.55);
}

.digital-ai-card:nth-child(3) {
    border-left-color: rgba(249, 115, 22, 0.55);
}

.digital-ai-card:nth-child(4) {
    border-left-color: rgba(168, 85, 247, 0.55);
}

.digital-ai-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.digital-ai-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.digital-ai-icon.icon-purple {
    background: transparent;
    color: #8b5cf6;
}

.digital-ai-icon.icon-green {
    background: transparent;
    color: #10b981;
}

.digital-ai-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.digital-ai-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.digital-ai-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Marketing Use Cases Section */
.digital-usecases-section {
    padding: 80px 0;
    background: none;
}

.digital-usecases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.digital-usecase-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.digital-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.digital-usecase-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.digital-usecase-image.image-1 {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    position: relative;
}

.digital-usecase-image.image-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 40px);
}

.digital-usecase-image.image-2 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    position: relative;
}

.digital-usecase-image.image-2::before {
    content: 'SEO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
}

.digital-usecase-image.image-3 {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    position: relative;
}

.digital-usecase-image.image-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.1) 20px, rgba(255, 255, 255, 0.1) 40px);
}

.digital-usecase-image.image-4 {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    position: relative;
}

.digital-usecase-image.image-4::before {
    content: 'SEO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 72px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 8px;
}

.digital-usecase-content {
    padding: 24px;
}

.digital-usecase-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.digital-usecase-content p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.digital-usecase-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.digital-usecase-tag {
    padding: 6px 12px;
    background: #f1f5f9;
    color: #475569;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.digital-usecase-view-details {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s;
}

.digital-usecase-view-details:hover {
    color: #2563eb;
    gap: 8px;
}

/* CTA Section */
.digital-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    text-align: center;
}

.digital-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.digital-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.digital-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.digital-cta-btn {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.digital-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Digital Marketing Responsive */
@media (max-width: 968px) {
    .digital-deliver-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .digital-ai-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .digital-usecases-grid {
        grid-template-columns: 1fr;
    }

    .digital-hero-title {
        font-size: 42px;
    }

    .digital-work-steps {
        flex-direction: column;
    }

    .digital-work-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .digital-hero-title {
        font-size: 32px;
    }

    .digital-hero-buttons {
        flex-direction: column;
    }

    .digital-btn-primary,
    .digital-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .digital-deliver-grid {
        grid-template-columns: 1fr;
    }

    .digital-ai-grid {
        grid-template-columns: 1fr;
    }

    .digital-cta-content h2 {
        font-size: 28px;
    }
}

/* AI & ML Page */
.ai-hero {
    position: relative;
    padding: 80px 0 100px;
    background: none;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.ai-hero-bg-circle {
    display: none;
}

.ai-circle-1 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(129, 140, 248, 0.45), transparent 60%);
    top: -40px;
    left: 6%;
}

.ai-circle-2 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(45, 212, 191, 0.45), transparent 60%);
    top: 30%;
    right: 8%;
}

.ai-circle-3 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.45), transparent 60%);
    bottom: -60px;
    left: 55%;
}

.ai-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ai-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #2563eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.ai-hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1e293b;
    margin-bottom: 24px;
}

.ai-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 16px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.ai-hero-subtitle-2 {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ai-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.ai-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.ai-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.ai-btn-secondary {
    background: white;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #3b82f6;
    cursor: pointer;
    transition: all 0.3s;
}

.ai-btn-secondary:hover {
    background: #f0f9ff;
    border-color: #2563eb;
}

.ai-hero-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.ai-icon-float {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 2px solid;
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.2);
}

.ai-icon-float svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.ai-icon-float.icon-chart {
    top: 15%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.ai-icon-float.icon-infinity {
    top: 50%;
    right: 5%;
    animation: float 8s ease-in-out infinite;
}

.ai-icon-float.icon-database {
    bottom: 20%;
    right: 15%;
    animation: float 7s ease-in-out infinite;
}

.ai-icon-float.icon-gear {
    top: 30%;
    left: 5%;
    animation: float 9s ease-in-out infinite;
}

/* Our Capabilities Section */
.ai-capabilities-section {
    padding: 80px 0;
    background: none;
}

.ai-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-capability-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.ai-capability-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 5px;
    border-radius: 0 8px 8px 0;
    background: rgba(148, 163, 184, 0.45);
}

.ai-capability-card:nth-child(1)::before {
    background: rgba(99, 102, 241, 0.75);
}

.ai-capability-card:nth-child(2)::before {
    background: rgba(20, 184, 166, 0.75);
}

.ai-capability-card:nth-child(3)::before {
    background: rgba(249, 115, 22, 0.75);
}

.ai-capability-card:nth-child(4)::before {
    background: rgba(59, 130, 246, 0.75);
}

.ai-capability-card:nth-child(5)::before {
    background: rgba(168, 85, 247, 0.75);
}

.ai-capability-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: #e2e8f0;
}

.ai-capability-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 16px;
}

.ai-capability-icon.icon-blue {
    background: transparent;
    color: #3b82f6;
}

.ai-capability-icon.icon-cyan {
    background: transparent;
    color: #06b6d4;
}

.ai-capability-icon.icon-orange {
    background: transparent;
    color: #f97316;
}

.ai-capability-icon.icon-purple {
    background: transparent;
    color: #a855f7;
}

.ai-capability-icon.icon-green {
    background: transparent;
    color: #22c55e;
}

.ai-capability-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.ai-capability-card:nth-child(1) h3 {
    color: #6366f1;
}

.ai-capability-card:nth-child(2) h3 {
    color: #14b8a6;
}

.ai-capability-card:nth-child(3) h3 {
    color: #f97316;
}

.ai-capability-card:nth-child(4) h3 {
    color: #3b82f6;
}

.ai-capability-card:nth-child(5) h3 {
    color: #a855f7;
}

.ai-capability-card > p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.ai-capability-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-capability-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    margin-bottom: 10px;
    line-height: 1.5;
}

.ai-capability-list li svg {
    color: #10b981;
    flex-shrink: 0;
}

/* Common Use Cases Section */
.ai-usecases-section {
    padding: 80px 0;
    background: none;
}

.ai-usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.ai-usecase-card {
    background: transparent;
    padding: 32px;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s;
    border: none;
}

.ai-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.ai-usecase-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin: 0 auto 20px;
}

.ai-usecase-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.ai-usecase-card p {
    font-size: 15px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* How We Work Section */
.ai-how-work-section {
    padding: 80px 0;
    background: none;
}

.ai-how-work-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ai-work-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    flex-wrap: wrap;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.ai-work-step {
    flex: 0 1 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s;
    max-width: 900px;
}

.ai-work-step:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.ai-step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.ai-step-icon {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin: 0 auto 20px;
}

.ai-step-icon img {
    width: 900px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.ai-work-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.ai-work-step p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.ai-work-arrow {
    color: #cbd5e1;
    flex-shrink: 0;
}

/* Why Section */
.ai-why-section {
    padding: 80px 0;
    background: none;
}

.ai-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 48px;
}

.ai-why-card {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s;
    overflow: hidden;
}

.ai-why-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.ai-why-icon {
    width: 100%;
    height: auto;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 0;
}

.ai-why-icon img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

.ai-why-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.ai-why-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.ai-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    text-align: center;
}

.ai-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.ai-cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.ai-cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 32px;
}

.ai-cta-btn {
    background: white;
    color: #3b82f6;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #3b82f6;
    cursor: pointer;
    transition: all 0.3s;
}

.ai-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* AI & ML Responsive */
@media (max-width: 968px) {
    .ai-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .ai-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .ai-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-why-grid {
        grid-template-columns: 1fr;
    }

    .ai-hero-title {
        font-size: 42px;
    }

    .ai-work-steps {
        flex-direction: column;
    }

    .ai-work-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .ai-hero-title {
        font-size: 32px;
    }

    .ai-hero-buttons {
        flex-direction: column;
    }

    .ai-btn-primary,
    .ai-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .ai-usecases-grid {
        grid-template-columns: 1fr;
    }

    .ai-cta-content h2 {
        font-size: 28px;
    }
}

/* ===================== GLOBAL MOBILE FIXES FOR ALL PAGES ===================== */
@media (max-width: 768px) {
    /* Hide floating hero icons on all pages */
    .offerings-hero-icons,
    .it-hero-icons,
    .telecom-hero-icons,
    .digital-hero-icons,
    .ai-hero-icons {
        display: none;
    }

    /* Fix all page hero sections for mobile */
    .contact-hero,
    .careers-hero,
    .offerings-hero,
    .it-hero,
    .telecom-hero,
    .digital-hero,
    .ai-hero {
        min-height: auto;
        padding: 30px 0 50px;
    }

    /* All page hero content centered */
    .contact-hero-content,
    .careers-hero-content,
    .offerings-hero-content,
    .it-hero-content,
    .telecom-hero-content,
    .digital-hero-content,
    .ai-hero-content {
        text-align: center;
    }

    /* All page hero buttons stack nicely */
    .careers-hero-buttons,
    .offerings-hero-buttons,
    .it-hero-buttons,
    .telecom-hero-buttons,
    .digital-hero-buttons,
    .ai-hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* All page hero stat cards */
    .hero-cards,
    .offerings-hero-cards,
    .it-hero-cards,
    .telecom-hero-cards {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Extra small: buttons stack vertically */
    .careers-hero-buttons,
    .offerings-hero-buttons,
    .it-hero-buttons,
    .telecom-hero-buttons,
    .digital-hero-buttons,
    .ai-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}








