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

:root {
    /* Professional Tech Agency Color Palette */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #06b6d4;
    --accent-color: #8b5cf6;
    --accent-cyan: #22d3ee;
    --accent-purple: #a855f7;
    --accent-pink: #ec4899;
    
    /* Dark Theme Colors */
    --bg-dark: #0a0e27;
    --bg-darker: #050816;
    --bg-card: rgba(15, 23, 42, 0.8);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);
    
    /* Text Colors */
    --text-dark: #0f172a;
    --text-light-dark: #e2e8f0;
    --text-medium: #94a3b8;
    --text-light: #cbd5e1;
    --text-white: #ffffff;
    
    /* Light Theme Fallbacks */
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    /* Professional Gradients */
    --bg-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --bg-gradient-2: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    --bg-gradient-3: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --bg-gradient-4: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #22d3ee 100%);
    --bg-gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1e293b 50%, #0f172a 100%);
    --bg-gradient-mesh: radial-gradient(at 0% 0%, rgba(99, 102, 241, 0.15) 0px, transparent 50%),
                        radial-gradient(at 100% 0%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
                        radial-gradient(at 100% 100%, rgba(236, 72, 153, 0.15) 0px, transparent 50%),
                        radial-gradient(at 0% 100%, rgba(6, 182, 212, 0.15) 0px, transparent 50%);
    
    /* Borders */
    --border-color: rgba(148, 163, 184, 0.2);
    --border-glow: rgba(99, 102, 241, 0.5);
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3), 0 0 40px rgba(139, 92, 246, 0.2);
    --shadow-colored: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(99, 102, 241, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--bg-dark);
    background-image: var(--bg-gradient-mesh);
    background-attachment: fixed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
    
    /* Fix spacing issues */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        margin-bottom: 2rem;
    }
}

/* Header Styles - Glassmorphism */
.header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-glass);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(99, 102, 241, 0.1);
    padding: 0.5rem 0;
}

.navbar {
    padding: 1.25rem 0;
    transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .navbar {
        padding: 0.75rem 0;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 640px) {
    .nav-wrapper {
        gap: 0.5rem;
    }
}

.logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-logo {
    height: 40px;
    padding: 0px;
    width: auto;
    margin-right: 0.5rem;
    display: block;
}

@media (max-width: 640px) {
    .logo-text {
        font-size: 1.4rem;
    }

    .site-logo {
        height: 34px;
    }
}

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

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

.logo a:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: White;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--bg-gradient-1);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

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

.dropdown {
    position: relative;
    z-index: 1001;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 0.75rem 0;
    min-width: 220px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1002;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    border-radius: 0;
}

