/* Harici stiller - Upsoft */
html,
body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

body {
    background: #0b1220;
    color: #e2e8f0;
}

/* Global tipografi */
html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: #e5e7eb;
}

h1 {
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(2.25rem, 2.5vw+1.5rem, 3rem);
}

h2 {
    font-weight: 700;
    line-height: 1.25;
    font-size: clamp(1.75rem, 1.6vw+1rem, 2.25rem);
}

h3 {
    font-weight: 700;
    line-height: 1.3;
    font-size: 1.5rem;
}

h4 {
    font-weight: 700;
    line-height: 1.35;
    font-size: 1.25rem;
}

h5 {
    font-weight: 600;
    line-height: 1.35;
    font-size: 1.125rem;
}

h6 {
    font-weight: 600;
    line-height: 1.4;
    font-size: 1rem;
}

p {
    line-height: 1.7;
}

small,
.small {
    font-size: .875rem;
}

.lead {
    font-size: 1.125rem;
    line-height: 1.7;
}

.btn {
    font-weight: 600;
    letter-spacing: .1px;
}

.badge {
    font-weight: 600;
    letter-spacing: .2px;
}

/* Enhanced Statistics Section */
.stats-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
}

.stat-item-enhanced {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(8px);
    min-width: 140px;
    flex: 0 0 auto;
}

.stat-item-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s ease;
}

.stat-item-enhanced:hover::before {
    left: 100%;
}

.stat-item-enhanced:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #93c5fd;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item-enhanced:hover .stat-icon::after {
    opacity: 1;
}

.stat-icon-success {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.stat-icon-success::after {
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.2), transparent 70%);
}

.stat-icon-support {
    background: rgba(34, 211, 238, 0.15);
    border-color: rgba(34, 211, 238, 0.3);
    color: #67e8f9;
}

.stat-icon-support::after {
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.2), transparent 70%);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #e2e8f0;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item-enhanced:hover .stat-number {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    line-height: 1.1;
    transition: color 0.3s ease;
}

.stat-item-enhanced:hover .stat-label {
    color: #cbd5e1;
}

/* Mobile Responsive Stats */
@media (max-width: 991px) {
    .stats-container {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        justify-content: center;
        gap: 12px;
    }

    .stat-item-enhanced {
        min-width: 140px;
        padding: 12px 16px;
        margin-right: 0 !important;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .stats-container {
        flex-direction: column;
        align-items: stretch;
    }

    .stat-item-enhanced {
        min-width: auto;
        width: 100%;
    }
}

/* Enhanced Outline Button */
.btn-outline-enhanced {
    position: relative;
    background: rgba(15, 23, 42, 0.2);
    border: 2px solid #94a3b8;
    color: #e2e8f0;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    transition: all 0.4s ease;
    overflow: hidden;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-outline-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-outline-enhanced::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.1), rgba(226, 232, 240, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 10px;
}

.btn-outline-enhanced:hover::before {
    left: 100%;
}

.btn-outline-enhanced:hover::after {
    opacity: 1;
}

.btn-outline-enhanced:hover {
    border-color: #cbd5e1;
    color: #ffffff;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(148, 163, 184, 0.15),
        0 0 0 1px rgba(148, 163, 184, 0.2) inset;
    background: rgba(15, 23, 42, 0.4);
    text-decoration: none;
}

.btn-outline-enhanced .btn-icon-left {
    transition: all 0.3s ease;
    margin-right: 4px;
}

.btn-outline-enhanced .btn-icon-right {
    transition: all 0.3s ease;
    margin-left: 4px;
    opacity: 0.7;
}

.btn-outline-enhanced:hover .btn-icon-left {
    transform: scale(1.1) rotate(5deg);
    color: #cbd5e1;
}

.btn-outline-enhanced:hover .btn-icon-right {
    transform: translateX(4px) scale(1.1);
    opacity: 1;
    color: #cbd5e1;
}

/* Focus state for accessibility */
.btn-outline-enhanced:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.3);
}

/* Active state */
.btn-outline-enhanced:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .btn-outline-enhanced {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-outline-enhanced .btn-icon-left,
    .btn-outline-enhanced .btn-icon-right {
        width: 16px;
        height: 16px;
    }
}

