/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    transform: translateZ(0);
    transition: background 0.4s ease, color 0.3s ease;
}

/* Dark theme background effects */
[data-theme="dark"] body {
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.25), transparent),
        radial-gradient(ellipse 60% 30% at 30% 80%, rgba(6, 182, 212, 0.1), transparent),
        radial-gradient(ellipse 40% 25% at 70% 80%, rgba(236, 72, 153, 0.08), transparent);
}

/* Light theme background effects */
[data-theme="light"] body {
    background-image:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(124, 58, 237, 0.08), transparent),
        radial-gradient(ellipse 60% 30% at 30% 80%, rgba(6, 182, 212, 0.05), transparent),
        radial-gradient(ellipse 40% 25% at 70% 80%, rgba(236, 72, 153, 0.03), transparent);
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(124, 58, 237, 0.15), transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 100%, rgba(6, 182, 212, 0.1), transparent),
        radial-gradient(ellipse 40% 25% at 70% 80%, rgba(236, 72, 153, 0.08), transparent);
    pointer-events: none;
    z-index: 0;
    animation: auroraFloat 20s ease-in-out infinite;
}

@keyframes auroraFloat {

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

    33% {
        opacity: 0.8;
        transform: translate(20px, -10px) scale(1.02);
    }

    66% {
        opacity: 0.9;
        transform: translate(-15px, 15px) scale(0.98);
    }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Base */
.section {
    padding: var(--spacing-lg) 0;
    position: relative;
}

/* Section Titles */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main), var(--aurora-2), var(--aurora-3));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 6s ease infinite;
    filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
}

@keyframes gradientFlow {

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

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

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: -0.5rem auto var(--spacing-md);
}

/* Ambient Glow Effects */
.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
}

.glow-purple {
    background: var(--aurora-2);
    top: -200px;
    right: -200px;
}

.glow-blue {
    background: var(--aurora-4);
    top: 50%;
    left: -300px;
}

.glow-teal {
    background: var(--aurora-4);
    bottom: -200px;
    right: -200px;
}

/* ============================================
   HEADER
   ============================================ */
#main-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(5, 5, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.1);
    transition: var(--transition-smooth);
}

#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-aurora);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 140px 2rem 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.4), transparent 70%);
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatOrb1 15s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 70%);
    bottom: 10%;
    left: -100px;
    animation: floatOrb2 12s ease-in-out infinite;
}

.hero-orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent 70%);
    bottom: 20%;
    right: -100px;
    animation: floatOrb3 18s ease-in-out infinite;
}

@keyframes floatOrb1 {

    0%,
    100% {
        transform: translateX(-50%) translateY(0) scale(1);
    }

    50% {
        transform: translateX(-50%) translateY(30px) scale(1.1);
    }
}

@keyframes floatOrb2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

@keyframes floatOrb3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 20px);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    animation: fadeUp 1s ease forwards;
}

/* Particle Canvas */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(168, 85, 247, 0.15);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--aurora-2);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-content h1.shimmer-text {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg,
            var(--text-main),
            var(--aurora-2),
            var(--aurora-3),
            var(--aurora-4),
            var(--text-main));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerGradient 8s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.4));
}

@keyframes shimmerGradient {

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

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

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.tech-highlight {
    color: var(--aurora-2);
    font-weight: 600;
}

.cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--aurora-2);
    display: block;
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2), var(--aurora-3));
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(168, 85, 247, 0.5);
    background-position: 100% 50%;
}

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

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

.btn-secondary {
    background: rgba(168, 85, 247, 0.1);
    color: var(--text-main);
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2rem;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Custom Cursor - Disabled for better UX */
.custom-cursor {
    display: none;
    /* Hidden - was causing cursor visibility issues */
    width: var(--cursor-size);
    height: var(--cursor-size);
    background: var(--cursor-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease;
}

.custom-cursor.hover {
    transform: scale(1.8);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-aurora);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* ============================================
   VIDEO DEMO SECTION
   ============================================ */
.demo-section {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 182, 212, 0.08), transparent);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(20, 15, 50, 0.6) 100%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(168, 85, 247, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-3));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(168, 85, 247, 0.4);
    transition: all var(--transition-smooth);
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(168, 85, 247, 0.6);
}

.play-button span {
    font-size: 2rem;
    color: white;
    margin-left: 5px;
}