.dropdown-menu li:first-child a {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.dropdown-menu li:last-child a {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.dropdown-menu li a:hover {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-actions .btn-primary {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        display: none;
    }
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
}

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

@media (max-width: 640px) {
    .phone-link {
        font-size: 0.9rem;
    }
    
    .phone-link i {
        font-size: 1rem;
    }
}

.btn-primary {
    background: var(--bg-gradient-1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-colored);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

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

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: var(--bg-gradient-1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .btn-secondary {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient-1);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s;
    display: block;
}

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

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

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

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
}

/* Hero Section - Enhanced */
.hero {
    background: var(--bg-gradient-dark);
    background-image: var(--bg-gradient-mesh);
    color: white;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: 5rem 0 3rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(99, 102, 241, 0.05) 25%, rgba(99, 102, 241, 0.05) 26%, transparent 27%, transparent 74%, rgba(139, 92, 246, 0.05) 75%, rgba(139, 92, 246, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(6, 182, 212, 0.05) 25%, rgba(6, 182, 212, 0.05) 26%, transparent 27%, transparent 74%, rgba(236, 72, 153, 0.05) 75%, rgba(236, 72, 153, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.12);
    bottom: 20%;
    left: 5%;
    animation-delay: 15s;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 50%; top: 10%; animation-delay: 6s; }
.particle:nth-child(5) { left: 70%; top: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 80%; top: 30%; animation-delay: 10s; }
.particle:nth-child(7) { left: 90%; top: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 60%; top: 80%; animation-delay: 14s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(20px);
        opacity: 1;
    }
    50% {
        transform: translateY(-60px) translateX(-10px);
        opacity: 0.8;
    }
    75% {
        transform: translateY(-30px) translateX(-20px);
        opacity: 1;
    }
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 1.5rem 0;
    }
}

@media (max-width: 640px) {
    .hero-content {
        padding: 1rem 0;
    }
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(1.5rem, 5vw, 4rem);
    font-weight: 800;
    font-family: 'Space Grotesk', 'Outfit';
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -3px;
    text-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

@media (max-width: 640px) {
    .hero-title {
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }
    
    .title-line {
        display: inline;
        white-space: nowrap;
    }
    
    .title-line.highlight {
        display: block;
        white-space: normal;
        margin-top: 0.5rem;
    }
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

@media (max-width: 640px) {
    .title-line:first-child {
        display: inline;
        white-space: nowrap;
    }
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
    animation-fill-mode: both;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.title-line:nth-child(3) {
    animation-delay: 0.6s;
    animation-fill-mode: both;
}

.title-line.highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fbbf24, transparent);
    border-radius: 2px;
    animation: highlightUnderline 1.5s ease-out 0.8s both;
}

@keyframes highlightUnderline {
    from {
        width: 0;
        left: 50%;
    }
    to {
        width: 100%;
        left: 0;
    }
}

.hero-description {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.3px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.8s both;
}

@media (max-width: 768px) {
    .hero-description {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0;
    }
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 1s both;
}

@media (max-width: 768px) {
    .hero-actions {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

.hero-actions .btn-primary i,
.hero-actions .btn-secondary i {
    transition: transform 0.3s;
}

.hero-actions .btn-primary:hover i {
    transform: translateX(5px);
}

.hero-actions .btn-secondary:hover i {
    transform: translateX(5px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 1.2s both;
}

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

.hero-stat-item .stat-value {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hero-stat-item .stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-scroll {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease-out 1.5s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: scrollDown 2s ease-in-out infinite;
}

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

/* Services Section - Enhanced */
.services {
    padding: 6rem 0;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .services {
        padding: 2.5rem 0;
    }
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-mesh);
    opacity: 0.5;
    z-index: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    font-family: 'Space Grotesk', 'Outfit';
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-white);
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    width: 100%;
    z-index: 1;
}

@media (max-width: 640px) {
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
        letter-spacing: -0.5px;
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--bg-gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-white);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
    z-index: 1;
    position: relative;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .section-subtitle {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        padding: 0;
    }
}

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

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.service-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 640px) {
    .service-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-2);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--bg-gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

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

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-gradient-1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.5s 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.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

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

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.service-icon i {
    font-size: 1.75rem;
    color: white;
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.service-card:hover .service-icon i {
    transform: scale(1.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    transition: all 0.3s;
}

.service-card:hover h3 {
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-dark);
}

.service-link:hover::after {
    width: 100%;
}

.service-link i {
    transition: transform 0.3s;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* CEO's Message Section */
.ceo-message {
    padding: 4rem 0;
    background: var(--bg-gradient-dark);
    background-image: var(--bg-gradient-mesh);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .ceo-message {
        padding: 3rem 0;
    }
}

@media (max-width: 640px) {
    .ceo-message {
        padding: 2.5rem 0;
    }
    
    .ceo-message-wrapper {
        gap: 1.5rem;
    }
}

.ceo-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.ceo-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(99, 102, 241, 0.05) 25%, rgba(99, 102, 241, 0.05) 26%, transparent 27%, transparent 74%, rgba(139, 92, 246, 0.05) 75%, rgba(139, 92, 246, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(6, 182, 212, 0.05) 25%, rgba(6, 182, 212, 0.05) 26%, transparent 27%, transparent 74%, rgba(236, 72, 153, 0.05) 75%, rgba(236, 72, 153, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.ceo-message-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.ceo-message-content {
    position: relative;
    height: 100%;
    display: flex;
}

.ceo-message-text {
    padding: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ceo-message-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.25rem;
    color: var(--text-white);
    line-height: 1.3;
}

.ceo-message-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.ceo-signature {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ceo-name {
    font-weight: 600;
    color: var(--text-white);
    font-size: 1rem;
    margin-bottom: 0.25rem !important;
}

.ceo-role {
    font-weight: 400;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0 !important;
}

.ceo-message-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ceo-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.ceo-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .features {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .features {
        padding: 2.5rem 0;
    }
    
    .features-grid {
        margin-top: 1.5rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 640px) {
    .features-grid {
        gap: 1.5rem;
    }
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: -0.5px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: var(--bg-dark);
    background-image: var(--bg-gradient-mesh);
    color: white;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .stats {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .stats {
        padding: 2.5rem 0;
    }
    
    .stats-grid {
        margin-top: 1.5rem;
    }
}

.stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-item {
    padding: 2.5rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: var(--bg-glass-hover);
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(99, 102, 241, 0.3);
    border-color: var(--border-glow);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 0.5rem;
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
}

.stat-label {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-white);
}

.stat-badge {
    display: inline-block;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    border: 1px solid var(--border-color);
    color: var(--accent-cyan);
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .portfolio {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .portfolio {
        padding: 2.5rem 0;
    }
    
    .portfolio-grid {
        margin-top: 1.5rem;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.portfolio-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-color);
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-1);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.portfolio-card:hover::after {
    opacity: 0.05;
}

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(99, 102, 241, 0.3);
    border-color: var(--border-glow);
    background: var(--bg-glass-hover);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: var(--bg-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-image::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: left 0.5s;
}

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

.portfolio-placeholder {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.portfolio-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    transition: color 0.3s;
}

.portfolio-card:hover .portfolio-content h3 {
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.portfolio-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-badge-small {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
    border: 1px solid var(--border-color);
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: var(--bg-dark);
    background-image: var(--bg-gradient-mesh);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .cta {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .cta {
        padding: 2.5rem 0;
    }
    
    .cta-content {
        padding: 0 0.5rem;
    }
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(99, 102, 241, 0.05) 25%, rgba(99, 102, 241, 0.05) 26%, transparent 27%, transparent 74%, rgba(139, 92, 246, 0.05) 75%, rgba(139, 92, 246, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(6, 182, 212, 0.05) 25%, rgba(6, 182, 212, 0.05) 26%, transparent 27%, transparent 74%, rgba(236, 72, 153, 0.05) 75%, rgba(236, 72, 153, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .cta-content h2 {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

@media (max-width: 640px) {
    .cta-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    /* display: flex; */
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
}

.cta-feature i {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .testimonials {
        padding: 2.5rem 0;
    }
}

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

@media (max-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.testimonial-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    border: 1px solid var(--border-color);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 6rem;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(99, 102, 241, 0.3);
    border-left-color: var(--accent-cyan);
    background: var(--bg-glass-hover);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-gradient-1);
}

.author-name {
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--text-white);
    font-size: 1.1rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--text-white);
    opacity: 0.8;
}

/* Blog Section */
.blog {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .blog {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .blog {
        padding: 2.5rem 0;
    }
}

.blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-gradient-mesh);
    opacity: 0.5;
    z-index: 0;
}

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

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.blog-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-glow), 0 0 0 1px rgba(99, 102, 241, 0.3);
    border-color: var(--border-glow);
    background: var(--bg-glass-hover);
}

.blog-card:hover .blog-image {
    transform: scale(1.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gradient-1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
}

.blog-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.blog-content h3,
.blog-listing-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-white);
    transition: color 0.3s;
    line-height: 1.4;
}

.blog-card:hover .blog-content h3,
.blog-listing-card:hover .blog-listing-content h3 {
    background: var(--bg-gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.blog-link:hover {
    gap: 1rem;
}

/* Footer */
.footer {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-contact p {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0.9;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 640px) {
    .footer-logo-img {
        height: 34px;
    }
}

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

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 999;
    }
    
    @media (max-width: 640px) {
        .nav-menu {
            top: 60px;
            padding: 1.5rem 0;
            max-height: calc(100vh - 60px);
        }
    }

    .nav-menu.active {
        left: 0 !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        justify-content: center;
        padding: 0.75rem 1rem;
        width: 100%;
        display: flex;
    }

    .dropdown {
        position: static;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: rgba(0, 0, 0, 0.3);
        margin-top: 0.5rem;
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px;
        box-shadow: none;
        border: 1px solid rgba(255, 255, 255, 0.1);
        min-width: auto;
        width: 100%;
        padding: 0.5rem 0;
    }

    .dropdown.active .dropdown-menu {
        display: block !important;
    }
    
    .dropdown .nav-link {
        padding-left: 2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        margin-left: 1rem;
        width: calc(100% - 2rem);
        border-radius: 8px;
        z-index: auto;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .phone-link span {
        display: none;
    }
    
    @media (max-width: 640px) {
        .phone-link {
            display: none;
        }
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .ceo-message-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ceo-message-text {
        padding: 2rem;
    }

    .ceo-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

    .portfolio-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 968px) {
    .hero {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
    }
    
    .hero-content {
        padding: 1.5rem 0;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
        min-height: auto;
        max-height: none;
        padding: 4rem 0 2.5rem;
    }
    
    .hero-content {
        padding: 0.75rem 0;
    }

    .hero-title {
        font-size: clamp(1.5rem, 6vw, 2.25rem);
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .title-line:first-child {
        letter-spacing: -0.5px;
        display: inline;
        white-space: nowrap;
        font-size: clamp(1.3rem, 5.5vw, 2rem);
    }
    
    .title-line.highlight {
        display: block;
        white-space: normal;
        margin-top: 0.5rem;
        font-size: clamp(1.5rem, 6vw, 2.25rem);
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
        padding: 0;
    }
    
    .hero-actions {
        margin-bottom: 2rem;
        gap: 0.75rem;
        width: 100%;
        flex-direction: column;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding-top: 1.5rem;
        flex-wrap: wrap;
    }
    
    .hero-stat-item .stat-value {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        margin-bottom: 1rem;
    }
    
    .badge-text {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .shape {
        filter: blur(60px);
    }
    
    .shape-1, .shape-2, .shape-3, .shape-4 {
        width: 200px;
        height: 200px;
    }

    .ceo-message {
        padding: 3rem 0;
    }

    .ceo-message-text {
        padding: 1.5rem;
    }

    .ceo-message-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .ceo-message-text p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .ceo-signature {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }

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

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* Advanced Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

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

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-slide-up {
    opacity: 0;
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-down {
    opacity: 0;
    animation: slideDown 0.8s ease-out forwards;
}

.animate-slide-left {
    opacity: 0;
    animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    opacity: 0;
    animation: slideRight 0.8s ease-out forwards;
}

.animate-scale-in {
    opacity: 0;
    animation: scaleIn 0.6s ease-out forwards;
}

/* Staggered Animation Delays */
.animate-slide-up:nth-child(1) { animation-delay: 0.1s; }
.animate-slide-up:nth-child(2) { animation-delay: 0.2s; }
.animate-slide-up:nth-child(3) { animation-delay: 0.3s; }
.animate-slide-up:nth-child(4) { animation-delay: 0.4s; }
.animate-slide-up:nth-child(5) { animation-delay: 0.5s; }
.animate-slide-up:nth-child(6) { animation-delay: 0.6s; }

/* Page Hero Styles */
.page-hero {
    background: var(--bg-gradient-dark);
    background-image: var(--bg-gradient-mesh);
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 4rem;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 5rem 0 3rem;
    }
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(0deg, transparent 24%, rgba(99, 102, 241, 0.05) 25%, rgba(99, 102, 241, 0.05) 26%, transparent 27%, transparent 74%, rgba(139, 92, 246, 0.05) 75%, rgba(139, 92, 246, 0.05) 76%, transparent 77%, transparent),
        linear-gradient(90deg, transparent 24%, rgba(6, 182, 212, 0.05) 25%, rgba(6, 182, 212, 0.05) 26%, transparent 27%, transparent 74%, rgba(236, 72, 153, 0.05) 75%, rgba(236, 72, 153, 0.05) 76%, transparent 77%, transparent);
    background-size: 50px 50px;
    opacity: 0.3;
    z-index: 0;
    animation: gridMove 20s linear infinite;
}

.page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Portfolio Detailed Page */
.portfolio-detailed {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.portfolio-detailed-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.portfolio-detailed-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    transition: transform 0.3s, box-shadow 0.3s;
}

@media (max-width: 768px) {
    .portfolio-detailed-card {
        grid-template-columns: 1fr;
    }
}

.portfolio-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.portfolio-detailed-image {
    background: var(--bg-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.portfolio-icon {
    font-size: 5rem;
    color: white;
    opacity: 0.9;
}

.portfolio-detailed-content {
    padding: 3rem;
}

.portfolio-detailed-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.portfolio-description {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.portfolio-detailed-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* About Page Styles */
.about-image-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-gradient-1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.about-image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
}

.vision-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.vision-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .vision-icon {
        margin: 0 auto;
        width: 150px;
        height: 150px;
    }
}

.vision-icon {
    width: 200px;
    height: 200px;
    background: var(--bg-gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.vision-icon i {
    font-size: 4rem;
    color: white;
}

.vision-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.vision-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.vision-text p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
}

.why-work-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

/* Blog Listing Page */
.blog-listing {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

.blog-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 640px) {
    .blog-listing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.blog-listing-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-listing-image {
    width: 100%;
    height: 200px;
    background: var(--bg-gradient-1);
}

.blog-listing-content {
    padding: 2rem;
}

.blog-listing-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
    line-height: 1.4;
}

.blog-listing-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .contact-section {
        padding: 3rem 0;
    }
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.contact-form-wrapper {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-white);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-info-wrapper {
    display: flex;
    align-items: flex-start;
}

.contact-info-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    width: 100%;
}

@media (max-width: 640px) {
    .contact-info-card {
        padding: 1.5rem;
    }
}

.contact-info-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-detail-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-white);
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-detail-item a:hover {
    color: var(--primary-color);
}

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

/* Service Page Styles */
.service-image-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    position: relative;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--bg-gradient-1);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.service-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.service-image-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
}

.expertise-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    position: relative;
}

@media (max-width: 768px) {
    .expertise-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .expertise-section {
        padding: 3rem 0;
    }
}

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

@media (max-width: 640px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

.expertise-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-glass), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-gradient-1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expertise-icon i {
    font-size: 2.5rem;
    color: white;
}

.expertise-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Technologies Section */
.technologies-section {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .technologies-section {
        padding: 3rem 0;
    }
}

.technologies-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .technologies-tabs {
        gap: 0.5rem;
        margin: 2rem 0 1.5rem;
    }
    
    .tech-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

.tech-tab {
    padding: 0.75rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1rem;
}

.tech-tab:hover {
    background: var(--bg-gradient-1);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tech-tab.active {
    background: var(--bg-gradient-1);
    color: white;
    box-shadow: var(--shadow-md);
}

.technologies-content {
    margin-top: 2rem;
}

.tech-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tech-content.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.5s ease-in;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 640px) {
    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
        margin-top: 1.5rem;
    }
}

.tech-item {
    background: var(--bg-glass);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
}

.tech-item i {
    font-size: 2.5rem;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.tech-item span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.tech-item:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.5);
}

.tech-item:hover i {
    transform: scale(1.15);
    filter: brightness(1.2);
}

.tech-item:hover span {
    color: var(--text-white);
    transform: translateY(-2px);
}

/* Active Nav Link */
.nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Counter Animation */
.animate-counter {
    animation: fadeIn 1s ease-out;
}

/* Enhanced Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

a, button {
    transition: all 0.3s ease;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* Text Gradient Effects */
.text-gradient {
    background: var(--bg-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading {
    animation: spin 1s linear infinite;
}

/* Responsive Updates for New Pages */
@media (max-width: 968px) {
    .portfolio-detailed-card {
        grid-template-columns: 1fr;
    }

    .vision-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vision-icon {
        margin: 0 auto;
    }

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

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

    .blog-listing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .page-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .page-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .portfolio-detailed-content {
        padding: 2rem;
    }

    .portfolio-detailed-content h3 {
        font-size: 1.5rem;
    }

    .contact-form-wrapper,
    .contact-info-card {
        padding: 2rem;
    }
}

