* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #00A8E8;
    --secondary: #003366;
    --accent: #4fd1c5;
    --bg-light: #ffffff;
    --bg-dark: #0f1b2b;
    --text-dark: #1a202c;
    --text-light: #e6eef8;
    --muted: #64748b;
    --glass: rgba(255,255,255,0.95);
    --card: rgba(255,255,255,0.98);
    --radius: 16px;
    --max-width: 1280px;
    --container-padding: 24px;
    --shadow: 0 10px 40px rgba(0,168,232,0.08);
    --shadow-lg: 0 20px 60px rgba(0,168,232,0.12);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-weight: 400;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

body.page-transitioning {
    opacity: 0;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Bokeh Background with Blue Colors */
.bokeh-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bokeh {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at 30% 30%, rgba(0,168,232,0.12) 0%, rgba(0,168,232,0.05) 35%, transparent 70%),
                radial-gradient(circle at 70% 70%, rgba(0,51,102,0.08) 0%, transparent 40%);
    filter: blur(100px);
    transform: translate3d(0,0,0);
    opacity: 0.6;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.bokeh:nth-child(1) { left: -100px; top: -80px; animation-delay: 0s; }
.bokeh:nth-child(2) { right: -150px; top: 100px; animation-delay: 4s; }
.bokeh:nth-child(3) { left: 30%; top: 40vh; animation-delay: 8s; }
.bokeh:nth-child(4) { right: -80px; bottom: -120px; animation-delay: 12s; }
.bokeh:nth-child(5) { left: -150px; bottom: 100px; animation-delay: 16s; }

@keyframes float {
    0%, 100% { transform: translate3d(0,0,0) scale(1); }
    25% { transform: translate3d(30px, -30px, 0) scale(1.1); }
    50% { transform: translate3d(-20px, 20px, 0) scale(0.9); }
    75% { transform: translate3d(20px, 30px, 0) scale(1.05); }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 48px;
}

.logo img {
    height: 64px;
    filter: drop-shadow(0 2px 8px rgba(0, 168, 232, 0.15));
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.2s ease;
}

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

.nav-link.active {
    color: var(--primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.phone {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

.track {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(0,168,232,0.25);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,168,232,0.35);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Fullscreen Section */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(15, 27, 43, 0.5) 0%,
        rgba(15, 27, 43, 0.65) 50%,
        rgba(15, 27, 43, 0.85) 100%);
    z-index: 2;
}

.hero-content-centered {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto 120px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero-title-main {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 32px;
    letter-spacing: -1px;
}

.highlight-text {
    color: white;
    display: block;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-quote {
    background: white;
    color: var(--primary);
    border: none;
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

/* Service Boxes at Bottom of Hero - Compact Tech Style */
.service-boxes {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-box {
    flex: 0 1 calc(20% - 10px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid rgba(0, 168, 232, 0.12);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.service-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-box:hover::after {
    transform: scaleX(1);
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 168, 232, 0.15);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(0, 168, 232, 0.25);
}

.service-box:hover .service-icon {
    opacity: 1;
    transform: scale(1.12) rotate(3deg);
    filter: drop-shadow(0 3px 8px rgba(0, 168, 232, 0.3));
}

.service-box:hover .service-number {
    opacity: 1;
    color: var(--primary);
    transform: scale(1.05);
}

.service-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.35;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-number {
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: 4px;
    opacity: 0.35;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.service-box:hover .service-number {
    opacity: 1;
    color: var(--primary);
}

.service-box h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 4px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-box p {
    font-size: 11px;
    color: var(--muted);
    margin: 0;
    line-height: 1.3;
    font-weight: 500;
}

.service-box:last-child {
    border-right: 1px solid rgba(0, 168, 232, 0.12);
}

.service-box-active {
    background: linear-gradient(135deg, #0080FF 0%, #0066DD 100%);
    transform: scale(1.06);
    position: relative;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 1 calc(22% - 10px);
}

.service-box-active:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 168, 232, 0.25);
}

.service-box-active .service-number {
    opacity: 0;
    display: none;
}

.service-box-active .service-icon-large {
    font-size: 40px;
    margin-bottom: 8px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.service-box-active .service-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.3));
}

.service-box-active h3,
.service-box-active p {
    color: white;
}

.service-box-active h3 {
    font-size: 12px;
    line-height: 1.3;
    font-weight: 800;
}

.service-box-active p {
    font-size: 10px;
    opacity: 0.95;
}

.service-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    margin: 8px auto 0;
    transition: all 0.3s ease;
}

.service-box-active:hover .service-arrow {
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(45deg);
}

/* About Section */
.about-us-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-large {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 24px;
    letter-spacing: -1px;
}

.about-intro {
    font-size: 20px;
    color: var(--text-dark);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.story-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.story-card,
.mission-card {
    background: var(--card);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.card-header {
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 12px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.card-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.mission-quote {
    font-size: 20px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-dark);
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    margin: 0;
}

/* Pro Tips Section */
.tech-tips-section {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0,168,232,0.03), rgba(0,51,102,0.02));
    border-radius: 24px;
}

.tips-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
}

/* Cursor Trail Canvas */
#cursorCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* Enhanced Lightbulb Animation with 3D effect and on/off switching */
.lightbulb-container {
    position: relative;
    width: 80px;
    height: 80px;
    perspective: 1000px;
}

.lightbulb {
    font-size: 64px;
    animation: lightSwitch 4s ease-in-out infinite, float3D 3s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.6));
}

.bulb-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.4), transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSwitch {
    0%, 40% {
        filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.8)) brightness(1.3);
    }
    45%, 55% {
        filter: drop-shadow(0 0 5px rgba(100, 100, 100, 0.3)) brightness(0.5);
    }
    60%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 193, 7, 0.8)) brightness(1.3);
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-10px) rotateY(180deg);
    }
}