.video-placeholder p {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

.video-hint {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 300px;
    text-align: center;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    animation: floatCard 6s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

.product-card:nth-child(1) {
    --i: 0;
}

.product-card:nth-child(2) {
    --i: 1;
}

.product-card:nth-child(3) {
    --i: 2;
}

.product-card:nth-child(4) {
    --i: 3;
}

.product-card:nth-child(5) {
    --i: 4;
}

.product-card:nth-child(6) {
    --i: 5;
}

@keyframes floatCard {

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

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

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(236, 72, 153, 0.4), rgba(6, 182, 212, 0.4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(168, 85, 247, 0.15);
}

.product-card.featured {
    border-color: rgba(168, 85, 247, 0.4);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.15) 0%, rgba(20, 15, 50, 0.5) 100%);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    background: var(--gradient-aurora);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.product-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--aurora-4);
}

.product-cta {
    color: var(--aurora-2);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
}

.product-cta:hover {
    color: var(--aurora-3);
}

.product-meta {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(168, 85, 247, 0.1);
}

.product-pricing {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--aurora-2);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-aurora);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.service-card>p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-tags span {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: var(--aurora-4);
}

/* Support Section */
.support-section {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.support-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.support-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.support-card {
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all var(--transition-smooth);
}

.support-card:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateY(-3px);
}

.support-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.support-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.support-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   PROJECTS PORTFOLIO SECTION
   ============================================ */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-secondary);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.filter-btn:hover {
    background: rgba(168, 85, 247, 0.2);
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--gradient-aurora);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.project-tile {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
}

.project-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(236, 72, 153, 0.5), rgba(6, 182, 212, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.project-tile:hover::before {
    opacity: 1;
}

.project-tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(168, 85, 247, 0.15);
}

.project-tile.hidden {
    display: none;
}

.project-content {
    position: relative;
    z-index: 1;
}

.project-category {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: rgba(168, 85, 247, 0.2);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--aurora-2);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-tile h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    line-height: 1.3;
}

.project-tile p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tech-tags span {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    color: var(--aurora-4);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(124, 58, 237, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.project-tile:hover .project-overlay {
    opacity: 1;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

/* Vision Statement - Sleek Quote */
.vision-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(20, 15, 50, 0.3) 100%);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 20px;
    position: relative;
}

.vision-statement::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    font-family: var(--font-heading);
    color: rgba(168, 85, 247, 0.2);
    line-height: 1;
}

.vision-statement blockquote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.7;
    margin: 0;
}

.vision-statement cite {
    display: block;
    margin-top: 1.25rem;
    font-size: 0.95rem;
    font-style: normal;
    color: var(--aurora-2);
    font-weight: 500;
}

/* Mission Card - Sleek Companion */
.mission-card {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    padding: 2rem 2.5rem;
    background: transparent;
    border-left: 3px solid var(--aurora-3);
    border-radius: 0;
}

.mission-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--aurora-3);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.mission-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   TRUST/CTA SECTION (Replaced Testimonials)
   ============================================ */
#testimonials {
    background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(124, 58, 237, 0.1), transparent);
}

.trust-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-smooth);
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.15);
    border-color: rgba(168, 85, 247, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.trust-card .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    color: var(--text-main);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.carousel-btn:hover {
    background: var(--gradient-aurora);
    border-color: transparent;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.carousel-dots .dot.active {
    background: var(--aurora-2);
    transform: scale(1.2);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 182, 212, 0.1), transparent);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(20, 15, 50, 0.4) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 24px;
    padding: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item .icon {
    font-size: 1.5rem;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--aurora-2);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--aurora-2);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%237878a0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error .error-message {
    display: block;
}

