/* Root Variables - New Color Palette */
:root {
    /* Primary Brand Colors - Vibrant Tech Theme */
    --primary-coral: #FF6B6B;
    --primary-teal: #4ECDC4;
    --primary-yellow: #FFE66D;
    --primary-purple: #A8E6CF;
    
    /* Secondary Colors */
    --secondary-blue: #3498DB;
    --secondary-orange: #FF8C42;
    --secondary-pink: #FF7F7F;
    --secondary-mint: #7FDBDA;
    
    /* Neutral Colors */
    --neutral-900: #1A1A1A;
    --neutral-800: #2D2D2D;
    --neutral-700: #404040;
    --neutral-600: #5A5A5A;
    --neutral-500: #737373;
    --neutral-400: #9CA3AF;
    --neutral-300: #D1D5DB;
    --neutral-200: #E5E7EB;
    --neutral-100: #F3F4F6;
    --neutral-50: #F9FAFB;
    --white: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-teal) 50%, var(--primary-yellow) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-purple) 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-mint) 100%);
    --gradient-warm: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-orange) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(78, 205, 196, 0.05) 50%, rgba(255, 230, 109, 0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 30px rgba(255, 107, 107, 0.3);
    --shadow-tech: 0 8px 32px rgba(78, 205, 196, 0.3);
    
    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    color: var(--neutral-900);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    animation: logoSpin 0.6s ease;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-link-dot {
    width: 4px;
    height: 4px;
    background: var(--primary-teal);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.nav-link:hover::before {
    opacity: 0.1;
}

.nav-link:hover {
    color: var(--primary-coral);
    transform: translateY(-2px);
}

.nav-link:hover .nav-link-dot {
    opacity: 1;
    transform: scale(1);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.nav-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.nav-btn:hover::before {
    width: 300px;
    height: 300px;
}

.nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-coral);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 2rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 100%);
}

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

.hero-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-circle {
    animation: floatAnimation 6s ease-in-out infinite;
}

.circle-1 { animation-delay: 0s; }
.circle-2 { animation-delay: 2s; }
.circle-3 { animation-delay: 4s; }
.circle-4 { animation-delay: 1s; }
.circle-5 { animation-delay: 3s; }

.hero-wave {
    animation: waveAnimation 10s ease-in-out infinite;
}

.code-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.code-block {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
    color: var(--neutral-700);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(99, 102, 241, 0.1);
    animation: codeFloat 8s ease-in-out infinite;
}

.code-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.code-2 {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.code-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 6s;
}

.code-line {
    display: block;
    margin-bottom: 0.25rem;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 3;
    position: relative;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--neutral-900);
}

.title-line {
    display: block;
    position: relative;
}

.title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.3;
    border-radius: 4px;
    animation: underlineExpand 2s ease-out 1s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

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

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-secondary:hover {
    background: var(--neutral-100);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-showcase {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.3s ease;
}

.tech-showcase:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.tech-frame {
    width: 280px;
    height: 360px;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
}

.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tech-icon-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    color: var(--primary-purple);
    animation: iconFloat 6s ease-in-out infinite;
}

.icon-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
    background: linear-gradient(135deg, var(--primary-coral), var(--secondary-orange));
    color: var(--white);
}

.icon-2 {
    top: 30%;
    left: -15%;
    animation-delay: 2s;
    background: linear-gradient(135deg, var(--primary-teal), var(--secondary-mint));
    color: var(--white);
}

.icon-3 {
    bottom: 40%;
    right: -5%;
    animation-delay: 4s;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-orange));
    color: var(--white);
}

.icon-4 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1s;
    background: linear-gradient(135deg, var(--primary-purple), var(--secondary-pink));
    color: var(--white);
}

.icon-5 {
    top: 50%;
    right: -20%;
    animation-delay: 3s;
    background: linear-gradient(135deg, var(--secondary-blue), var(--primary-teal));
    color: var(--white);
}

/* Additional animations for new elements */
@keyframes floatingPolygon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
}

.floating-polygon {
    animation: floatingPolygon 8s ease-in-out infinite;
}

.poly-1 { animation-delay: 0s; }
.poly-2 { animation-delay: 4s; }

@keyframes floatingLine {
    0%, 100% {
        stroke-dasharray: 0, 20, 0, 20;
        opacity: 0.3;
    }
    50% {
        stroke-dasharray: 10, 10, 10, 10;
        opacity: 0.6;
    }
}

.floating-line {
    stroke-dasharray: 20;
    animation: floatingLine 6s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 3s; }

@keyframes techGrid {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.tech-grid {
    animation: techGrid 4s ease-in-out infinite;
}

@keyframes techNode {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.tech-node {
    animation: techNode 3s ease-in-out infinite;
}

.tech-node:nth-child(1) { animation-delay: 0s; }
.tech-node:nth-child(2) { animation-delay: 0.5s; }
.tech-node:nth-child(3) { animation-delay: 1s; }
.tech-node:nth-child(4) { animation-delay: 1.5s; }
.tech-node:nth-child(5) { animation-delay: 2s; }
.tech-node:nth-child(6) { animation-delay: 2.5s; }

@keyframes techConnection {
    0%, 100% {
        stroke-width: 2;
        opacity: 0.6;
    }
    50% {
        stroke-width: 3;
        opacity: 1;
    }
}

.tech-connection {
    animation: techConnection 4s ease-in-out infinite;
}

@keyframes dataFlow {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    20% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.data-flow {
    animation: dataFlow 3s ease-in-out infinite;
}

/* Animations */
@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(20px);
    }
}

@keyframes codeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(1deg);
        opacity: 1;
    }
}

