/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Primary Colors - Modern & Vibrant */
    --primary-blue: #0099CC;
    --primary-red: #FF3366;
    --secondary-purple: #7C3AED;
    --secondary-cyan: #06B6D4;
    --accent-orange: #FF6B35;
    --accent-pink: #EC4899;
    --text-dark: #0F172A;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    
    /* Neutral Colors */
    --white: #ffffff;
    --bg-light: #F8FAFC;
    --bg-gray: #F1F5F9;
    --bg-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    
    /* Gradients - Modern & Trendy */
    --gradient-primary: linear-gradient(135deg, #0099CC 0%, #7C3AED 100%);
    --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF3366 100%);
    --gradient-cool: linear-gradient(135deg, #06B6D4 0%, #0099CC 100%);
    --gradient-purple: linear-gradient(135deg, #7C3AED 0%, #EC4899 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(0, 153, 204, 0.2) 0px, transparent 50%),
                     radial-gradient(at 50% 0%, rgba(124, 58, 237, 0.15) 0px, transparent 50%),
                     radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.1) 0px, transparent 50%);
    
    /* Accent Colors */
    --accent-blue: #0EA5E9;
    --accent-light: #EFF6FF;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows - Modern & Layered */
    --shadow-sm: 0 2px 8px rgba(0, 153, 204, 0.08);
    --shadow-md: 0 4px 16px rgba(124, 58, 237, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 153, 204, 0.15);
    --shadow-xl: 0 16px 48px rgba(124, 58, 237, 0.2);
    --shadow-colored: 0 8px 32px rgba(124, 58, 237, 0.25);
    
    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

/* ===================================
   Navigation - Creative & Unique Design
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.navbar.scrolled::before {
    opacity: 1;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.nav-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 98%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
}

.navbar.scrolled .nav-background {
    border-radius: 16px;
}

.nav-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    gap: 2rem;
}

/* Logo Styling */
.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-wrapper img {
    height: 50px;
    width: auto;
    display: block;
    vertical-align: middle;
}

.logo:hover .logo-wrapper img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 16px rgba(124, 58, 237, 0.3));
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

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

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.125rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    border-radius: 12px;
    transition: all var(--transition-base);
    white-space: nowrap;
    position: relative;
}

.nav-link-bar {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: transform var(--transition-base);
}

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

.nav-link:hover .nav-link-bar {
    transform: translateX(-50%) scaleX(1);
}

.nav-link.active {
    color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(0, 153, 204, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
}

.nav-link.active .nav-link-bar {
    transform: translateX(-50%) scaleX(1);
}

/* CTA Button - Creative Design */
.nav-actions {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 16px rgba(0, 153, 204, 0.25);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-cta-text,
.btn-cta-icon {
    display: inline-flex;
    align-items: center;
}

.btn-cta-text,
.btn-cta-icon {
    display: inline-flex;
    align-items: center;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

/* Hamburger Menu - Creative Design */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 12px;
    background: transparent;
    transition: all var(--transition-base);
    position: relative;
    z-index: 10;
}

.hamburger:hover {
    background: var(--gradient-mesh);
}

.hamburger-box {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.hamburger.active .hamburger-box span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

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

.hamburger.active .hamburger-box span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

.hamburger:hover span {
    background: var(--gradient-warm);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    border: none;
    transition: all var(--transition-base);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 153, 204, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    transform: translateY(100%);
    transition: transform var(--transition-base);
    z-index: -1;
}

.btn-outline:hover::before {
    transform: translateY(0);
}

.btn-outline:hover {
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 153, 204, 0.3);
}

.btn-primary-nav {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-md);
    box-shadow: 0 2px 8px rgba(0, 153, 204, 0.3);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===================================
   Typography
   =================================== */
.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.25);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.text-primary {
    color: var(--primary-blue);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 50%, #FCE7F3 100%);
}

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

.animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 153, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(124, 58, 237, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.animated-bg::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 70% 40%, rgba(255, 99, 54, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(124, 58, 237, 0.06) 0%, transparent 40%);
    animation: float 15s ease-in-out infinite reverse;
}

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

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

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.4) 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    bottom: 15%;
    left: 40%;
    animation-delay: 10s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

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

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.625rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 20px rgba(0, 153, 204, 0.2);
    border: 2px solid rgba(0, 153, 204, 0.1);
    animation: pulse-tag 2s ease-in-out infinite;
}