.form-status {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.form-status .status-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

#form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

#form-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--aurora-2);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 600px;
    background: rgba(20, 15, 50, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    z-index: 999;
    transition: bottom 0.5s ease;
}

.cookie-banner.show {
    bottom: 1rem;
}

.cookie-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-content a {
    color: var(--aurora-2);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: var(--text-secondary);
}

.cookie-btn.accept {
    background: var(--gradient-aurora);
    border: none;
    color: white;
}

.cookie-btn.decline:hover {
    background: rgba(168, 85, 247, 0.1);
}

.cookie-btn.accept:hover {
    transform: scale(1.05);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-aurora);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-smooth);
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(5, 5, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
        border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    }

    .menu-toggle {
        display: flex;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 2rem;
    }

    .contact-wrapper {
        padding: 2rem;
    }

    .projects-filter {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    body {
        cursor: auto;
    }

    .custom-cursor {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-content h1.shimmer-text {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
    }

    .cta-group .btn {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   LIGHT THEME - TP-LINK SOFT CLOUDY DESIGN
   Soft, airy, cloud-like aesthetics
   ============================================ */

[data-theme="light"] {

    /* === GLOBAL BACKGROUND === */
    body {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #e8f4fc 100%);
    }

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background:
            radial-gradient(ellipse 80% 40% at 20% 0%, rgba(77, 208, 225, 0.08), transparent),
            radial-gradient(ellipse 60% 30% at 80% 20%, rgba(41, 182, 246, 0.06), transparent),
            radial-gradient(ellipse 50% 25% at 50% 80%, rgba(38, 198, 218, 0.04), transparent);
        pointer-events: none;
        z-index: 0;
    }

    /* === HEADER - Clean Soft === */
    #main-header {
        background: rgba(255, 255, 255, 0.92);
        border-bottom: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    }

    .logo {
        background: linear-gradient(135deg, #00acc1, #26c6da);
        -webkit-background-clip: text;
        background-clip: text;
    }

    .nav-links a {
        color: #4a5568;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: #00acc1;
    }

    .nav-links a::after {
        background: linear-gradient(90deg, #00acc1, #4dd0e1);
    }

    .menu-toggle .bar {
        background-color: #1a2942;
    }

    /* === HERO - Soft Cloudy === */
    #hero {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    }

    .hero-badge {
        background: rgba(0, 172, 193, 0.08);
        border: 1px solid rgba(0, 172, 193, 0.15);
        color: #00acc1;
    }

    .hero-content h1.shimmer-text {
        background: linear-gradient(90deg, #1a2942, #00acc1, #26c6da, #4dd0e1, #1a2942);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: none;
    }

    .hero-content p {
        color: #4a5568;
    }

    .tech-highlight {
        color: #00acc1;
    }

    .hero-stats {
        border-top: 1px solid rgba(0, 172, 193, 0.1);
    }

    .hero-stat .stat-number {
        color: #00acc1;
    }

    .hero-stat .stat-label {
        color: #718096;
    }

    .hero-orb {
        opacity: 0.15;
    }

    .hero-orb-1 {
        background: radial-gradient(circle, rgba(0, 172, 193, 0.3), transparent 70%);
    }

    .hero-orb-2 {
        background: radial-gradient(circle, rgba(41, 182, 246, 0.2), transparent 70%);
    }

    .hero-orb-3 {
        background: radial-gradient(circle, rgba(77, 208, 225, 0.25), transparent 70%);
    }

    /* === SECTION TITLES === */
    .section-title {
        background: linear-gradient(135deg, #1a2942 0%, #00acc1 50%, #26c6da 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        filter: none;
    }

    .section-subtitle {
        color: #4a5568;
    }

    /* === PRODUCT CARDS - Soft Cloudy === */
    .product-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 8px 30px rgba(0, 172, 193, 0.06);
        backdrop-filter: blur(10px);
    }

    .product-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0, 172, 193, 0.12);
        border-color: rgba(0, 172, 193, 0.15);
    }

    .product-card::before {
        background: linear-gradient(135deg, rgba(0, 172, 193, 0.3), rgba(77, 208, 225, 0.3), rgba(41, 182, 246, 0.3));
    }

    .product-card.featured {
        background: linear-gradient(135deg, rgba(240, 247, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
        border-color: rgba(0, 172, 193, 0.2);
    }

    .product-card h3 {
        color: #1a2942;
    }

    .product-card>p,
    .product-features li {
        color: #4a5568;
    }

    .product-pricing {
        color: #00acc1;
    }

    .product-icon {
        filter: none;
    }

    .product-badge {
        background: linear-gradient(135deg, #00acc1, #26c6da);
    }

    .product-cta {
        color: #00acc1;
    }

    .product-cta:hover {
        color: #0097a7;
    }

    /* === SERVICE CARDS === */
    .service-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 6px 25px rgba(0, 172, 193, 0.05);
    }

    .service-card:hover {
        box-shadow: 0 15px 40px rgba(0, 172, 193, 0.1);
        transform: translateY(-8px);
    }

    .service-card h3 {
        color: #1a2942;
    }

    .service-card p {
        color: #4a5568;
    }

    .service-tags span {
        background: rgba(0, 172, 193, 0.06);
        color: #00acc1;
        border: 1px solid rgba(0, 172, 193, 0.15);
    }

    /* === SUPPORT CARDS === */
    .support-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 172, 193, 0.08);
    }

    .support-card:hover {
        box-shadow: 0 10px 30px rgba(0, 172, 193, 0.08);
    }

    .support-card h4 {
        color: #1a2942;
    }

    .support-card p {
        color: #4a5568;
    }

    /* === PROJECT TILES === */
    .project-tile {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 6px 25px rgba(0, 172, 193, 0.05);
    }

    .project-tile:hover {
        box-shadow: 0 18px 45px rgba(0, 172, 193, 0.12);
        transform: translateY(-10px);
    }

    .project-category {
        color: #00acc1;
    }

    .project-tile h4 {
        color: #1a2942;
    }

    .project-tile p {
        color: #4a5568;
    }

    .tech-tags span {
        background: rgba(38, 198, 218, 0.08);
        color: #0097a7;
        border: 1px solid rgba(0, 172, 193, 0.15);
    }

    /* === FILTER BUTTONS === */
    .filter-btn {
        background: rgba(255, 255, 255, 0.9);
        color: #4a5568;
        border: 1px solid rgba(0, 172, 193, 0.15);
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: linear-gradient(135deg, #00acc1, #26c6da);
        color: white;
        border-color: transparent;
        box-shadow: 0 4px 15px rgba(0, 172, 193, 0.3);
    }

    /* === STAT CARDS === */
    .stat-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 4px 20px rgba(0, 172, 193, 0.05);
    }

    .stat-card h3 {
        color: #00acc1;
    }

    .stat-card p {
        color: #4a5568;
    }

    /* === VISION & MISSION === */
    .vision-statement {
        background: linear-gradient(135deg, rgba(240, 247, 255, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
        border: 1px solid rgba(0, 172, 193, 0.1);
    }

    .vision-statement blockquote {
        color: #1a2942;
    }

    .mission-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.1);
    }

    .mission-card h3 {
        background: linear-gradient(135deg, #00acc1, #26c6da);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .mission-card p {
        color: #4a5568;
    }

    /* === TRUST CARDS === */
    .trust-card {
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 172, 193, 0.08);
        box-shadow: 0 6px 25px rgba(0, 172, 193, 0.05);
    }

    .trust-card:hover {
        box-shadow: 0 15px 40px rgba(0, 172, 193, 0.1);
    }

    .trust-card h3 {
        color: #1a2942;
    }

    .trust-card p {
        color: #4a5568;
    }

    /* === CONTACT FORM === */
    .contact-form {
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(0, 172, 193, 0.1);
        box-shadow: 0 10px 40px rgba(0, 172, 193, 0.06);
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        background: #f8fbff;
        border: 1px solid rgba(0, 172, 193, 0.12);
        color: #1a2942;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #718096;
    }

    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus {
        border-color: #00acc1;
        background: #ffffff;
        box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.1);
    }

    /* === BUTTONS === */
    .btn-primary {
        background: linear-gradient(135deg, #00acc1, #26c6da, #4dd0e1);
        box-shadow: 0 4px 20px rgba(0, 172, 193, 0.3);
    }

    .btn-primary:hover {
        box-shadow: 0 8px 30px rgba(0, 172, 193, 0.4);
    }

    .btn-secondary {
        background: rgba(0, 172, 193, 0.06);
        border: 1px solid rgba(0, 172, 193, 0.2);
        color: #00acc1;
    }

    .btn-secondary:hover {
        background: rgba(0, 172, 193, 0.1);
        border-color: rgba(0, 172, 193, 0.3);
    }

    /* === FOOTER === */
    footer {
        background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
        border-top: 1px solid rgba(0, 172, 193, 0.08);
    }

    .footer-links a,
    .social-links a {
        color: #4a5568;
    }

    .footer-links a:hover,
    .social-links a:hover {
        color: #00acc1;
    }

    .footer-bottom p {
        color: #718096;
    }

    /* === PAGE LOADER === */
    .page-loader {
        background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    }

    .loader-logo {
        background: linear-gradient(135deg, #00acc1, #26c6da);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .loader-spinner {
        border-color: rgba(0, 172, 193, 0.1);
        border-top-color: #00acc1;
    }

    /* === SCROLL PROGRESS === */
    .scroll-progress {
        background: linear-gradient(90deg, #00acc1, #26c6da, #4dd0e1);
    }

    /* === AMBIENT GLOWS - Soft Clouds === */
    .ambient-glow {
        opacity: 0.06;
    }

    .glow-purple {
        background: radial-gradient(circle, rgba(0, 172, 193, 0.2), transparent 70%);
    }

    .glow-blue {
        background: radial-gradient(circle, rgba(41, 182, 246, 0.15), transparent 70%);
    }

    .glow-teal {
        background: radial-gradient(circle, rgba(77, 208, 225, 0.2), transparent 70%);
    }

    /* === SECTIONS - Cloudy Backgrounds === */
    .section {
        position: relative;
    }

    #products {
        background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 50%, #f8fbff 100%);
    }

    #services {
        background: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 50%, #ffffff 100%);
    }

    #projects {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 50%, #f8fbff 100%);
    }

    #about {
        background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    }

    #testimonials {
        background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 100%);
    }

    #contact {
        background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    }
}