@keyframes badgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
    }
    50% {
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 0.3;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(5deg);
    }
    66% {
        transform: translateY(5px) rotate(-3deg);
    }
}

/* About Us Section - Light Theme Design */
.about {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

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

.about-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About SVG Animation Elements */
.about-floating-circle {
    animation: aboutCircleFloat 8s ease-in-out infinite;
}

.about-circle-1 { animation-delay: 0s; }
.about-circle-2 { animation-delay: 2s; }
.about-circle-3 { animation-delay: 4s; }
.about-circle-4 { animation-delay: 6s; }

@keyframes aboutCircleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-25px) scale(1.1);
        opacity: 1;
    }
}

.about-floating-triangle {
    animation: aboutTriangleRotate 12s linear infinite;
}

.about-triangle-1 { animation-delay: 0s; }
.about-triangle-2 { animation-delay: 4s; }
.about-triangle-3 { animation-delay: 8s; }

@keyframes aboutTriangleRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.9;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

.about-floating-square {
    animation: aboutSquarePulse 6s ease-in-out infinite;
}

.about-square-1 { animation-delay: 0s; }
.about-square-2 { animation-delay: 3s; }

@keyframes aboutSquarePulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3) rotate(45deg);
        opacity: 0.8;
    }
}

.about-connection-line {
    stroke-dasharray: 20;
    animation: aboutLineFlow 8s ease-in-out infinite;
}

.about-line-1 { animation-delay: 0s; }
.about-line-2 { animation-delay: 4s; }

@keyframes aboutLineFlow {
    0%, 100% {
        stroke-dasharray: 0, 40, 0, 40;
        opacity: 0.4;
    }
    50% {
        stroke-dasharray: 20, 20, 20, 20;
        opacity: 0.8;
    }
}

.about-floating-hexagon {
    animation: aboutHexagonSpin 15s linear infinite;
}

.about-hex-1 { animation-delay: 0s; }
.about-hex-2 { animation-delay: 7.5s; }

@keyframes aboutHexagonSpin {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: rotate(90deg) scale(1.1);
        opacity: 0.7;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.9;
    }
    75% {
        transform: rotate(270deg) scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

.about-floating-diamond {
    animation: aboutDiamondBounce 10s ease-in-out infinite;
}

.about-diamond-1 { animation-delay: 0s; }
.about-diamond-2 { animation-delay: 5s; }

@keyframes aboutDiamondBounce {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) translateX(-25px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(20px) translateX(15px) rotate(270deg);
        opacity: 0.8;
    }
}

.about-tech-grid {
    animation: aboutTechGridPulse 5s ease-in-out infinite;
}

@keyframes aboutTechGridPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.about-tech-node {
    animation: aboutTechNodeGlow 4s ease-in-out infinite;
}

.about-tech-node:nth-child(1) { animation-delay: 0s; }
.about-tech-node:nth-child(2) { animation-delay: 0.8s; }
.about-tech-node:nth-child(3) { animation-delay: 1.6s; }
.about-tech-node:nth-child(4) { animation-delay: 2.4s; }
.about-tech-node:nth-child(5) { animation-delay: 3.2s; }

@keyframes aboutTechNodeGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 1;
    }
}

.about-data-particle {
    animation: aboutDataParticleFlow 6s ease-in-out infinite;
}

.about-particle-1 { animation-delay: 0s; }
.about-particle-2 { animation-delay: 1.5s; }
.about-particle-3 { animation-delay: 3s; }
.about-particle-4 { animation-delay: 4.5s; }

@keyframes aboutDataParticleFlow {
    0% {
        opacity: 0;
        transform: scale(0) translateX(-50px);
    }
    20% {
        opacity: 1;
        transform: scale(1) translateX(0px);
    }
    80% {
        opacity: 1;
        transform: scale(1) translateX(100px);
    }
    100% {
        opacity: 0;
        transform: scale(0) translateX(150px);
    }
}

.about-orbit-path {
    animation: aboutOrbitRotate 20s linear infinite;
}

@keyframes aboutOrbitRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-orbit-dot {
    animation: aboutOrbitDotPulse 3s ease-in-out infinite;
}

.about-orbit-dot:nth-child(1) { animation-delay: 0s; }
.about-orbit-dot:nth-child(2) { animation-delay: 1s; }
.about-orbit-dot:nth-child(3) { animation-delay: 2s; }

@keyframes aboutOrbitDotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Floating About Shapes */
.about-float-shape {
    animation: aboutFloatAnimation 12s ease-in-out infinite;
}

.about-shape-1 { animation-delay: 0s; }
.about-shape-2 { animation-delay: 4s; }
.about-shape-3 { animation-delay: 8s; }
.about-shape-4 { animation-delay: 2s; }