.hero-tag i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes pulse-tag {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(0, 153, 204, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 28px rgba(124, 58, 237, 0.3);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-light);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-2xl);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 153, 204, 0.1);
}

.hero-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 153, 204, 0.15);
}

.hero-feature i {
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    text-align: center;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    position: relative;
    margin: 0 auto 10px;
    box-shadow: 0 0 20px rgba(0, 153, 204, 0.3);
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
    box-shadow: 0 0 10px rgba(0, 153, 204, 0.5);
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes scroll-down {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(15px);
        opacity: 0;
    }
}

/* ===================================
   Section Common Styles
   =================================== */
section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--white);
    position: relative;
}

.about::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 600px;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background: transparent;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    overflow: visible;
}

/* Remove the rotating background gradient */
.image-frame::before {
    display: none;
}

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

/* Flip Card Container */
.flip-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    height: 500px;
    perspective: 1000px;
    z-index: 5;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.flip-card-front {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    transform: rotateY(180deg);
    padding: 2rem;
}

/* Meeting Image (No Hover Effect) */
.meeting-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

/* Graph Container */
.graph-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.graph-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
    text-align: center;
}

.graph-subtitle {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.growth-graph {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 1rem;
}

/* Graph Animations */
.growth-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-line 2s ease-out forwards;
}

@keyframes draw-line {
    to {
        stroke-dashoffset: 0;
    }
}

.growth-area {
    opacity: 0;
    animation: fade-in-area 1s ease-out 0.5s forwards;
}

@keyframes fade-in-area {
    to {
        opacity: 1;
    }
}

.data-point {
    opacity: 0;
    animation: pop-in-point 0.4s ease-out forwards;
}

.data-point:nth-child(1) { animation-delay: 0.3s; }
.data-point:nth-child(2) { animation-delay: 0.5s; }
.data-point:nth-child(3) { animation-delay: 0.7s; }
.data-point:nth-child(4) { animation-delay: 0.9s; }
.data-point:nth-child(5) { animation-delay: 1.1s; }
.data-point:nth-child(6) { animation-delay: 1.3s; }
.data-point:nth-child(7) { animation-delay: 1.5s; }
.data-point:nth-child(8) { animation-delay: 1.7s; }
.data-point:nth-child(9) { animation-delay: 1.9s; }
.data-point:nth-child(10) { animation-delay: 2.1s; }

@keyframes pop-in-point {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.data-point.highlight {
    animation: pulse-highlight 2s ease-in-out 2.5s infinite;
}

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

.milestones text {
    opacity: 0;
    animation: fade-in-text 0.5s ease-out forwards;
}

.milestones text:nth-child(1) { animation-delay: 0.5s; }
.milestones text:nth-child(2) { animation-delay: 1.3s; }
.milestones text:nth-child(3) { animation-delay: 2.3s; }

@keyframes fade-in-text {
    to {
        opacity: 1;
    }
}

/* Graph Footer */
.graph-footer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.graph-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 600;
}

.graph-stat i {
    font-size: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Remove old timeline styles */

/* Center Visual with Tech Icons */
.about-center-visual {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    z-index: 5;
}

.tech-circle {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 153, 204, 0.12);
    border: 2px solid rgba(0, 153, 204, 0.08);
    transition: all var(--transition-base);
}

.tech-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.2);
}

.tech-circle i {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-2 {
    top: 25%;
    right: 0;
}

.circle-3 {
    bottom: 25%;
    right: 0;
}

.circle-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-5 {
    bottom: 25%;
    left: 0;
}

.circle-6 {
    top: 25%;
    left: 0;
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid rgba(0, 153, 204, 0.2);
    border-radius: 50%;
    animation: pulse-ring 3s ease-in-out infinite;
}

.logo-ring.ring-2 {
    border: 2px solid rgba(124, 58, 237, 0.2);
    animation-delay: 1.5s;
}

@keyframes pulse-ring {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.4;
    }
}

