/* ===================================
   ROOT VARIABLES & RESET
   =================================== */
:root {
    /* Colors */
    --primary-color: #49A0D6;
    --primary-dark: #3A8AC2;
    --primary-light: #6BB5E0;
    --secondary-color: #03045E;
    --accent-color: #49A0D6;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    
    /* Backgrounds */
    --bg-primary: #0a0a0f;
    --bg-secondary: #131318;
    --bg-card: #1a1a24;
    --bg-card-hover: #212130;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #49A0D6 0%, #6BB5E0 100%);
    --gradient-secondary: linear-gradient(135deg, #49A0D6 0%, #03045E 100%);
    --gradient-accent: linear-gradient(135deg, #6BB5E0 0%, #49A0D6 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px 0;
    
    /* Effects */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 40px rgba(73, 160, 214, 0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
}

/* Prevent scroll only when mobile menu is open on mobile devices */
@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
        height: 100vh;
        width: 100%;
        position: relative;
    }
}

/* ===================================
   ANIMATED BACKGROUND
   =================================== */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    max-width: 100vw;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #49A0D6 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #03045E 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: -7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6BB5E0 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(73, 160, 214, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 160, 214, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -100px) scale(1.1);
    }
    50% {
        transform: translate(-50px, 100px) scale(0.9);
    }
    75% {
        transform: translate(150px, 50px) scale(1.05);
    }
}

/* ===================================
   UTILITIES
   =================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(73, 160, 214, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(73, 160, 214, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    z-index: 1000;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-normal);
    will-change: transform;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    padding: 14px 32px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-btn {
    background: var(--gradient-primary);
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    color: white;
}

.nav-link.cta-btn::after {
    display: none;
}

.nav-link.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(73, 160, 214, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all var(--transition-normal);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(73, 160, 214, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    filter: blur(100px);
    animation: pulseGlow 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(73, 160, 214, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(73, 160, 214, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* ===================================
   PARTICLE ANIMATION
   =================================== */
.particles-canvas {
    position: absolute;
    top: 0;
    height: 100%;
    width: 25%;
    pointer-events: none;
    z-index: 1;
}

.particles-left {
    left: 0;
}