@keyframes aboutFloatAnimation {
    0%, 100% {
        transform: translateY(0px) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.1) rotate(180deg);
        opacity: 1;
    }
}

/* Geometric About Shapes */
.about-geo-shape {
    animation: aboutGeoRotate 20s linear infinite;
}

.about-geo-1 { animation-delay: 0s; }
.about-geo-2 { animation-delay: 7s; }
.about-geo-3 { animation-delay: 14s; }

@keyframes aboutGeoRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.3);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 6rem;
    animation: aboutHeaderSlideIn 1s ease-out;
}

@keyframes aboutHeaderSlideIn {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    animation: aboutBadgeGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes aboutBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
        transform: scale(1.02);
    }
}

.about-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--neutral-900);
    position: relative;
}

.about-title .title-line {
    display: block;
    position: relative;
}

.about-title .title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-title .title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.3;
    border-radius: 4px;
    animation: aboutUnderlineExpand 2s ease-out 1s both;
}

@keyframes aboutUnderlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 0.3;
    }
}

.about-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 6rem;
}

/* About Text Content */
.about-text {
    animation: aboutTextSlideIn 1s ease-out 0.3s both;
}

@keyframes aboutTextSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-description {
    font-size: 1.1rem;
    color: var(--neutral-700);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: highlightItemSlideIn 0.8s ease-out backwards;
}

.highlight-item:nth-child(1) { animation-delay: 0.5s; }
.highlight-item:nth-child(2) { animation-delay: 0.7s; }
.highlight-item:nth-child(3) { animation-delay: 0.9s; }

@keyframes highlightItemSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.highlight-item:hover .highlight-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.highlight-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
}

.highlight-description {
    font-size: 0.95rem;
    color: var(--neutral-600);
    line-height: 1.5;
}

/* About Visual Content */
.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: aboutVisualSlideIn 1s ease-out 0.6s both;
}

@keyframes aboutVisualSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.about-image-container {
    position: relative;
    width: 400px;
    height: 500px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(78, 205, 196, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(78, 205, 196, 0.15);
    transition: all 0.4s ease;
    animation: aboutImageFloat 8s ease-in-out infinite;
}

@keyframes aboutImageFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    }
}

.about-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(78, 205, 196, 0.25);
    border-color: rgba(78, 205, 196, 0.4);
}

.about-team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    height: 100%;
}

.team-member {
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.team-member:hover::before {
    opacity: 0.1;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

.member-name {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.85rem;
    color: var(--neutral-600);
    font-weight: 500;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stat-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: statBubbleFloat 6s ease-in-out infinite;
    text-align: center;
}

.stat-bubble.bubble-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.stat-bubble.bubble-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 3s;
}

@keyframes statBubbleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.9;
    }
    50% {
        transform: translateY(-15px) scale(1.05);
        opacity: 1;
    }
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--neutral-600);
    font-weight: 600;
    margin-top: 0.2rem;
}

/* About Values Section */
.about-values {
    margin: 6rem 0;
}

.values-header {
    text-align: center;
    margin-bottom: 4rem;
}

.values-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.values-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: valueCardSlideUp 0.8s ease-out backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.5s; }
.value-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes valueCardSlideUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.value-card:hover::before {
    opacity: 0.05;
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 10px 30px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(78, 205, 196, 0.4);
}

.value-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.value-card:hover .value-title {
    color: var(--primary-teal);
}

.value-description {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.6;
    transition: all 0.3s ease;
}

.value-card:hover .value-description {
    color: var(--neutral-700);
}

/* About CTA Section */
.about-cta {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: aboutCtaSlideIn 1s ease-out 0.8s both;
}

@keyframes aboutCtaSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 40px 40px 0 0;
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design for About Section */
@media screen and (max-width: 1024px) {
    .about {
        padding: 100px 1.5rem;
    }
    
    .about-title {
        font-size: 3.5rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-image-container {
        width: 350px;
        height: 450px;
    }
    
    .values-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {
    .about {
        padding: 80px 1rem;
    }
    
    .about-title {
        font-size: 2.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-container {
        width: 300px;
        height: 400px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .about {
        padding: 60px 1rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-header {
        margin-bottom: 4rem;
    }
    
    .about-image-container {
        width: 280px;
        height: 350px;
        padding: 1.5rem;
    }
    
    .team-member {
        padding: 1rem;
    }
    
    .member-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .about-cta {
        padding: 3rem 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-bubble {
        display: none;
    }
}

/* Services Section - Completely Redesigned */
.services {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    position: relative;
    overflow: hidden;
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.services-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-float-shape {
    animation: servicesFloatAnimation 8s ease-in-out infinite;
}

.shape-1 { animation-delay: 0s; }
.shape-2 { animation-delay: 2s; }
.shape-3 { animation-delay: 4s; }
.shape-4 { animation-delay: 6s; }

.services-geo-shape {
    animation: servicesGeoFloat 10s ease-in-out infinite;
}

.geo-1 { animation-delay: 1s; }
.geo-2 { animation-delay: 3s; }
.geo-3 { animation-delay: 5s; }

.services-connection-line {
    stroke-dasharray: 20;
    animation: servicesLineFlow 6s ease-in-out infinite;
}

.line-1 { animation-delay: 0s; }
.line-2 { animation-delay: 3s; }

.services-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
    animation: servicesBadgeGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.services-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--neutral-900);
}

.services-title .title-line {
    display: block;
    position: relative;
}

.services-title .title-line.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.services-title .title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
    opacity: 0.3;
    border-radius: 4px;
    animation: servicesUnderlineExpand 2s ease-out 1s both;
}

.services-subtitle {
    font-size: 1.25rem;
    color: var(--neutral-600);
    line-height: 1.7;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.05),
        0 2px 8px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    animation: serviceCardEntry 0.8s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.3);
}

.premium-card {
    background: linear-gradient(135deg, 
        rgba(255, 107, 107, 0.05) 0%, 
        rgba(78, 205, 196, 0.05) 50%, 
        rgba(255, 230, 109, 0.05) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-coral), var(--primary-teal), var(--primary-yellow)) 1;
    position: relative;
}

.premium-card::after {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    animation: premiumBadgePulse 2s ease-in-out infinite;
}

.service-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 30px;
    overflow: hidden;
}