.logo-content {
    position: relative;
    width: 75px;
    height: 75px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 153, 204, 0.25);
    z-index: 2;
}

.logo-content i {
    font-size: 2.25rem;
    color: var(--white);
    animation: rocket-float 2.5s ease-in-out infinite;
}

@keyframes rocket-float {
    0%, 100% {
        transform: translateY(0) rotate(-45deg);
    }
    50% {
        transform: translateY(-6px) rotate(-45deg);
    }
}

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

.about-text {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    font-size: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.feature-box {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.feature-box:hover {
    background: var(--accent-light);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    box-shadow: 0 4px 12px rgba(0, 153, 204, 0.3);
    transition: all var(--transition-base);
}

.feature-box:hover .feature-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.feature-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 153, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.service-category {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.service-category:hover::before {
    transform: scaleX(1);
}

.service-category:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(0, 153, 204, 0.25);
    transition: all var(--transition-base);
}

.service-category:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-header h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.category-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.service-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--text-light);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9375rem;
}

.service-list i {
    color: var(--primary-blue);
    font-size: 0.875rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-blue);
    font-weight: 600;
    transition: all var(--transition-base);
}

.service-link:hover {
    gap: var(--spacing-sm);
}

/* ===================================
   Solutions Section
   =================================== */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.solution-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.solution-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.solution-card > * {
    position: relative;
    z-index: 1;
}

.solution-card:hover::after {
    opacity: 1;
}

.solution-card:hover {
    border-color: transparent;
    transform: translateY(-8px);
    box-shadow: var(--shadow-colored);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-purple);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}

.solution-card:hover .solution-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
}

.solution-icon i {
    font-size: 2.25rem;
    color: var(--white);
}

.solution-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

/* ===================================
   Clients Section - Auto-scrolling Logos
   =================================== */
.clients-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, rgba(0,153,204,0.02) 0%, rgba(236,72,153,0.02) 100%);
    overflow: hidden;
    position: relative;
}

.clients-section .section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: var(--spacing-lg) 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
    display: flex;
    gap: var(--spacing-2xl);
    animation: scroll-clients 40s linear infinite;
    width: fit-content;
}

.clients-track:hover {
    animation-play-state: paused;
}

.client-logo {
    flex-shrink: 0;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 2px solid var(--border-color);
}

.client-logo:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 153, 204, 0.15);
    border-color: var(--primary-blue);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all var(--transition-base);
}

.client-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===================================
   Why Us Section
   =================================== */
.why-us {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.why-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 0;
}

.why-card > * {
    position: relative;
    z-index: 1;
}

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

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-colored);
    border-color: transparent;
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-cool);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.why-card:hover .why-icon {
    background: var(--gradient-warm);
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(255, 51, 102, 0.4);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
    transition: all var(--transition-base);
}

.why-card:hover .why-icon i {
    transform: scale(1.1);
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

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

/* ===================================
   Stats Section
   =================================== */
.stats {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-content p {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-3xl);
}

.contact-info {
    max-width: 500px;
}

.contact-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.contact-item {
    display: flex;
    gap: var(--spacing-md);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-cool);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

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

.contact-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-text p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(0, 153, 204, 0.25);
}

.social-link:hover {
    background: var(--gradient-warm);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 51, 102, 0.4);
}

/* ===================================
   Contact Form
   =================================== */
.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(0, 153, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-form:hover::before {
    opacity: 0.1;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 153, 204, 0.1);
    transform: translateY(-2px);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all var(--transition-base);
    background: var(--white);
    padding: 0 0.25rem;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--primary-blue);
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary-blue);
}