.project-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    background: #0f172a;
}

/* Services */
.services-grid>[class^="col-"],
.services-grid>[class*=" col-"] {
    display: flex;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(2, 6, 23, .35);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    line-height: 0;
    overflow: hidden;
}

.service-icon::after {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    border: 1px solid rgba(148, 163, 184, .25);
    pointer-events: none;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    display: block;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Navbar */
.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    height: 32px;
    width: auto;
    /* Prevent scaling artifacts and color distortion */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: auto;
    /* Ensure proper antialiasing */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    /* Smooth scaling */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Better quality scaling */
    -ms-interpolation-mode: bicubic;
    /* Force hardware acceleration for smoother scaling */
    will-change: transform;
    /* Prevent subpixel rendering issues */
    transform-style: preserve-3d;
    /* Ensure crisp boundaries */
    shape-rendering: crispEdges;
}

@media (max-width: 768px) {
    .navbar .navbar-brand img {
        height: 28px;
        /* Maintain sharp rendering on mobile */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
        image-rendering: auto;
    }
}

@media (max-width: 480px) {
    .navbar .navbar-brand img {
        height: 26px;
    }
}

.navbar .nav-link {
    position: relative;
    padding: .5rem .9rem;
    color: #cbd5e1 !important;
}

.navbar .nav-link:hover {
    color: #ffffff !important;
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .35rem;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 211, 238, .0), rgba(34, 211, 238, .7), rgba(34, 211, 238, .0));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link.active {
    color: #fff !important;
}

.navbar .btn-cta {
    margin-left: .5rem;
    padding: .45rem .9rem;
    border: none;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: #fff;
    border-radius: .5rem;
}

.navbar .btn-cta:hover {
    filter: brightness(1.05);
}

.navbar .btn-wa {
    margin-left: .5rem;
    padding: .45rem .9rem;
    border: 1px solid rgba(34, 197, 94, .35);
    color: #e2e8f0;
    border-radius: .5rem;
    background: rgba(16, 185, 129, .12);
}

.navbar .btn-wa:hover {
    background: rgba(16, 185, 129, .2);
}

.btn-wa svg {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
}

.btn-wa-lg svg {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 8px;
}

/* Mobile CTA bar */
.mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1030;
    background: rgba(2, 6, 23, .92);
    border-top: 1px solid rgba(148, 163, 184, .22);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(2, 6, 23, .65);
    backdrop-filter: saturate(160%) blur(8px);
}

.mobile-cta .btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 14px;
}

.btn-wa-lg {
    border: 1px solid rgba(34, 197, 94, .5);
    color: #e2e8f0;
    background: rgba(16, 185, 129, .18);
}

.btn-wa-lg:hover {
    filter: brightness(1.04);
}

.btn-cta-lg {
    border: none;
    color: #fff;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

@media (max-width:991.98px) {
    body {
        padding-bottom: 78px;
    }
}

/* AI section */
.ai-section {
    position: relative;
    padding: 96px 0;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 18px;
    background: radial-gradient(900px 420px at 15% 15%, rgba(59, 130, 246, .25), transparent 60%), radial-gradient(900px 420px at 85% 5%, rgba(34, 211, 238, .22), transparent 60%), linear-gradient(180deg, rgba(15, 23, 42, .95), rgba(2, 6, 23, .95));
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(2, 6, 23, .7), inset 0 0 0 1px rgba(148, 163, 184, .1);
}

.ai-section:after {
    content: "";
    position: absolute;
    inset: -20% -10% auto -10%;
    height: 60%;
    background: radial-gradient(600px 280px at 20% 10%, rgba(99, 102, 241, .18), transparent 60%), radial-gradient(600px 280px at 80% 0%, rgba(34, 211, 238, .18), transparent 60%);
    pointer-events: none;
    filter: blur(2px) saturate(130%);
    animation: ai-bg-drift 25s ease-in-out infinite;
}

/* Enhanced Content Styling */
.ai-content-wrapper {
    position: relative;
    z-index: 10;
}

.gradient-text {
    background: linear-gradient(135deg, #22d3ee, #3b82f6, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

.ai-title {
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.ai-icon {
    margin-right: 8px;
    animation: icon-sparkle 2s ease-in-out infinite;
}

/* AI Features Grid */
.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    color: #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    border-color: rgba(34, 211, 238, 0.4);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.15);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #67e8f9;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(34, 211, 238, 0.25);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
}

/* Enhanced CTA Section */
.ai-cta-section {
    position: relative;
    z-index: 10;
}

.ai-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22d3ee;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 4px;
}

/* Enhanced Info Card */
.ai-info-card-enhanced {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.9), rgba(2, 6, 23, 0.9));
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(2, 6, 23, 0.6), inset 0 0 0 1px rgba(148, 163, 184, 0.08);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.ai-info-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.6), transparent);
}