.service-bg-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.service-card:hover .service-bg-pattern {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--white);
    box-shadow: 
        0 10px 30px rgba(78, 205, 196, 0.3),
        0 0 20px rgba(255, 107, 107, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.service-card:hover .service-icon::before {
    width: 100px;
    height: 100px;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(78, 205, 196, 0.4),
        0 0 30px rgba(255, 107, 107, 0.3);
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--primary-coral);
}

.service-description {
    font-size: 1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-description {
    color: var(--neutral-700);
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(78, 205, 196, 0.1);
    color: var(--primary-teal);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: rgba(78, 205, 196, 0.2);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-2px);
}

.service-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 30px 30px;
}

.service-card:hover .service-hover-overlay {
    transform: translateY(0);
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(78, 205, 196, 0.3);
}

.service-learn-more:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.services-cta {
    margin-top: 6rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem 3rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 40px 40px 0 0;
}

.cta-content {
    margin-bottom: 2.5rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Service Icon Specific Styles */
.ai-icon {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--secondary-orange) 100%);
}

.web-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-mint) 100%);
}

.mobile-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-orange) 100%);
}

.cloud-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-mint) 100%);
}

.design-icon {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-coral) 100%);
}

.consulting-icon {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-teal) 100%);
}

/* Services Section Animations */
@keyframes servicesFloatAnimation {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 1;
    }
}

@keyframes servicesGeoFloat {
    0%, 100% {
        transform: rotate(0deg) translateY(0px);
        opacity: 0.6;
    }
    50% {
        transform: rotate(10deg) translateY(-20px);
        opacity: 0.9;
    }
}

@keyframes servicesLineFlow {
    0%, 100% {
        stroke-dasharray: 0, 40, 0, 40;
        opacity: 0.3;
    }
    50% {
        stroke-dasharray: 20, 20, 20, 20;
        opacity: 0.6;
    }
}

@keyframes servicesBadgeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
        transform: scale(1.02);
    }
}

@keyframes servicesUnderlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 0.3;
    }
}

@keyframes serviceCardEntry {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes premiumBadgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 107, 107, 0.5);
    }
}

/* Tech Solutions/Services Section - Light Theme */
.tech-solutions {
    position: relative;
    padding: 120px 0;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    overflow: hidden;
}

.tech-solutions-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.tech-solutions-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Tech Solutions floating shapes animations */
.tech-solutions-float-shape {
    animation: techSolutionsFloatShapes 12s ease-in-out infinite;
}

.tech-shape-1 {
    animation-delay: 0s;
}

.tech-shape-2 {
    animation-delay: 4s;
}

.tech-shape-3 {
    animation-delay: 8s;
}

.tech-shape-4 {
    animation-delay: 2s;
}

@keyframes techSolutionsFloatShapes {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg);
        opacity: 0.9;
    }
    66% {
        transform: translate(-25px, 35px) rotate(240deg);
        opacity: 0.7;
    }
}

/* Tech Solutions geometric shapes */
.tech-solutions-geo-shape {
    animation: techGeoRotate 25s linear infinite;
}

.tech-geo-1 {
    animation-delay: 0s;
}

.tech-geo-2 {
    animation-delay: 8s;
}

.tech-geo-3 {
    animation-delay: 16s;
}

@keyframes techGeoRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.4;
    }
}

/* Connection lines animation */
.tech-solutions-connection-line {
    stroke-dasharray: 0, 300;
    animation: techConnectionFlow 6s ease-in-out infinite;
}

.tech-line-1 {
    animation-delay: 0s;
}

.tech-line-2 {
    animation-delay: 3s;
}

@keyframes techConnectionFlow {
    0% {
        stroke-dasharray: 0, 300;
        opacity: 0.2;
    }
    50% {
        stroke-dasharray: 150, 150;
        opacity: 0.8;
    }
    100% {
        stroke-dasharray: 0, 300;
        opacity: 0.2;
    }
}

.tech-solutions-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 2;
}

.tech-solutions-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.tech-solutions-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: rgba(78, 205, 196, 0.15);
    border-radius: 50px;
    color: var(--primary-teal);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(78, 205, 196, 0.3);
    animation: techBadgeGlow 4s ease-in-out infinite alternate;
}