@keyframes glowPulse {
    0%, 40% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    45%, 55% {
        opacity: 0.1;
        transform: scale(0.8);
    }
    60%, 100% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

.tips-badge {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.tech-tips-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tech-tip-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.tech-tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.tech-tip-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 168, 232, 0.2);
    border-color: rgba(0, 168, 232, 0.3);
}

.tip-icon-wrapper {
    margin-bottom: 20px;
}

/* Enhanced Tech Tips with icon glow */
.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(0, 168, 232, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: iconPulseGlow 2s ease-in-out infinite;
    z-index: 0;
}

@keyframes iconPulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.tip-icon {
    position: relative;
    z-index: 2;
    font-size: 48px;
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.tip-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.tech-tip-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 12px;
}

.tech-tip-card p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tip-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0,168,232,0.1);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section-title-center {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    text-align: center;
    margin: 0;
}

.title-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 16px auto 0;
}

/* Why Choose Us Layout - Cards on Right, Explanations on Left */
.why-choose-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 80px;
}

.why-explanations {
    position: relative;
    min-height: 600px;
}

.explanation-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.explanation-content.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.explanation-number {
    font-size: 120px;
    font-weight: 800;
    color: rgba(0,168,232,0.08);
    line-height: 0.8;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    animation: numberFloat 3s ease-in-out infinite;
}

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

.explanation-content h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.explanation-highlight {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    font-style: italic;
}

.explanation-content > p {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 32px;
    font-size: 16px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 14px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 15px;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    padding-left: 36px;
    color: var(--primary);
}

.feature-list li:hover::before {
    transform: translateX(4px);
}

.tinder-cards-wrapper {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.tinderSwiper {
    width: 100%;
    height: 600px;
    padding: 20px;
}

.tinderSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tinder-card {
    width: 100%;
    height: 550px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 168, 232, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: grab;
    position: relative;
}

.tinder-card:active {
    cursor: grabbing;
}

.tinder-card-image {
    width: 100%;
    height: 70%;
    background: linear-gradient(135deg, rgba(0,168,232,0.1), rgba(0,51,102,0.1));
    position: relative;
}

.tinder-card-content {
    padding: 32px;
    height: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.tinder-card-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 12px;
}

.tinder-card-content p {
    font-size: 16px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.tinder-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tinder-tab {
    padding: 12px 20px;
    background: transparent;
    border: 2px solid rgba(0, 168, 232, 0.2);
    border-radius: 24px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tinder-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tinder-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    color: white;
}

/* Innovation Section */
.innovation-section {
    padding: 100px 0;
    background: #f8fafc;
}

.innovation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.innovation-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin: 0 0 32px;
}

.innovation-text p {
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.arrow-circle {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    transition: all 0.3s ease;
}

.btn-arrow:hover .arrow-circle {
    transform: rotate(45deg);
    background: var(--secondary);
}

.innovation-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.innovation-image-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    cursor: pointer;
}

.innovation-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 64px rgba(0,168,232,0.15);
}

.innovation-image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.innovation-image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 70%, transparent 100%);
    padding: 32px 24px 24px;
    color: white;
}

.innovation-image-label h4 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.innovation-image-label p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0 0 16px;
    line-height: 1.6;
}

.learn-more-circle {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s ease;
}

.innovation-image-card:hover .learn-more-circle {
    transform: rotate(45deg);
    background: white;
    color: var(--primary);
}

/* Unmatched Services Section */
.unmatched-services {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0e1a 0%, #0f1b2b 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.unmatched-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.unmatched-services::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 168, 232, 0.02) 0px,
        transparent 1px,
        transparent 40px
    ),
    repeating-linear-gradient(
        90deg,
        rgba(0, 168, 232, 0.02) 0px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
    opacity: 0.3;
}

.unmatched-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.header-content h2 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: white;
    letter-spacing: -1px;
    margin: 0;
    background: linear-gradient(135deg, white 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-circle-dark {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.4);
    border: 1px solid rgba(0, 168, 232, 0.3);
    position: relative;
    overflow: hidden;
}

.header-circle-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-circle-dark:hover {
    transform: rotate(45deg) scale(1.12);
    box-shadow: 0 20px 60px rgba(0, 168, 232, 0.6);
}

.header-circle-dark:hover::before {
    opacity: 1;
}