.ai-info-card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(2, 6, 23, 0.8), 0 0 0 1px rgba(148, 163, 184, 0.2) inset;
    border-color: rgba(34, 211, 238, 0.3);
}

.card-header {
    padding: 24px 24px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid rgba(34, 211, 238, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #67e8f9;
    animation: card-icon-pulse 3s ease-in-out infinite;
}

.card-body {
    padding: 20px 24px 24px;
}

.benefit-list {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    color: #67e8f9;
    transform: translateX(4px);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    margin-top: 2px;
    color: #22c55e;
    flex-shrink: 0;
}

.tech-stack-title {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 12px;
    font-weight: 600;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 20px;
    font-size: 0.8rem;
    color: #c7d2fe;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-1px);
}

/* Neural Network Lines */
.neural-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.neural-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.4), transparent);
    transform-origin: left center;
}

.neural-line.line-1 {
    top: 20%;
    left: 10%;
    width: 200px;
    animation: neural-pulse 4s ease-in-out infinite;
}

.neural-line.line-2 {
    top: 45%;
    right: 15%;
    width: 150px;
    animation: neural-pulse 3s ease-in-out infinite 1s;
}

.neural-line.line-3 {
    top: 70%;
    left: 20%;
    width: 180px;
    animation: neural-pulse 5s ease-in-out infinite 2s;
}

.neural-line.line-4 {
    top: 30%;
    left: 50%;
    width: 120px;
    transform: rotate(45deg);
    animation: neural-pulse 3.5s ease-in-out infinite 0.5s;
}

.neural-line.line-5 {
    top: 60%;
    right: 30%;
    width: 100px;
    transform: rotate(-30deg);
    animation: neural-pulse 4.5s ease-in-out infinite 1.5s;
}

/* Data Stream */
.data-stream {
    position: absolute;
    pointer-events: none;
}

.data-stream.stream-1 {
    top: 25%;
    left: 5%;
    width: 300px;
    height: 2px;
}

.data-stream.stream-2 {
    top: 65%;
    right: 10%;
    width: 250px;
    height: 2px;
}

.data-bit {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #22d3ee;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.8);
    animation: data-flow 3s linear infinite;
}

.data-bit:nth-child(2) {
    animation-delay: 1s;
}

.data-bit:nth-child(3) {
    animation-delay: 2s;
}

/* AI Nodes */
.ai-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

.ai-node.node-1 {
    top: 15%;
    left: 25%;
    animation: node-glow 3s ease-in-out infinite;
}

.ai-node.node-2 {
    top: 55%;
    right: 20%;
    animation: node-glow 2.5s ease-in-out infinite 1s;
}

.ai-node.node-3 {
    top: 80%;
    left: 40%;
    animation: node-glow 4s ease-in-out infinite 2s;
}

.node-pulse {
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: node-pulse-ring 2s ease-out infinite;
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
}

.matrix-column {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #22d3ee, transparent);
}

.matrix-column.column-1 {
    left: 30%;
    animation: matrix-fall 8s linear infinite;
}

.matrix-column.column-2 {
    left: 70%;
    animation: matrix-fall 6s linear infinite 2s;
}

.matrix-column.column-3 {
    left: 85%;
    animation: matrix-fall 10s linear infinite 4s;
}