.particles-right {
    right: 0;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: rgba(73, 160, 214, 0.08);
    border: 1px solid rgba(73, 160, 214, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(73, 160, 214, 0.12);
    border-color: rgba(73, 160, 214, 0.3);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #49A0D6 0%, #90CAF9 50%, #49A0D6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #49A0D6, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 50px;
}

.btn-outline {
    padding: 14px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(73, 160, 214, 0.5);
    transform: translateY(-2px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
    display: block;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-backdrop {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(73, 160, 214, 0.15) 0%, rgba(3, 4, 94, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: pulseBackdrop 8s ease-in-out infinite;
}

@keyframes pulseBackdrop {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.orbit-ring {
    position: absolute;
    border: 1px solid rgba(73, 160, 214, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 450px;
    height: 450px;
    animation: rotateRing 30s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 550px;
    height: 550px;
    animation: rotateRing 40s linear infinite reverse;
    opacity: 0.5;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-image {
    max-width: 90%;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 25px 70px rgba(73, 160, 214, 0.4));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-25px) scale(1.02); }
}

.tech-badge {
    position: absolute;
    padding: 14px 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 
                0 2px 8px rgba(73, 160, 214, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    z-index: 4;
    animation: floatBadge 4s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-badge:hover {
    transform: translateY(-8px) scale(1.08);
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.2) 0%, rgba(73, 160, 214, 0.1) 100%);
    border-color: rgba(73, 160, 214, 0.5);
    box-shadow: 0 16px 48px rgba(73, 160, 214, 0.5), 
                0 4px 16px rgba(73, 160, 214, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.badge-icon {
    width: 22px;
    height: 22px;
    color: #49A0D6;
    stroke-width: 2;
    filter: drop-shadow(0 2px 4px rgba(73, 160, 214, 0.4));
    transition: all 0.3s ease;
}

.tech-badge:hover .badge-icon {
    color: #90CAF9;
    filter: drop-shadow(0 4px 8px rgba(73, 160, 214, 0.6));
    transform: scale(1.1);
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.badge-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.badge-2 {
    top: 10%;
    right: 8%;
    animation-delay: -1s;
}

.badge-3 {
    bottom: 20%;
    left: 0%;
    animation-delay: -2s;
}

.badge-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: -3s;
}

.badge-5 {
    top: 50%;
    left: -5%;
    animation-delay: -4s;
}

.badge-6 {
    top: 45%;
    right: -3%;
    animation-delay: -5s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

.tech-stack {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    z-index: 2;
    margin-top: 10px;
}

.tech-item {
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.1) 0%, rgba(73, 160, 214, 0.05) 100%);
    border: 1px solid rgba(73, 160, 214, 0.25);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-light);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tech-item i {
    font-size: 16px;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover::before {
    left: 100%;
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.2) 0%, rgba(73, 160, 214, 0.1) 100%);
    border-color: rgba(73, 160, 214, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(73, 160, 214, 0.4);
    color: white;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: var(--section-padding);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.service-card *,
.service-card h3,
.service-card p,
.service-card span,
.service-card:link,
.service-card:visited,
.service-card:hover,
.service-card:active {
    text-decoration: none !important;
}

a.service-card {
    text-decoration: none !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(73, 160, 214, 0.4);
    box-shadow: 0 20px 60px rgba(73, 160, 214, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(73, 160, 214, 0.08);
    border: 1px solid rgba(73, 160, 214, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(73, 160, 214, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
    stroke-width: 1.5;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 8px rgba(73, 160, 214, 0.2));
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(73, 160, 214, 0.4));
}

.service-icon i {
    font-size: 32px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Outfit', sans-serif;
    text-decoration: none !important;
}

a .service-title,
.service-card .service-title {
    text-decoration: none !important;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.service-features i {
    color: var(--success-color);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.service-link:hover {
    gap: 12px;
    color: white;
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(73, 160, 214, 0.15);
}

.service-card .tech-badge {
    padding: 10px 18px;
    background: rgba(73, 160, 214, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(73, 160, 214, 0.4);
    border-radius: 50px;
    font-size: 13px;
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    line-height: 1;
}

.service-card .tech-badge i {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
}

.service-card .tech-badge:hover {
    background: rgba(73, 160, 214, 0.3);
    border-color: rgba(73, 160, 214, 0.6);
    transform: translateY(-2px);
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-choose {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-features {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(73, 160, 214, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon i {
    font-size: 22px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-text p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.stats-card {
    display: grid;
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(73, 160, 214, 0.5);
    box-shadow: 0 10px 40px rgba(73, 160, 214, 0.3), 0 0 60px rgba(73, 160, 214, 0.2);
}

.stat-box h3 {
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.stat-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* ===================================
   RESPONSIVE VISIBILITY UTILITIES
   =================================== */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
}

/* ===================================
   TECHNOLOGY PARTNERS SECTION
   =================================== */
.tech-partners-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(73, 160, 214, 0.03) 50%, transparent 100%);
    width: 100%;
}

.tech-logos-marquee {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

.marquee-row {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 0;
    width: 100%;
    flex-wrap: nowrap;
    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
    );
}

.marquee-content {
    display: inline-flex;
    gap: 40px;
    padding: 10px 40px 10px 0;
    flex-shrink: 0;
    width: auto;
    will-change: transform;
    align-items: center;
    flex-wrap: nowrap;
}

/* Scrolling animations */
.marquee-right .marquee-content {
    animation: scroll-right 40s linear infinite;
}

.marquee-left .marquee-content {
    animation: scroll-left 40s linear infinite;
}

/* Pause on hover */
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Tech Logo Items */
.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 160px;
    max-width: 160px;
    height: 120px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(73, 160, 214, 0.15);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.tech-logo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-logo-item:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(73, 160, 214, 0.5);
    box-shadow: 0 15px 40px rgba(73, 160, 214, 0.25);
    background: rgba(73, 160, 214, 0.08);
}

.tech-logo-item:hover::before {
    opacity: 1;
}

.tech-logo-item img {
    max-width: 70px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0.9) grayscale(0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.tech-logo-item:hover img {
    filter: brightness(1.1) grayscale(0);
    transform: scale(1.1);
}

.tech-logo-item span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: color 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    width: 100%;
}

.tech-logo-item:hover span {
    color: rgba(73, 160, 214, 1);
}

/* Highlight important logos (N8N, Zapier) */
.tech-logo-item.highlight-logo {
    border-color: rgba(73, 160, 214, 0.4);
    background: rgba(73, 160, 214, 0.05);
}

.tech-logo-item.highlight-logo::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #49A0D6, #6BB5E0);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(73, 160, 214, 0.8);
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tech-logo-item.highlight-logo:hover {
    border-color: rgba(73, 160, 214, 0.8);
    box-shadow: 0 15px 50px rgba(73, 160, 214, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tech-partners-section {
        padding: 60px 0;
    }
    
    .tech-logos-marquee {
        gap: 20px;
        margin-top: 50px;
    }
    
    .marquee-content {
        gap: 25px;
        padding: 10px 25px 10px 0;
    }
    
    .tech-logo-item {
        min-width: 135px;
        max-width: 135px;
        height: 105px;
        padding: 16px;
    }
    
    .tech-logo-item img {
        max-width: 55px;
        max-height: 42px;
    }
    
    .tech-logo-item span {
        font-size: 11.5px;
    }
}

@media (max-width: 768px) {
    .tech-partners-section {
        padding: 50px 0;
    }
    
    .tech-logos-marquee {
        gap: 18px;
        margin-top: 40px;
    }
    
    .marquee-content {
        gap: 22px;
        padding: 8px 22px 8px 0;
    }
    
    .tech-logo-item {
        min-width: 115px;
        max-width: 115px;
        height: 95px;
        padding: 14px 12px;
        flex-shrink: 0;
    }
    
    .tech-logo-item img {
        max-width: 48px;
        max-height: 36px;
    }
    
    .tech-logo-item span {
        font-size: 10.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    /* Speed up animation on mobile */
    .marquee-right .marquee-content {
        animation: scroll-right 35s linear infinite;
    }
    
    .marquee-left .marquee-content {
        animation: scroll-left 35s linear infinite;
    }
}

@media (max-width: 480px) {
    .tech-partners-section {
        padding: 40px 0;
    }
    
    .tech-logos-marquee {
        gap: 15px;
        margin-top: 30px;
    }
    
    .marquee-content {
        gap: 20px;
        padding: 6px 20px 6px 0;
    }
    
    .tech-logo-item {
        min-width: 100px;
        max-width: 100px;
        height: 85px;
        padding: 12px 10px;
        flex-shrink: 0;
        gap: 10px;
    }
    
    .tech-logo-item img {
        max-width: 42px;
        max-height: 32px;
    }
    
    .tech-logo-item span {
        font-size: 9.5px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    /* Faster animation on small mobile */
    .marquee-right .marquee-content {
        animation: scroll-right 28s linear infinite;
    }
    
    .marquee-left .marquee-content {
        animation: scroll-left 28s linear infinite;
    }
    
    /* Better gradient mask for smaller screens */
    .marquee-row {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 3%,
            black 97%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 3%,
            black 97%,
            transparent
        );
    }
}

@media (max-width: 390px) {
    .tech-logos-marquee {
        gap: 12px;
    }
    
    .marquee-content {
        gap: 18px;
        padding: 5px 18px 5px 0;
    }
    
    .tech-logo-item {
        min-width: 90px;
        max-width: 90px;
        height: 78px;
        padding: 10px 8px;
        gap: 8px;
    }
    
    .tech-logo-item img {
        max-width: 38px;
        max-height: 28px;
    }
    
    .tech-logo-item span {
        font-size: 9px;
    }
    
    .marquee-right .marquee-content {
        animation: scroll-right 25s linear infinite;
    }
    
    .marquee-left .marquee-content {
        animation: scroll-left 25s linear infinite;
    }
}

/* ===================================
   MOBILE TECHNOLOGY PARTNERS SECTION
   =================================== */
.tech-partners-section-mobile {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, transparent 0%, rgba(73, 160, 214, 0.03) 50%, transparent 100%);
}

.tech-logos-carousel-mobile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    overflow: hidden;
}

.mobile-carousel-row {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 30px;
    overflow: hidden;
    overflow-y: hidden;
    width: 100%;
    position: relative;
    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);
    height: 115px;
    align-items: center;
}

.mobile-carousel-row:hover .mobile-carousel-content {
    animation-play-state: paused;
}

.mobile-carousel-content {
    display: inline-flex;
    gap: 30px;
    flex-shrink: 0;
    will-change: transform;
    align-items: center;
    flex-wrap: nowrap;
    min-width: max-content;
    white-space: nowrap;
}

/* Scrolling animations for mobile */
.mobile-scroll-right .mobile-carousel-content {
    animation: mobileScrollRight 25s linear infinite;
    transform-origin: left center;
}

.mobile-scroll-left .mobile-carousel-content {
    animation: mobileScrollLeft 25s linear infinite;
    transform-origin: left center;
}

@keyframes mobileScrollRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes mobileScrollLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Mobile carousel cards */
.mobile-carousel-row .tech-logo-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    backdrop-filter: blur(10px);
    width: 95px;
    min-width: 95px;
    max-width: 95px;
    height: 95px;
    flex-shrink: 0;
    flex-grow: 0;
    box-sizing: border-box;
    overflow: visible;
    position: relative;
}

.mobile-carousel-row .tech-logo-card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0.9) grayscale(0.3);
}

.mobile-carousel-row .tech-logo-card span {
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Disable hover effects on mobile to prevent layout corruption during animation */
@media (hover: hover) and (pointer: fine) {
    .mobile-carousel-row .tech-logo-card:hover {
        transform: translateY(-8px) scale(1.05);
        border-color: rgba(73, 160, 214, 0.8);
        box-shadow: 0 0 30px rgba(73, 160, 214, 0.6), 0 0 60px rgba(73, 160, 214, 0.3);
        background: linear-gradient(135deg, rgba(73, 160, 214, 0.15), rgba(107, 181, 224, 0.1));
    }

    .mobile-carousel-row .tech-logo-card:hover img {
        filter: brightness(1.2) grayscale(0) drop-shadow(0 0 10px rgba(73, 160, 214, 0.5));
        transform: scale(1.15);
    }

    .mobile-carousel-row .tech-logo-card:hover span {
        color: rgba(73, 160, 214, 1);
        text-shadow: 0 0 10px rgba(73, 160, 214, 0.5);
    }
}

/* Highlight important logos */
.mobile-carousel-row .tech-logo-card.highlight-card {
    border-color: rgba(73, 160, 214, 0.4);
    background: rgba(73, 160, 214, 0.05);
    position: relative;
}

.mobile-carousel-row .tech-logo-card.highlight-card::after {
    content: '';
    position: absolute;
    top: 6px;
    right: 6px;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #49A0D6, #6BB5E0);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(73, 160, 214, 0.8);
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .tech-logos-carousel-mobile {
        gap: 14px;
    }
    
    .mobile-carousel-row {
        height: 105px;
        gap: 26px;
    }
    
    .mobile-carousel-content {
        gap: 26px;
    }
    
    .mobile-carousel-row .tech-logo-card {
        width: 85px;
        min-width: 85px;
        max-width: 85px;
        height: 85px;
        padding: 12px 8px;
    }
    
    .mobile-carousel-row .tech-logo-card img {
        width: 36px;
        height: 36px;
    }
    
    .mobile-carousel-row .tech-logo-card span {
        font-size: 9px;
    }
    
    .mobile-scroll-right .mobile-carousel-content {
        animation: mobileScrollRight480 22s linear infinite;
    }
    
    .mobile-scroll-left .mobile-carousel-content {
        animation: mobileScrollLeft480 22s linear infinite;
    }
    
    @keyframes mobileScrollRight480 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    @keyframes mobileScrollLeft480 {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

@media (max-width: 390px) {
    .tech-logos-carousel-mobile {
        gap: 12px;
    }
    
    .mobile-carousel-row {
        height: 100px;
    }
    
    .mobile-carousel-content {
        gap: 0;
        padding: 0;
    }
    
    .mobile-carousel-content:first-child::after {
        width: 20px;
    }
    
    .mobile-carousel-row .tech-logo-card {
        width: 80px;
        min-width: 80px;
        max-width: 80px;
        height: 80px;
        padding: 10px 6px;
        border-radius: 12px;
        margin-right: 24px;
    }
    
    .mobile-carousel-row .tech-logo-card img {
        width: 34px;
        height: 34px;
    }
    
    .mobile-carousel-row .tech-logo-card span {
        font-size: 8px;
    }
    
    .mobile-scroll-right .mobile-carousel-content {
        animation: mobileScrollRight390 20s linear infinite;
    }
    
    .mobile-scroll-left .mobile-carousel-content {
        animation: mobileScrollLeft390 20s linear infinite;
    }
    
    @keyframes mobileScrollRight390 {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-100%);
        }
    }
    
    @keyframes mobileScrollLeft390 {
        0% {
            transform: translateX(-100%);
        }
        100% {
            transform: translateX(0);
        }
    }
}

/* ===================================
   TESTIMONIALS SECTION - 3D CAROUSEL
   =================================== */
.testimonials-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.testimonials-3d-carousel {
    position: relative;
    margin-top: 80px;
    padding: 0 80px;
    min-height: 500px;
}

.testimonials-3d-container {
    position: relative;
    width: 100%;
    height: 450px;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card-3d {
    position: absolute;
    width: 500px;
    height: 380px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    cursor: pointer;
}

.testimonial-card-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.15) 0%, rgba(3, 4, 94, 0.25) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(73, 160, 214, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(73, 160, 214, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.1) 0%, transparent 50%, rgba(107, 181, 224, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card-3d:hover .testimonial-card-inner::before {
    opacity: 1;
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 48px;
    color: rgba(73, 160, 214, 0.2);
    pointer-events: none;
}

/* Positioning for 3D effect - Center card (active) */
.testimonial-card-3d[data-position="center"] {
    z-index: 10;
    transform: translateX(0) translateZ(0) rotateY(0deg) scale(1.1);
    opacity: 1;
    pointer-events: auto;
}

.testimonial-card-3d[data-position="center"] .testimonial-card-inner {
    box-shadow: 0 30px 80px rgba(73, 160, 214, 0.4);
    border-color: rgba(73, 160, 214, 0.5);
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.2) 0%, rgba(3, 4, 94, 0.3) 100%);
}

/* Left card */
.testimonial-card-3d[data-position="left"] {
    z-index: 5;
    transform: translateX(-520px) translateZ(-300px) rotateY(35deg) scale(0.85);
    opacity: 0.6;
    pointer-events: none;
}

/* Right card */
.testimonial-card-3d[data-position="right"] {
    z-index: 5;
    transform: translateX(520px) translateZ(-300px) rotateY(-35deg) scale(0.85);
    opacity: 0.6;
    pointer-events: none;
}

/* Hidden cards */
.testimonial-card-3d[data-position="hidden"] {
    z-index: 1;
    transform: translateX(0) translateZ(-500px) scale(0.5);
    opacity: 0;
    pointer-events: none;
}

/* Content Styling */
.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(73, 160, 214, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.testimonial-author {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 14px;
    color: rgba(73, 160, 214, 1);
    margin-bottom: 8px;
    font-weight: 500;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 14px;
}

/* Navigation Buttons */
.carousel-btn-3d {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.3) 0%, rgba(3, 4, 94, 0.3) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(73, 160, 214, 0.4);
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn-3d:hover {
    background: linear-gradient(135deg, rgba(73, 160, 214, 0.6) 0%, rgba(3, 4, 94, 0.5) 100%);
    transform: translateY(-50%) scale(1.1);
    border-color: rgba(73, 160, 214, 0.8);
    box-shadow: 0 10px 30px rgba(73, 160, 214, 0.4);
}

.prev-btn-3d {
    left: 0;
}

.next-btn-3d {
    right: 0;
}

/* Dots Navigation */
.carousel-dots-3d {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.carousel-dot-3d {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(73, 160, 214, 0.3);
    border: 2px solid rgba(73, 160, 214, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot-3d.active {
    background: var(--gradient-primary);
    transform: scale(1.4);
    border-color: rgba(73, 160, 214, 0.8);
    box-shadow: 0 0 15px rgba(73, 160, 214, 0.6);
}

.carousel-dot-3d:hover {
    transform: scale(1.2);
    border-color: rgba(73, 160, 214, 0.6);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-3d-carousel {
        padding: 0 40px;
    }
    
    .testimonial-card-3d {
        width: 450px;
        height: 400px;
    }
    
    .testimonial-card-3d[data-position="left"] {
        transform: translateX(-400px) translateZ(-250px) rotateY(35deg) scale(0.8);
    }
    
    .testimonial-card-3d[data-position="right"] {
        transform: translateX(400px) translateZ(-250px) rotateY(-35deg) scale(0.8);
    }
}

@media (max-width: 768px) {
    .testimonials-3d-carousel {
        padding: 0 20px;
        min-height: 450px;
    }
    
    .testimonials-3d-container {
        height: 420px;
    }
    
    .testimonial-card-3d {
        width: 350px;
        height: 380px;
    }
    
    .testimonial-card-inner {
        padding: 40px 30px;
    }
    
    .testimonial-card-3d[data-position="center"] {
        transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
    }
    
    .testimonial-card-3d[data-position="left"],
    .testimonial-card-3d[data-position="right"] {
        display: none;
    }
    
    .carousel-btn-3d {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--section-padding);
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(73, 160, 214, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content,
.cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.cta-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   TEAMS IMAGE SECTION
   =================================== */
.teams-image-section {
    padding: 60px 20px;
    background: var(--bg-primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

.teams-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .teams-image-section {
        padding: 40px 15px;
    }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--bg-secondary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo-text {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    font-family: 'Outfit', sans-serif;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-light);
    margin-top: 3px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: white;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(73, 160, 214, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(73, 160, 214, 0.6);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .hero-title {
        font-size: 52px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        height: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
        min-height: 100%;
    }
    
    section {
        overflow: visible;
        max-width: 100vw;
    }
    
    .animated-bg,
    .hero-gradient-orb,
    .gradient-orb,
    .grid-overlay,
    .hero-grid-bg {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .navbar {
        padding: 12px 20px;
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        box-sizing: border-box;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - 80px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        transition: left var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(10px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-10px);
    }
    
    .hero {
        padding: 120px 0 80px;
        min-height: auto;
        overflow: hidden;
        max-width: 100%;
    }
    
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 30px auto 0;
        padding: 0 20px;
        height: auto;
        min-height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    
    .hero-image-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        max-width: 100%;
        width: 100%;
        padding: 0;
        margin: 0 auto;
        height: auto;
        min-height: 0;
        overflow: visible;
    }
    
    .image-backdrop {
        display: none !important;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto 15px;
        display: block;
        animation: none !important;
        transform: none !important;
        object-fit: contain;
        position: static;
        z-index: 2;
        filter: none;
    }
    
    .orbit-ring {
        display: none !important;
    }
    
    .hero-visual .tech-badge {
        position: static !important;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin: 4px 0 !important;
        animation: none !important;
        padding: 10px 14px !important;
        font-size: 11px !important;
        width: 100%;
        max-width: 300px;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%) !important;
        backdrop-filter: blur(20px) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 10px !important;
    }
    
    .hero-visual .badge-icon {
        width: 16px !important;
        height: 16px !important;
        display: block !important;
    }
    
    .hero-visual .badge-text {
        font-size: 11px !important;
        display: block !important;
    }
    
    .tech-stack {
        display: flex;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .particles-canvas {
        display: block;
        width: 15%;
        opacity: 0.6;
    }
    
    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .hero-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .hero-badge {
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }
    
    .hero-visual .tech-badge {
        display: none !important;
    }
    
    .orbit-ring {
        display: none !important;
    }
    
    .service-card .tech-badge {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: floatBadge 4s ease-in-out infinite !important;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .cta-box {
        padding: 50px 24px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }
    
    section {
        overflow: visible;
        max-width: 100vw;
    }
    
    .animated-bg,
    .hero-gradient-orb,
    .gradient-orb,
    .grid-overlay,
    .hero-grid-bg {
        max-width: 100vw !important;
        overflow: hidden;
    }
    
    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100%;
    }
    
    .navbar {
        padding: 10px 16px;
        width: 100%;
        max-width: 100%;
        left: 0;
        transform: none;
        box-sizing: border-box;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 16px;
    }
    
    .hero {
        padding: 80px 0 40px;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
        line-height: 1.2;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 8px 16px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .section-description {
        font-size: 14px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .service-card {
        padding: 24px;
    }
    
    .service-card .tech-badge {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: floatBadge 4s ease-in-out infinite !important;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
    
    .tech-item {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .tech-item i {
        font-size: 13px;
    }
    
    .tech-stack {
        gap: 8px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-description {
        font-size: 14px;
    }
    
    .footer-links li,
    .footer-contact li {
        font-size: 14px;
    }
}