@keyframes techBadgeGlow {
    0% {
        box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 40px rgba(78, 205, 196, 0.5);
        transform: scale(1.02);
    }
}

.tech-solutions-badge svg {
    width: 22px;
    height: 22px;
    color: var(--primary-teal);
}

.tech-solutions-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--neutral-900);
    font-family: var(--font-display);
}

.tech-title-line {
    display: block;
}

.tech-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.tech-highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    opacity: 0.3;
    border-radius: 3px;
    animation: techUnderlineExpand 2s ease-out 1.5s both;
}

@keyframes techUnderlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100%;
        opacity: 0.3;
    }
}

.tech-solutions-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-600);
    line-height: 1.8;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.tech-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-bottom: 6rem;
}

.tech-solution-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    animation: techCardEntry 0.8s ease-out backwards;
}

.tech-solution-card:nth-child(1) { animation-delay: 0.1s; }
.tech-solution-card:nth-child(2) { animation-delay: 0.2s; }
.tech-solution-card:nth-child(3) { animation-delay: 0.3s; }
.tech-solution-card:nth-child(4) { animation-delay: 0.4s; }
.tech-solution-card:nth-child(5) { animation-delay: 0.5s; }
.tech-solution-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes techCardEntry {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.tech-premium-card {
    background: linear-gradient(135deg, 
        rgba(78, 205, 196, 0.15) 0%, 
        rgba(255, 107, 107, 0.12) 50%, 
        rgba(255, 230, 109, 0.15) 100%);
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-teal), var(--primary-coral), var(--primary-yellow)) 1;
    position: relative;
    transform: scale(1.02);
}

.tech-premium-card::before {
    content: 'PREMIUM';
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: premiumPulse 2s ease-in-out infinite;
}

@keyframes premiumPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(255, 107, 107, 0.7);
    }
}

.tech-solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.tech-solution-card:hover::before {
    opacity: 0.1;
}

.tech-solution-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(78, 205, 196, 0.3);
    border-color: rgba(78, 205, 196, 0.3);
}

.tech-solution-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 24px;
    overflow: hidden;
}

.tech-solution-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.tech-solution-card:hover .tech-solution-pattern {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.tech-solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-coral) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    box-shadow: 
        0 10px 30px rgba(78, 205, 196, 0.4),
        0 0 20px rgba(255, 107, 107, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tech-solution-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.tech-solution-card:hover .tech-solution-icon::before {
    width: 120px;
    height: 120px;
}

.tech-solution-card:hover .tech-solution-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(78, 205, 196, 0.5),
        0 0 30px rgba(255, 107, 107, 0.4);
}

/* Icon specific colors */
.tech-ai-icon {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--secondary-orange) 100%);
}

.tech-web-icon {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--secondary-mint) 100%);
}

.tech-mobile-icon {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--secondary-orange) 100%);
}

.tech-cloud-icon {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-mint) 100%);
}

.tech-design-icon {
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-coral) 100%);
}

.tech-consulting-icon {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--primary-teal) 100%);
}

.tech-solution-content {
    position: relative;
    z-index: 2;
}

.tech-solution-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.tech-solution-card:hover .tech-solution-title {
    color: var(--primary-teal);
}

.tech-solution-description {
    font-size: 1.05rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.tech-solution-card:hover .tech-solution-description {
    color: var(--neutral-700);
}

.tech-solution-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.tech-feature-tag {
    background: rgba(78, 205, 196, 0.2);
    color: var(--primary-teal);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tech-solution-card:hover .tech-feature-tag {
    background: rgba(78, 205, 196, 0.3);
    border-color: rgba(78, 205, 196, 0.5);
    transform: translateY(-2px);
    color: var(--primary-coral);
}

.tech-solution-hover-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
    backdrop-filter: blur(15px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 24px 24px;
}

.tech-solution-card:hover .tech-solution-hover-overlay {
    transform: translateY(0);
}

.tech-solution-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.tech-solution-learn-more:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.6);
}

/* Tech Solutions CTA Section */
.tech-solutions-cta {
    margin-top: 6rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 4rem 3rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tech-solutions-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 40px 40px 0 0;
}

.tech-cta-content {
    margin-bottom: 2.5rem;
}

.tech-cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.tech-cta-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.tech-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.tech-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

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

.tech-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.tech-btn-outline {
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
}

.tech-btn-outline:hover {
    background: var(--neutral-100);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Portfolio/Our Work Section - Unique Hexagonal Design */
.portfolio {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

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

/* Unique Hexagonal Background Pattern */
.portfolio-shape {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0.06;
    animation: portfolioHexFloatAnimation 20s ease-in-out infinite;
}

.portfolio-shape.shape-1 {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary-teal);
    top: 8%;
    left: 12%;
    animation-delay: 0s;
}

.portfolio-shape.shape-1::after {
    content: '';
    position: absolute;
    left: -40px;
    top: 70px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 70px solid var(--primary-teal);
}

.portfolio-shape.shape-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid var(--primary-coral);
    top: 25%;
    right: 15%;
    animation-delay: 5s;
    transform: rotate(45deg);
}

.portfolio-shape.shape-3 {
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 60px solid var(--primary-yellow);
    bottom: 30%;
    left: 8%;
    animation-delay: 10s;
    transform: rotate(-30deg);
}