.form-success.show {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-success p {
    color: var(--text-light);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--text-dark);
    color: var(--text-muted);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
    filter: brightness(0) invert(1);
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section h4 {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-contact i {
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
}

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: var(--primary-blue);
}

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

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

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Back to Top Button
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 153, 204, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

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

.back-to-top:hover {
    background: var(--gradient-warm);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 8px 32px rgba(255, 51, 102, 0.5);
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* ===================================
   Responsive Design - Comprehensive Mobile Support
   =================================== */

/* Very Small Mobile Devices (320px - 374px) */
@media (max-width: 374px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    /* Hide Get Started button on mobile */
    .btn-nav-cta {
        display: none !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Fix scroll indicator position and gap */
    .scroll-indicator {
        bottom: 30px;
    }
    
    .hero-features {
        margin-top: var(--spacing-xl);
        margin-bottom: 100px;
    }
    
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
    }
    
    .nav-container {
        max-width: 100%;
        overflow: hidden;
    }
    
    .section-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 1.625rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-feature {
        width: 100%;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .nav-content {
        padding: 0.625rem 0.75rem;
    }
    
    .logo-wrapper {
        min-width: 140px;
        padding: 0.375rem 0.5rem;
    }
    
    .logo-wrapper img {
        height: 38px;
    }
    
    .btn-nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.75rem;
    }
    
    .flip-card {
        width: 95%;
        max-width: 300px;
        height: 300px;
    }
    
    .flip-card-back {
        padding: 1rem;
    }
    
    .graph-title {
        font-size: 0.9375rem;
    }
    
    .graph-subtitle {
        font-size: 0.6875rem;
        margin-bottom: 0.75rem;
    }
    
    .graph-footer {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .graph-stat {
        font-size: 0.75rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .services-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small Mobile Devices (375px - 480px) */
@media (min-width: 375px) and (max-width: 480px) {
    /* Fix scroll indicator position and gap */
    .scroll-indicator {
        bottom: 35px;
    }
    
    .hero-features {
        margin-top: var(--spacing-xl);
        margin-bottom: 110px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .flip-card {
        width: 92%;
        max-width: 350px;
        height: 350px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Devices (Phones, 320px - 480px) - Base Mobile Styles */
@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Hide Get Started button on mobile */
    .btn-nav-cta {
        display: none !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Fix scroll indicator position and gap */
    .scroll-indicator {
        bottom: 35px;
    }
    
    .hero-features {
        margin-top: var(--spacing-xl);
        margin-bottom: 110px;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-title {
        font-size: 1.875rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Clients section mobile adjustments */
    .client-logo {
        width: 140px;
        height: 80px;
        padding: var(--spacing-sm);
    }
    
    .clients-track {
        gap: var(--spacing-lg);
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .logo-wrapper {
        min-width: 140px;
        padding: 0.25rem 0;
    }
    
    .logo-wrapper img {
        height: 38px;
    }
    
    .btn-nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
        gap: 0.375rem;
        border-radius: 10px;
    }
    
    .btn-cta-icon {
        width: 18px;
        height: 18px;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-content {
        padding: 0.75rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-feature {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-category,
    .solution-card,
    .why-card {
        padding: 1.5rem;
    }
    
    .category-icon,
    .solution-icon,
    .why-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i,
    .solution-icon i,
    .why-icon i {
        font-size: 1.5rem;
    }
    
    .about-image {
        min-height: 450px;
    }
    
    .flip-card {
        width: 92%;
        max-width: 420px;
        height: 420px;
    }
    
    .graph-title {
        font-size: 1.125rem;
    }
    
    .graph-subtitle {
        font-size: 0.75rem;
    }
    
    .graph-footer {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .image-frame {
        min-height: 450px;
        padding: 1.5rem;
    }
    
    .about-center-visual {
        width: 200px;
        height: 200px;
        top: 50%;
    }
    
    .tech-circle {
        width: 42px;
        height: 42px;
    }
    
    .tech-circle i {
        font-size: 1.125rem;
    }
    
    .center-logo {
        width: 80px;
        height: 80px;
    }
    
    .logo-content {
        width: 55px;
        height: 55px;
    }
    
    .logo-content i {
        font-size: 1.5rem;
    }
    
    .about-stats-badge {
        padding: 0.875rem 1.125rem;
        gap: 0.875rem;
        flex-direction: row;
        bottom: 5%;
    }
    
    .stats-badge-number {
        font-size: 1.375rem;
    }
    
    .stats-badge-label {
        font-size: 0.6875rem;
    }
    
    .stats-badge-divider {
        height: 30px;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Grid Layouts for Mobile */
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Hero Section Mobile */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-feature {
        width: 100%;
        padding: 0.75rem 1.25rem;
    }
    
    /* About Section Mobile */
    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-image {
        min-height: 400px;
        margin-bottom: 2rem;
    }
    
    .image-frame {
        min-height: 400px;
        padding: 1rem;
    }
    
    /* Contact Form Mobile */
    .contact-wrapper {
        flex-direction: column;
    }
    
    .contact-form-group {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-col {
        align-items: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    /* Nav Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 8px;
        width: 100%;
        text-align: center;
    }
    
    .nav-actions {
        width: 100%;
        margin-top: 1rem;
    }
    
    .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Larger Mobile Devices (481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    /* Hide Get Started button on mobile */
    .btn-nav-cta {
        display: none !important;
    }
    
    .nav-actions {
        display: none;
    }
    
    /* Fix scroll indicator position and gap */
    .scroll-indicator {
        bottom: 40px;
    }
    
    .hero-features {
        margin-top: var(--spacing-2xl);
        margin-bottom: 120px;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .flip-card {
        max-width: 450px;
        height: 450px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .btn-large {
        width: auto;
        min-width: 180px;
    }
}

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 1rem;
        right: 1rem;
    }


/* Small Devices (Large Phones, 481px - 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .logo-wrapper {
        min-width: 170px;
    }
    
    .logo-wrapper img {
        height: 46px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: block;
    }
}

/* Medium Devices (Tablets, 768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-content {
        padding: 1rem 1.25rem;
    }
    
    .logo-wrapper {
        min-width: 190px;
    }
    
    .logo-wrapper img {
        height: 50px;
    }
    
    .nav-link {
        padding: 0.75rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .btn-nav-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 12px;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-features {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-features {
        flex-direction: row;
    }
    
    .about-image {
        min-height: 520px;
    }
    
    .image-frame {
        min-height: 520px;
    }
    
    .about-center-visual {
        width: 240px;
        height: 240px;
    }
    
    .tech-circle {
        width: 52px;
        height: 52px;
    }
    
    .tech-circle i {
        font-size: 1.3rem;
    }
    
    .center-logo {
        width: 100px;
        height: 100px;
    }
    
    .logo-content {
        width: 68px;
        height: 68px;
    }
    
    .logo-content i {
        font-size: 2rem;
    }
    
    .flip-card {
        max-width: 480px;
        height: 480px;
    }
    
    .hamburger {
        display: block;
    }
}

/* Large Tablets & Small Laptops (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .nav-container {
        max-width: 960px;
        padding: 0 1.5rem;
    }
    
    .logo-wrapper {
        min-width: 200px;
    }
    
    .logo-wrapper img {
        height: 52px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-nav-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .container {
        max-width: 960px;
        padding: 0 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-image {
        min-height: 550px;
    }
    
    .image-frame {
        min-height: 550px;
    }
}

/* Standard Laptops (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .nav-container {
        max-width: 1140px;
    }
    
    .logo-wrapper {
        min-width: 220px;
    }
    
    .logo-wrapper img {
        height: 55px;
    }
    
    .nav-link {
        padding: 0.75rem 1.1rem;
        font-size: 0.9rem;
    }
    
    .btn-nav-cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .container {
        max-width: 1140px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-image {
        min-height: 600px;
    }
    
    .image-frame {
        min-height: 600px;
    }
}

/* Large Screens (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .nav-container {
        max-width: 1320px;
    }
    
    .logo-wrapper {
        min-width: 240px;
    }
    
    .logo-wrapper img {
        height: 58px;
    }
    
    .nav-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9375rem;
    }
    
    .btn-nav-cta {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
        border-radius: 12px;
    }
    
    .container {
        max-width: 1320px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.75rem;
    }
    
    .about-image {
        min-height: 650px;
    }
    
    .image-frame {
        min-height: 650px;
    }
}

/* Extra Large Screens (1920px and above) */
@media (min-width: 1920px) {
    .nav-container {
        max-width: 1600px;
    }
    
    .logo-wrapper {
        min-width: 260px;
    }
    
    .logo-wrapper img {
        height: 62px;
    }
    
    .nav-link {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-nav-cta {
        padding: 1rem 2.25rem;
        font-size: 1rem;
        border-radius: 14px;
    }
    
    .container {
        max-width: 1600px;
    }
    
    section {
        padding: 8rem 0;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .service-category,
    .solution-card,
    .why-card {
        padding: 2.5rem;
    }
    
    .about-image {
        min-height: 700px;
    }
    
    .image-frame {
        min-height: 700px;
    }
    
    .about-center-visual {
        width: 320px;
        height: 320px;
    }
    
    .tech-circle {
        width: 70px;
        height: 70px;
    }
    
    .tech-circle i {
        font-size: 1.75rem;
    }
    
    .center-logo {
        width: 140px;
        height: 140px;
    }
    
    .logo-content {
        width: 100px;
        height: 100px;
    }
    
    .logo-content i {
        font-size: 3rem;
    }
}

/* Mobile Navigation (All Screens below 992px) */
@media (max-width: 991px) {
    /* Hide Get Started button on all mobile/tablet screens */
    .btn-nav-cta {
        display: none !important;
    }
    
    .nav-actions {
        display: none !important;
    }
    
    .hamburger {
        display: block;
    }
    
    /* Fix navbar alignment on mobile */
    .nav-content {
        padding: 0.75rem 1rem;
    }
    
    .logo-wrapper {
        padding: 0.25rem 0;
        min-width: 140px;
    }
    
    .logo-wrapper img {
        height: 42px;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: 1.5rem;
        right: 1.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        border-radius: 20px;
        gap: 0.25rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
        border: 1px solid rgba(0, 153, 204, 0.1);
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem 1.25rem;
        justify-content: flex-start;
        font-size: 1rem;
    }
    
    .nav-link-bar {
        left: 1.25rem;
        transform: translateX(0) scaleX(0);
        width: 40px;
    }
    
    .nav-link:hover .nav-link-bar,
    .nav-link.active .nav-link-bar {
        transform: translateX(0) scaleX(1);
    }
    
    .nav-actions {
        margin-top: 1rem;
        width: 100%;
    }
    
    .btn-nav-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-features {
        flex-direction: column;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .solutions-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-background {
        width: 100%;
    }
    
    /* Mobile Menu Animation */
    .nav-menu.active .nav-item {
        animation: slideInItem 0.4s ease forwards;
    }
    
    .nav-menu.active .nav-item:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active .nav-item:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active .nav-item:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active .nav-item:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active .nav-item:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active .nav-item:nth-child(6) { animation-delay: 0.35s; }
    
    .nav-menu.active .nav-actions {
        animation: slideInItem 0.4s ease forwards 0.4s;
        opacity: 0;
    }
}

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

/* Desktop navbar */
@media (min-width: 992px) {
    .btn-nav-cta {
        display: flex !important;
    }
    
    .nav-actions {
        display: flex !important;
    }
    
    .hamburger {
        display: none !important;
    }
    
    .nav-content {
        padding: 1rem 2rem;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: none;
        box-shadow: none;
        border: none;
        padding: 0;
        flex: 1;
        justify-content: center;
    }
    
    .nav-item {
        display: flex;
        align-items: center;
        width: auto;
    }
    
    .nav-link {
        padding: 0.75rem 1.125rem;
        display: flex;
        align-items: center;
    }
    
    .btn-nav-cta {
        padding: 0.75rem 1.75rem;
    }
}