/* AI Background Animations Container */
.ai-bg-animations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Enhanced Floating Rings */
.floating-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.floating-ring.ring-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 10%;
    border-color: rgba(34, 211, 238, 0.3);
    animation: float-rotate 20s linear infinite, ring-pulse 4s ease-in-out infinite;
}

.floating-ring.ring-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 8%;
    border-color: rgba(99, 102, 241, 0.4);
    animation: float-rotate-reverse 15s linear infinite, ring-pulse 3s ease-in-out infinite 1s;
}

.floating-ring.ring-3 {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 15%;
    border-color: rgba(34, 211, 238, 0.2);
    animation: float-rotate 25s linear infinite, ring-pulse 5s ease-in-out infinite 2s;
}

.floating-ring.ring-4 {
    width: 100px;
    height: 100px;
    top: 75%;
    right: 25%;
    border-color: rgba(168, 85, 247, 0.3);
    animation: float-rotate-reverse 18s linear infinite, ring-pulse 3.5s ease-in-out infinite 1.5s;
}

/* Enhanced Floating Geometric Shapes */
.floating-shape {
    position: absolute;
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.floating-shape.shape-1 {
    width: 0;
    height: 0;
    top: 10%;
    left: 20%;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 26px solid rgba(34, 211, 238, 0.4);
    animation: shape-float 12s ease-in-out infinite, shape-rotate 8s linear infinite;
}

.floating-shape.shape-2 {
    width: 20px;
    height: 20px;
    top: 70%;
    right: 15%;
    background: rgba(99, 102, 241, 0.5);
    transform: rotate(45deg);
    animation: shape-float-reverse 10s ease-in-out infinite, shape-rotate-reverse 6s linear infinite;
}

.floating-shape.shape-3 {
    width: 16px;
    height: 16px;
    top: 40%;
    right: 25%;
    background: rgba(34, 211, 238, 0.4);
    border-radius: 50%;
    animation: shape-float 8s ease-in-out infinite 2s, shape-pulse 3s ease-in-out infinite;
}

.floating-shape.shape-4 {
    width: 24px;
    height: 24px;
    top: 80%;
    left: 25%;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.4), rgba(34, 211, 238, 0.4));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: shape-float-reverse 14s ease-in-out infinite 1s, shape-rotate 10s linear infinite;
}

.floating-shape.shape-5 {
    width: 18px;
    height: 18px;
    top: 35%;
    left: 60%;
    background: rgba(168, 85, 247, 0.4);
    border-radius: 4px;
    animation: shape-float 11s ease-in-out infinite 3s, shape-rotate-reverse 7s linear infinite;
}

/* Enhanced Rotating Orbits */
.rotating-orbit {
    position: absolute;
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.rotating-orbit.orbit-1 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 5%;
    transform: translate(50%, -50%);
    animation: orbit-rotate 30s linear infinite;
    border-color: rgba(34, 211, 238, 0.2);
}

.rotating-orbit.orbit-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 5%;
    transform: translate(-50%, -50%);
    animation: orbit-rotate-reverse 25s linear infinite;
    border-color: rgba(99, 102, 241, 0.2);
}

.orbit-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(34, 211, 238, 0.8);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    animation: dot-glow 2s ease-in-out infinite;
}

.orbit-dot-2 {
    background: rgba(99, 102, 241, 0.8);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.6);
    top: auto;
    bottom: -3px;
    animation: dot-glow 2s ease-in-out infinite 1s;
}

/* Enhanced Floating Particles */
.floating-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(103, 232, 249, 0.7);
    border-radius: 50%;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 8px rgba(103, 232, 249, 0.5);
}

.floating-particles .particle-1 {
    top: 15%;
    left: 30%;
    animation: particle-float 8s ease-in-out infinite, particle-fade 4s ease-in-out infinite;
}

.floating-particles .particle-2 {
    top: 25%;
    right: 20%;
    background: rgba(99, 102, 241, 0.7);
    box-shadow: 0 0 8px rgba(99, 102, 241, 0.5);
    animation: particle-float-reverse 10s ease-in-out infinite 1s, particle-fade 3s ease-in-out infinite 1s;
}

.floating-particles .particle-3 {
    top: 55%;
    left: 15%;
    animation: particle-float 12s ease-in-out infinite 2s, particle-fade 5s ease-in-out infinite 2s;
}