.portfolio-shape.shape-4 {
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--primary-purple);
    bottom: 10%;
    right: 20%;
    animation-delay: 15s;
    transform: rotate(60deg);
}

@keyframes portfolioHexFloatAnimation {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.06;
    }
    25% {
        transform: translateY(-40px) translateX(30px) rotate(90deg);
        opacity: 0.1;
    }
    50% {
        transform: translateY(-20px) translateX(-35px) rotate(180deg);
        opacity: 0.08;
    }
    75% {
        transform: translateY(35px) translateX(20px) rotate(270deg);
        opacity: 0.04;
    }
}

.portfolio-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Unique Portfolio Header with Geometric Design */
.portfolio-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    animation: portfolioHeaderSlideIn 1s ease-out;
}

.portfolio-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--primary-teal);
    opacity: 0.3;
    animation: headerHexRotate 8s linear infinite;
}

@keyframes headerHexRotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(360deg); }
}

@keyframes portfolioHeaderSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

/* Unique Geometric Underline */
.portfolio-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 8px solid var(--primary-teal);
    opacity: 0.4;
    animation: portfolioGeometricExpand 1.5s ease-out 0.5s both;
}

@keyframes portfolioGeometricExpand {
    0% {
        border-left-width: 0;
        border-right-width: 0;
        opacity: 0;
    }
    100% {
        border-left-width: 60px;
        border-right-width: 60px;
        opacity: 0.4;
    }
}

.portfolio-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    position: relative;
}

.portfolio-subtitle::before,
.portfolio-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.6;
}

.portfolio-subtitle::before {
    left: -50px;
    transform: translateY(-50%) rotate(45deg);
}

.portfolio-subtitle::after {
    right: -50px;
    transform: translateY(-50%) rotate(-45deg);
}

/* Revolutionary Hexagonal Grid Layout */
.portfolio-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2rem 0;
}

/* Hexagonal Portfolio Items */
.portfolio-item {
    position: relative;
    animation: portfolioHexSlideIn 0.8s ease-out backwards;
}

.portfolio-item:nth-child(1) { animation-delay: 0.2s; }
.portfolio-item:nth-child(2) { animation-delay: 0.4s; margin-top: 80px; }
.portfolio-item:nth-child(3) { animation-delay: 0.6s; }
.portfolio-item:nth-child(4) { animation-delay: 0.8s; margin-top: 80px; }
.portfolio-item:nth-child(5) { animation-delay: 1s; }
.portfolio-item:nth-child(6) { animation-delay: 1.2s; margin-top: 80px; }

@keyframes portfolioHexSlideIn {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Revolutionary Hexagonal Card Design */
.portfolio-card {
    width: 280px;
    height: 320px;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
}

.portfolio-card:hover {
    transform: translateY(-20px) scale(1.05) rotate(5deg);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(78, 205, 196, 0.3);
}

.portfolio-card:hover::before {
    opacity: 0.1;
}

/* Hexagonal Portfolio Image Container */
.portfolio-image {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 100px;
    background: linear-gradient(135deg, var(--neutral-100) 0%, var(--neutral-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.6s ease;
}

/* Unique 3D Floating Device Mockup */
.app-mockup {
    position: relative;
    width: 120px;
    height: 220px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 6px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: uniqueMockupFloat 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

@keyframes uniqueMockupFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
    }
    25% {
        transform: translateY(-8px) rotateX(8deg) rotateY(3deg);
    }
    50% {
        transform: translateY(-5px) rotateX(-3deg) rotateY(8deg);
    }
    75% {
        transform: translateY(8px) rotateX(-8deg) rotateY(-3deg);
    }
}

.portfolio-card:hover .app-mockup {
    transform: translateY(-10px) scale(1.1) rotateX(15deg) rotateY(10deg);
    animation-play-state: paused;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.15);
}

/* Innovative Screen Design */
.mockup-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-coral) 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.6s ease;
}

.mockup-screen::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 10;
}

.mockup-screen::after {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    z-index: 10;
}

/* Geometric Content Elements */
.mockup-content {
    flex: 1;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.mockup-element {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: all 0.4s ease;
    animation: uniqueElementPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.mockup-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 1s ease;
}

.portfolio-card:hover .mockup-element::before {
    left: 100%;
}

.mockup-element.element-1 {
    height: 25px;
    animation-delay: 0s;
}

.mockup-element.element-2 {
    height: 35px;
    width: 85%;
    animation-delay: 1s;
}

.mockup-element.element-3 {
    height: 20px;
    width: 70%;
    animation-delay: 2s;
}

@keyframes uniqueElementPulse {
    0%, 100% {
        background: rgba(255, 255, 255, 0.25);
        transform: scale(1);
    }
    50% {
        background: rgba(255, 255, 255, 0.4);
        transform: scale(1.02);
    }
}

/* Hexagonal Overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(78, 205, 196, 0.9);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

/* Unique Geometric Button */
.view-project-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-teal);
    border: none;
    padding: 0.8rem 1.5rem;
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(30px) scale(0.8);
    backdrop-filter: blur(10px);
}

.portfolio-card:hover .view-project-btn {
    transform: translateY(0) scale(1);
}