.services-grid-five-dark {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.service-card-bordered-dark {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 168, 232, 0.15);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: card-float-in 0.6s ease-out forwards;
    animation-delay: var(--card-delay, 0s);
    opacity: 0;
}

@keyframes card-float-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-glow-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.service-card-bordered-dark:hover .card-glow-line {
    transform: scaleX(1);
}

.card-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-bordered-dark:hover .card-gradient-overlay {
    opacity: 1;
}

.service-card-icon-dark {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card-icon-dark svg {
    width: 64px;
    height: 64px;
    color: var(--primary);
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 8px rgba(0, 168, 232, 0.3));
}

.service-card-bordered-dark:hover .service-card-icon-dark svg {
    color: var(--accent);
    transform: scale(1.15) translateY(-8px);
    filter: drop-shadow(0 8px 20px rgba(0, 212, 255, 0.5));
}

.service-card-bordered-dark h3 {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin: 0 0 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-bordered-dark:hover h3 {
    color: var(--primary);
}

.card-description-main {
    font-size: 13px;
    color: rgba(0, 168, 232, 0.9);
    margin: 0 0 8px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.card-description-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 24px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.service-card-bordered-dark:hover .card-description-sub {
    color: rgba(255, 255, 255, 0.7);
}

.card-footer-dark {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 168, 232, 0.2);
    transition: border-color 0.3s ease;
}

.service-card-bordered-dark:hover .card-footer-dark {
    border-top-color: rgba(0, 168, 232, 0.4);
}

.card-tag {
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 4px 12px;
    background: rgba(0, 168, 232, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    transition: all 0.3s ease;
}

.service-card-bordered-dark:hover .card-tag {
    background: rgba(0, 168, 232, 0.2);
    border-color: var(--primary);
    color: var(--accent);
}

.card-arrow-dark {
    font-size: 18px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-card-bordered-dark:hover .card-arrow-dark {
    opacity: 1;
    transform: translateX(0);
}

.service-card-bordered-dark {
    border-color: rgba(0, 168, 232, 0.15);
}

.service-card-bordered-dark:hover {
    transform: translateY(-16px);
    border-color: rgba(0, 168, 232, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: 
        0 24px 60px rgba(0, 168, 232, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Footer Extended */
.footer-extended {
    padding: 80px 0 40px;
    background: var(--secondary);
    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-large img {
    height: 64px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

.footer-menu h4 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin: 0 0 24px;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.footer-menu a:hover {
    color: white;
    padding-left: 4px;
}

.footer-subscribe h4 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin: 0 0 16px;
}

.footer-subscribe p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.subscribe-form {
    display: flex;
    gap: 8px;
}

.subscribe-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.subscribe-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.subscribe-form input:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,0.1);
}

.subscribe-form button {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-form button:hover {
    background: white;
    color: var(--primary);
    transform: rotate(45deg);
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* Swiper Navigation Buttons */
.tinderSwiper .swiper-button-prev,
.tinderSwiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 168, 232, 0.3);
    z-index: 10;
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.3);
}

.tinderSwiper .swiper-button-prev::after,
.tinderSwiper .swiper-button-next::after {
    color: white;
    font-size: 20px;
    font-weight: 800;
}

.tinderSwiper .swiper-button-prev {
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.tinderSwiper .swiper-button-next {
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.tinderSwiper .swiper-button-prev:hover,
.tinderSwiper .swiper-button-next:hover {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 212, 255, 0.5);
}

.tinderSwiper .swiper-button-prev:active,
.tinderSwiper .swiper-button-next:active {
    transform: translateY(-50%) scale(0.95);
}

/* Swiper Pagination */
.tinderSwiper .swiper-pagination {
    bottom: -50px !important;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.tinderSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(0, 168, 232, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--primary);
}

.tinderSwiper .swiper-pagination-bullet-active {
    background: var(--primary);
    box-shadow: 0 0 12px rgba(0, 168, 232, 0.6);
    width: 30px;
    border-radius: 6px;
}

/* Animations */
.reveal-left, .reveal-right, .reveal-up, .reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.3, 1);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up { transform: translateY(40px); }
.reveal-scale { transform: scale(0.95); }

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .services-grid-five-dark {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .header-content h2 {
        font-size: 48px;
    }
    
    .services-grid-five-dark {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .unmatched-header {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        text-align: center;
    }
    
    .header-content h2 {
        font-size: 36px;
    }
    
    .services-grid-five-dark {
        grid-template-columns: 1fr;
    }
    
    .header-circle-dark {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .service-card-bordered-dark {
        padding: 32px 24px;
    }
}

/* Tech Tips - Clean Icon Styling */
.tip-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 168, 232, 0.2));
}

.tech-tip-card:hover .tip-icon svg {
    color: var(--accent);
    filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
    transform: scale(1.08);
}

.tip-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.08) 0%, rgba(0, 51, 102, 0.04) 100%);
    border-radius: 14px;
    border: 1px solid rgba(0, 168, 232, 0.12);
    transition: all 0.3s ease;
}

.tech-tip-card:hover .tip-icon {
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.12) 0%, rgba(0, 51, 102, 0.06) 100%);
    border-color: rgba(0, 168, 232, 0.2);
}