.floating-particles .particle-4 {
    top: 70%;
    right: 30%;
    background: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
    animation: particle-float-reverse 9s ease-in-out infinite 1.5s, particle-fade 4s ease-in-out infinite 1.5s;
}

.floating-particles .particle-5 {
    top: 35%;
    left: 45%;
    animation: particle-float 11s ease-in-out infinite 0.5s, particle-fade 3.5s ease-in-out infinite 0.5s;
}

.floating-particles .particle-6 {
    top: 85%;
    left: 60%;
    animation: particle-float-reverse 7s ease-in-out infinite 2.5s, particle-fade 4.5s ease-in-out infinite 2.5s;
}

.floating-particles .particle-7 {
    top: 45%;
    right: 40%;
    background: rgba(34, 197, 94, 0.7);
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
    animation: particle-float 9s ease-in-out infinite 3s, particle-fade 4s ease-in-out infinite 3s;
}

.floating-particles .particle-8 {
    top: 65%;
    left: 35%;
    animation: particle-float-reverse 13s ease-in-out infinite 4s, particle-fade 5s ease-in-out infinite 4s;
}

/* Enhanced Info Card Animation */
.ai-info-card {
    transition: all 0.3s ease;
    animation: card-gentle-float 6s ease-in-out infinite;
}

.ai-info-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 50px rgba(2, 6, 23, 0.7), 0 0 0 1px rgba(148, 163, 184, 0.15) inset;
}

/* Enhanced AI Section Keyframe Animations */
@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes icon-sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    50% {
        transform: scale(1.1) rotate(180deg);
        opacity: 0.8;
    }
}

@keyframes card-icon-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(34, 211, 238, 0);
    }
}

@keyframes neural-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleX(0);
    }

    50% {
        opacity: 0.8;
        transform: scaleX(1);
    }
}

@keyframes data-flow {
    0% {
        left: 0;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

@keyframes node-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(59, 130, 246, 1), 0 0 40px rgba(59, 130, 246, 0.4);
        transform: scale(1.2);
    }
}

@keyframes node-pulse-ring {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes matrix-fall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Existing Keyframe Animations */
@keyframes ai-bg-drift {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(10px) translateY(-5px) rotate(1deg);
    }

    50% {
        transform: translateX(-5px) translateY(10px) rotate(-0.5deg);
    }

    75% {
        transform: translateX(-10px) translateY(-8px) rotate(0.8deg);
    }
}

@keyframes float-rotate {
    0% {
        transform: rotate(0deg) translateY(0px);
    }

    25% {
        transform: rotate(90deg) translateY(-10px);
    }

    50% {
        transform: rotate(180deg) translateY(0px);
    }

    75% {
        transform: rotate(270deg) translateY(10px);
    }

    100% {
        transform: rotate(360deg) translateY(0px);
    }
}

@keyframes float-rotate-reverse {
    0% {
        transform: rotate(0deg) translateY(0px);
    }

    25% {
        transform: rotate(-90deg) translateY(10px);
    }

    50% {
        transform: rotate(-180deg) translateY(0px);
    }

    75% {
        transform: rotate(-270deg) translateY(-10px);
    }

    100% {
        transform: rotate(-360deg) translateY(0px);
    }
}

@keyframes ring-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes shape-float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-15px) translateX(8px);
    }

    50% {
        transform: translateY(0px) translateX(15px);
    }

    75% {
        transform: translateY(12px) translateX(8px);
    }
}

@keyframes shape-float-reverse {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(12px) translateX(-8px);
    }

    50% {
        transform: translateY(0px) translateX(-15px);
    }

    75% {
        transform: translateY(-15px) translateX(-8px);
    }
}

@keyframes shape-rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes shape-rotate-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

@keyframes shape-pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.3);
    }
}

@keyframes orbit-rotate {
    0% {
        transform: translate(50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(50%, -50%) rotate(360deg);
    }
}

@keyframes orbit-rotate-reverse {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}

@keyframes dot-glow {

    0%,
    100% {
        opacity: 0.8;
        box-shadow: 0 0 10px rgba(34, 211, 238, 0.6);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(34, 211, 238, 0.9), 0 0 30px rgba(34, 211, 238, 0.4);
    }
}

@keyframes particle-float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0px) translateX(20px);
    }

    75% {
        transform: translateY(15px) translateX(10px);
    }
}