.view-project-btn:hover {
    background: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Hexagonal Portfolio Info */
.portfolio-info {
    position: absolute;
    bottom: 10px;
    left: 20px;
    right: 20px;
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 0.6s ease;
}

.portfolio-project-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-project-title {
    color: var(--primary-teal);
    transform: translateY(-2px);
}

.portfolio-description {
    color: var(--neutral-600);
    line-height: 1.4;
    font-size: 0.85rem;
    transition: all 0.4s ease;
}

.portfolio-card:hover .portfolio-description {
    color: var(--neutral-700);
}

/* Unique Tech Stack Tags */
.portfolio-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.8rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(78, 205, 196, 0.15);
    color: var(--primary-teal);
    padding: 0.2rem 0.6rem;
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(78, 205, 196, 0.2);
    transition: all 0.3s ease;
}

.portfolio-card:hover .tech-tag {
    background: rgba(78, 205, 196, 0.25);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-3px);
}

/* Responsive Design for Hexagonal Portfolio */
@media screen and (max-width: 1024px) {
    .portfolio {
        padding: 100px 1.5rem;
    }
    
    .portfolio-title {
        font-size: 3.5rem;
    }
    
    .portfolio-grid {
        gap: 1.5rem;
    }
    
    .portfolio-card {
        width: 250px;
        height: 290px;
    }
    
    .portfolio-item:nth-child(even) {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .portfolio {
        padding: 80px 1rem;
    }
    
    .portfolio-title {
        font-size: 2.8rem;
    }
    
    .portfolio-subtitle {
        font-size: 1.1rem;
    }
    
    .portfolio-subtitle::before,
    .portfolio-subtitle::after {
        display: none;
    }
    
    .portfolio-grid {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .portfolio-item:nth-child(even) {
        margin-top: 40px;
    }
    
    .portfolio-card {
        width: 220px;
        height: 260px;
    }
    
    .app-mockup {
        width: 100px;
        height: 180px;
    }
    
    .portfolio-project-title {
        font-size: 1rem;
    }
    
    .portfolio-description {
        font-size: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .portfolio {
        padding: 60px 1rem;
    }
    
    .portfolio-title {
        font-size: 2.2rem;
    }
    
    .portfolio-subtitle {
        font-size: 1rem;
    }
    
    .portfolio-header {
        margin-bottom: 3rem;
    }
    
    .portfolio-item:nth-child(even) {
        margin-top: 20px;
    }
    
    .portfolio-card {
        width: 200px;
        height: 240px;
    }
    
    .app-mockup {
        width: 90px;
        height: 160px;
    }
    
    .mockup-content {
        padding: 10px 8px;
        gap: 6px;
    }
    
    .mockup-element.element-1 {
        height: 20px;
    }
    
    .mockup-element.element-2 {
        height: 28px;
    }
    
    .mockup-element.element-3 {
        height: 16px;
    }
    
    .portfolio-info {
        padding: 0.8rem;
    }
    
    .portfolio-project-title {
        font-size: 0.95rem;
    }
    
    .portfolio-description {
        font-size: 0.75rem;
    }
    
    .view-project-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .tech-tag {
        padding: 0.15rem 0.5rem;
        font-size: 0.65rem;
    }
}

/* Contact Section - Light Theme Design */
.contact {
    padding: 120px 2rem;
    background: linear-gradient(135deg, var(--neutral-50) 0%, var(--white) 50%, var(--neutral-100) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-bg-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-contact-shapes {
    animation: contactFloatAnimation 10s ease-in-out infinite;
}

.shape-1 { animation-delay: 0s; }
.shape-2 { animation-delay: 3s; }
.shape-3 { animation-delay: 6s; }

@keyframes contactFloatAnimation {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 1;
    }
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    animation: contactHeaderRise 1s ease-out;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
    animation: contactHeaderGlow 3s ease-in-out infinite;
}

@keyframes contactHeaderRise {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactHeaderGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0.6;
        transform: translateX(-50%) scaleX(1.5);
    }
}

.contact-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    text-shadow: none;
    position: relative;
    display: inline-block;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: contactTitleUnderline 2s ease-out 0.5s both;
}

@keyframes contactTitleUnderline {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 120px;
        opacity: 1;
    }
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    text-shadow: none;
}

/* Revolutionary Dual-Panel Layout */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

/* Glassmorphism Contact Form - Light Theme */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(78, 205, 196, 0.15);
    animation: contactFormSlideIn 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.05) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 30px;
    z-index: -1;
}

@keyframes contactFormSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.contact-form {
    position: relative;
    z-index: 2;
}

/* Innovative Form Groups - Light Theme */
.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--neutral-800);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    position: relative;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
    opacity: 0;
    transition: all 0.3s ease;
}

.form-group:focus-within label::before {
    opacity: 1;
    left: -15px;
}

/* Revolutionary Input Styling - Light Theme */
.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(78, 205, 196, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    color: var(--neutral-800);
    font-size: 1rem;
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-500);
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 4px rgba(78, 205, 196, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Unique Floating Error Messages */
.error-message {
    position: absolute;
    bottom: -25px;
    left: 1.5rem;
    color: #FF6B6B;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: rgba(255, 107, 107, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* Revolutionary Submit Button */
.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 50%, #FFE66D 100%);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(255, 107, 107, 0.3);
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

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

.submit-btn:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 10px 25px rgba(255, 107, 107, 0.4);
}

.submit-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.submit-btn.loading {
    background: linear-gradient(135deg, #999 0%, #666 100%);
    cursor: not-allowed;
    transform: none;
}

.submit-btn .btn-text {
    transition: opacity 0.3s ease;
}

.submit-btn .btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loading {
    opacity: 1;
}

/* Innovative Contact Information Panel */
.contact-info {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(78, 205, 196, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(78, 205, 196, 0.15);
    animation: contactInfoSlideIn 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

@keyframes contactInfoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(80px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* 3D Floating Illustration */
.contact-illustration {
    margin-bottom: 3rem;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    animation: contactIllustrationFloat 8s ease-in-out infinite;
}

@keyframes contactIllustrationFloat {
    0%, 100% {
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
    }
    50% {
        transform: translateY(-20px) rotateX(-5deg) rotateY(5deg);
    }
}

.message-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: bubbleFloat 6s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.message-bubble.bubble-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 40px;
    animation-delay: 0s;
}

.message-bubble.bubble-2 {
    top: 40%;
    right: 15%;
    width: 80px;
    height: 50px;
    animation-delay: 2s;
}

.message-bubble.bubble-3 {
    bottom: 30%;
    left: 20%;
    width: 70px;
    height: 45px;
    animation-delay: 4s;
}

@keyframes bubbleFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) scale(1.1);
        opacity: 1;
    }
}

.bubble-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: bubbleDotPulse 1.5s ease-in-out infinite;
}

.bubble-dot:nth-child(2) { animation-delay: 0.3s; }
.bubble-dot:nth-child(3) { animation-delay: 0.6s; }

@keyframes bubbleDotPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

.bubble-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    margin: 4px 0;
    animation: bubbleLineExpand 2s ease-in-out infinite;
}

.bubble-line.line-1 {
    width: 80%;
}

.bubble-line.line-2 {
    width: 60%;
    animation-delay: 1s;
}

@keyframes bubbleLineExpand {
    0%, 100% {
        opacity: 0.5;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.2);
    }
}

.bubble-heart {
    font-size: 1.5rem;
    text-align: center;
    animation: heartBeat 2s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Floating Contact Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.icon-float {
    position: absolute;
    font-size: 1.5rem;
    animation: iconAdvancedFloat 8s ease-in-out infinite;
    opacity: 0.7;
}

.icon-float.icon-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.icon-float.icon-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.icon-float.icon-3 {
    top: 60%;
    right: 20%;
    animation-delay: 6s;
}

@keyframes iconAdvancedFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) translateX(15px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-20px) rotate(180deg);
        opacity: 0.8;
    }
    75% {
        transform: translateY(15px) translateX(10px) rotate(270deg);
        opacity: 0.6;
    }
}

/* Contact Details with Modern Cards */
.contact-details {
    position: relative;
    z-index: 2;
}

.details-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--neutral-900);
    margin-bottom: 1rem;
    text-shadow: none;
}

.details-description {
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    text-shadow: none;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(78, 205, 196, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
    animation: contactItemSlideUp 0.8s ease-out backwards;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-item:nth-child(1) { animation-delay: 0.8s; }
.contact-item:nth-child(2) { animation-delay: 1s; }
.contact-item:nth-child(3) { animation-delay: 1.2s; }

@keyframes contactItemSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(78, 205, 196, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--neutral-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--neutral-800);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: none;
}

/* Revolutionary Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-modal.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: scale(0.8) translateY(50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: successIconPulse 2s ease-in-out infinite;
}

@keyframes successIconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.modal-content p {
    color: var(--neutral-600);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.modal-close:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(78, 205, 196, 0.4);
}

/* Responsive Design for Contact Section */
@media screen and (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
}

@media screen and (max-width: 768px) {
    .contact {
        padding: 80px 1rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* Footer Section - Light Theme */
.footer {
    background: linear-gradient(135deg, var(--neutral-800) 0%, var(--neutral-900) 100%);
    color: white;
    padding: 60px 2rem 20px;
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-coral) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
}

.footer-shape {
    position: absolute;
    opacity: 0.05;
    animation: footerFloat 20s ease-in-out infinite;
}

.footer-shape.shape-1 {
    width: 100px;
    height: 100px;
    background: var(--primary-teal);
    border-radius: 50%;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.footer-shape.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--primary-coral);
    transform: rotate(45deg);
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.footer-shape.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--primary-yellow);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    bottom: 20%;
    left: 20%;
    animation-delay: 14s;
}

@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.05;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.1;
    }
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-link:hover {
    color: var(--primary-teal);
    padding-left: 10px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-teal);
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    width: 6px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-info-item:hover {
    color: var(--primary-teal);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    color: white;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.footer-newsletter {
    margin-top: 1rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-teal);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 205, 196, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    position: relative;
}

.footer-gradient-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.heart {
    color: var(--primary-coral);
    animation: heartBeat 2s ease-in-out infinite;
}

/* Footer Responsive */
@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-copyright {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .social-icons {
        justify-content: center;
    }
}