@keyframes particle-float-reverse {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    25% {
        transform: translateY(15px) translateX(-10px);
    }

    50% {
        transform: translateY(0px) translateX(-20px);
    }

    75% {
        transform: translateY(-20px) translateX(-10px);
    }
}

@keyframes particle-fade {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes card-gentle-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

/* Mobile Responsiveness for Enhanced AI Animations */
@media (max-width: 768px) {

    .floating-ring,
    .floating-shape,
    .rotating-orbit,
    .neural-network,
    .data-stream,
    .matrix-rain {
        display: none;
    }

    .ai-node {
        width: 8px;
        height: 8px;
    }

    .floating-particles .particle {
        width: 3px;
        height: 3px;
    }

    .ai-section {
        padding: 60px 0;
    }

    .ai-section:after {
        animation: none;
    }

    .ai-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-item {
        padding: 10px 14px;
    }

    .feature-icon {
        width: 32px;
        height: 32px;
    }

    .ai-stats {
        justify-content: center;
        gap: 24px;
    }

    .ai-title {
        font-size: 1.8rem;
    }

    .gradient-text {
        background-size: 100% 100%;
    }

    .btn-ai-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .ai-info-card-enhanced {
        margin-top: 32px;
    }

    .card-header {
        padding: 20px 20px 14px;
    }

    .card-body {
        padding: 16px 20px 20px;
    }

    .tech-badges {
        justify-content: center;
    }
}

.ai-section .ai-badge {
    background: rgba(34, 211, 238, .12);
    color: #67e8f9;
    border: 1px solid rgba(103, 232, 249, .25);
}

.ai-section .point-badge {
    background: rgba(99, 102, 241, .14);
    border: 1px solid rgba(99, 102, 241, .35);
    color: #c7d2fe;
}

.ai-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.btn-ai-cta {
    background: linear-gradient(135deg, #22d3ee, #3b82f6, #6366f1);
    background-size: 200% 200%;
    border: none;
    color: #0b1220;
    font-weight: 700;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(34, 211, 238, .35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: cta-gradient-shift 3s ease-in-out infinite;
}

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

.btn-ai-cta:hover::before {
    left: 100%;
}

.btn-ai-cta:hover {
    filter: brightness(1.1) saturate(1.2);
    box-shadow: 0 15px 40px rgba(59, 130, 246, .5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.02);
    color: #ffffff;
}

.btn-ai-cta .btn-icon {
    transition: transform 0.3s ease;
}

.btn-ai-cta:hover .btn-icon {
    transform: scale(1.1) rotate(10deg);
}

@keyframes cta-gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Referanslar Bölümü Stilleri */
.reference-card {
    transition: all 0.3s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: rgba(148, 163, 184, 0.3) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.reference-card:hover .reference-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s ease;
}

.reference-icon {
    transition: transform 0.3s ease;
}

/* Marka Logoları Slider Stilleri */
@keyframes brand-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        /* İlk setin tam genişliğine kadar kaydır (16 logo + 15 gap) */
        transform: translateX(calc(-50% + 30px));
    }
}

.brand-slider-container {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brand-slider-track {
    display: flex;
    gap: 60px;
    animation: brand-slide 150s linear infinite;
    /* Slowed down from 100s to 150s */
    will-change: transform;
    width: fit-content;
}

.brand-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 100px;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 12px;
    /* Removed transition for hover effect */
    cursor: pointer;
}

/* Removed hover effects that were causing the animation issues */

.brand-logo svg {
    /* Removed transition for hover effect */
    opacity: 0.7;
    filter: grayscale(100%);
}

/* Mobil için animasyon hızını ayarla */
@media (max-width: 768px) {
    .brand-slider-track {
        gap: 40px;
        animation-duration: 120s;
        /* Slowed down from 70s to 120s */
    }

    .brand-logo {
        width: 150px;
        height: 80px;
        padding: 15px;
    }
}