/* ========================================
   Global Variables & Reset
   ======================================== */

:root {
    /* Primary Blue Color Scheme - Enhanced */
    --primary-blue: #0066FF;
    --primary-blue-dark: #0052CC;
    --primary-blue-darker: #003D99;
    --primary-blue-light: #3385FF;
    --primary-blue-lighter: #66A3FF;
    --primary-blue-pale: #E6F0FF;

    /* Vibrant Accent Colors */
    --electric-blue: #00D4FF;
    --deep-purple: #6B46FF;
    --vibrant-green: #00FF9D;
    --hot-pink: #FF006E;
    --cyber-yellow: #FFD60A;
    --neon-orange: #FF6B35;

    /* Dark Backgrounds for Contrast */
    --dark-bg: #0A0E27;
    --dark-bg-light: #131830;
    --dark-bg-lighter: #1A1F3A;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --gray-100: #F1F3F5;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --black: #000000;

    /* Accent Colors */
    --success: #00FF9D;
    --warning: #FFD60A;
    --danger: #FF006E;
    --info: #00D4FF;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* 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;
    --radius-full: 9999px;

    /* Enhanced Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-2xl: 0 25px 80px rgba(0, 0, 0, 0.4);
    --shadow-blue: 0 10px 40px rgba(0, 102, 255, 0.3);
    --shadow-purple: 0 10px 40px rgba(107, 70, 255, 0.3);
    --shadow-green: 0 10px 40px rgba(0, 255, 157, 0.3);
    --shadow-pink: 0 10px 40px rgba(255, 0, 110, 0.3);

    /* Glow Effects */
    --glow-blue: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3);
    --glow-purple: 0 0 20px rgba(107, 70, 255, 0.5), 0 0 40px rgba(107, 70, 255, 0.3);
    --glow-green: 0 0 20px rgba(0, 255, 157, 0.5), 0 0 40px rgba(0, 255, 157, 0.3);
    --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5), 0 0 40px rgba(255, 0, 110, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;

    /* Container */
    --container-max-width: 1200px;
}

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

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

body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========================================
   Animation Keyframes
   ======================================== */

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(5deg);
    }
    66% {
        transform: translateY(-15px) rotate(-5deg);
    }
}

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

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    50% {
        transform: translateY(30px) translateX(-30px) rotate(180deg);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes rotateGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 102, 255, 0.6);
    }
}

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

@keyframes colorShift {
    0%, 100% {
        filter: hue-rotate(0deg);
    }
    50% {
        filter: hue-rotate(30deg);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 102, 255, 0.5), 0 0 40px rgba(0, 102, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(0, 102, 255, 0.8), 0 0 60px rgba(0, 102, 255, 0.5);
    }
}

@keyframes aurora {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-extrabold);
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}
h2 {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025em;
}
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-blue-dark);
}

.text-link {
    color: var(--primary-blue);
    font-weight: var(--font-weight-medium);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-fast);
}

.text-link:hover {
    border-bottom-color: var(--primary-blue);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 50%, var(--deep-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.gradient-text-vibrant {
    background: linear-gradient(135deg, var(--hot-pink) 0%, var(--neon-orange) 50%, var(--cyber-yellow) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.gradient-text-cool {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 50%, var(--vibrant-green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

/* ========================================
   Container & Layout
   ======================================== */

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

.section-padding {
    padding: var(--spacing-3xl) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--spacing-2xl) 0;
    }
}

.bg-light {
    background-color: var(--light-gray);
}

.bg-gradient {
    background: linear-gradient(135deg, var(--primary-blue-pale) 0%, var(--white) 100%);
}

/* ========================================
   Section Headers
   ======================================== */

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

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Section CTA */
.section-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03) 0%, rgba(0, 212, 255, 0.03) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
}

.section-cta h3 {
    font-size: 2rem;
    font-weight: var(--font-weight-bold);
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.section-cta p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
}

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

.section-badge,
.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--glow-blue);
    animation: pulse 3s ease-in-out infinite;
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    text-align: center;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    line-height: 1.5;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 50%, var(--deep-purple) 100%);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: var(--glow-blue);
    position: relative;
    overflow: hidden;
    font-weight: var(--font-weight-bold);
}

.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 ease;
}

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

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-blue), 0 20px 50px rgba(0, 102, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* ========================================
   Navigation Bar
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 50%, var(--deep-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.logo-tagline {
    display: block;
    font-size: 0.65rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-600);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.logo-svg {
    height: 45px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.02);
}

/* Responsive logo sizes */
@media (max-width: 1400px) {
    .logo-svg {
        height: 41px;
    }
}

@media (max-width: 1200px) {
    .logo-svg {
        height: 39px;
    }
}

@media (max-width: 1024px) {
    .logo-svg {
        height: 34px;
    }

    .nav-wrapper {
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .logo-svg {
        height: 30px;
    }

    .nav-wrapper {
        padding: 0.4rem 0;
    }
}

@media (max-width: 480px) {
    .logo-svg {
        height: 26px;
    }

    .nav-wrapper {
        padding: 0.35rem 0;
    }

    .nav-actions .btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 400px) {
    .logo-svg {
        height: 24px;
    }

    .nav-wrapper {
        padding: 0.3rem 0;
        gap: 0.5rem;
    }

    .navbar .container {
        padding: 0 0.75rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .nav-actions .btn {
        font-size: 0.7rem;
        padding: 0.35rem 0.6rem;
        white-space: nowrap;
    }
}

.nav-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: var(--font-weight-bold);
    padding: 0.125rem 0.375rem;
    border-radius: var(--radius-sm);
    margin-left: 0.25rem;
    vertical-align: middle;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    margin: 0;
}

.nav-link {
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue), var(--deep-purple));
    background-size: 200% auto;
    border-radius: var(--radius-full);
    box-shadow: var(--glow-blue);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
    animation: gradientShift 2s ease infinite;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    overflow: hidden;
}

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

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(0, 102, 255, 0.1) 0%,
        rgba(0, 212, 255, 0.05) 25%,
        rgba(107, 70, 255, 0.08) 50%,
        rgba(0, 255, 157, 0.05) 75%,
        rgba(0, 102, 255, 0.1) 100%);
    background-size: 400% 400%;
    animation: aurora 20s ease infinite;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%);
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.1;
    border-radius: var(--radius-lg);
}

.shape:nth-child(1) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%);
    top: 10%;
    left: 5%;
    animation: float 20s infinite;
    filter: blur(40px);
    opacity: 0.3;
}

.shape:nth-child(2) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--deep-purple) 0%, var(--hot-pink) 100%);
    top: 60%;
    right: 10%;
    animation: floatReverse 25s infinite;
    filter: blur(40px);
    opacity: 0.3;
}

.shape:nth-child(3) {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--vibrant-green) 0%, var(--electric-blue) 100%);
    bottom: 20%;
    left: 15%;
    animation: floatSlow 30s infinite;
    border-radius: var(--radius-full);
    filter: blur(40px);
    opacity: 0.3;
}

.shape:nth-child(4) {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--neon-orange) 0%, var(--hot-pink) 100%);
    top: 30%;
    right: 20%;
    animation: float 18s infinite;
    filter: blur(40px);
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 1s ease-in-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--primary-blue-pale);
    animation: slideInUp 0.8s ease-in-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    animation: slideInUp 1s ease-in-out 0.2s both;
    text-shadow: 0 2px 40px rgba(0, 102, 255, 0.2);
    letter-spacing: -0.03em;
}

.hero-title.gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 40%, var(--deep-purple) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-in-out 0.2s both, gradientShift 8s ease infinite;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInUp 1s ease-in-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    animation: slideInUp 1s ease-in-out 0.6s both;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.social-proof-item i {
    color: #00CC7E;
    font-size: 1rem;
}

.social-proof-item strong {
    color: var(--gray-900);
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    animation: scaleIn 0.6s ease-in-out;
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 0.9s; }
.stat-item:nth-child(3) { animation-delay: 1s; }
.stat-item:nth-child(4) { animation-delay: 1.1s; }

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   About Section
   ======================================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.about-text h3 {
    color: var(--primary-blue);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: var(--primary-blue-pale);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.feature-item:hover {
    transform: translateX(5px);
    background: var(--primary-blue-lighter);
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature-item span {
    font-weight: var(--font-weight-medium);
    color: var(--gray-800);
}

.about-image {
    display: grid;
    gap: var(--spacing-md);
}

.about-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

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

.about-card h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.about-card p {
    color: var(--gray-600);
    margin: 0;
}

/* Modern About Section Styles */
.about-content-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.about-highlights {
    display: grid;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.highlight-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.highlight-item .content h4 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-xs);
}

.highlight-item .content p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
}

.stat-card-modern {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
}

.stat-card-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-card-modern .icon {
    width: 70px;
    height: 70px;
    background: var(--primary-blue-pale);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.stat-card-modern .icon i {
    color: var(--primary-blue);
    font-size: 2rem;
}

.stat-card-modern .number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-extrabold);
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-card-modern .label {
    color: var(--gray-600);
    font-weight: var(--font-weight-medium);
}

/* ========================================
   About Section - Professional Redesign
   ======================================== */

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 102, 255, 0.2) 50%, transparent 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Company Story */
.about-story h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-story p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.about-story strong {
    color: #0066FF;
    font-weight: 600;
}

/* Inline Stats */
.about-stats-inline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(0, 102, 255, 0.1);
}

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

.stat-inline .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-inline .stat-label {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Global Offices */
.about-offices h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.offices-intro {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.office-card {
    background: white;
    padding: 1.75rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(0, 102, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0066FF, #00D4FF);
    opacity: 0;
    transition: opacity 0.3s;
}

.office-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

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

.office-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.875rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-icon i {
    font-size: 1.5rem;
    color: white;
}

.office-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.office-info p {
    font-size: 0.9375rem;
    color: #718096;
    margin-bottom: 0.75rem;
}

.office-tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    color: #0066FF;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Core Values */
.about-values {
    margin-top: 5rem;
}

.about-values h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 3rem;
}

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

.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: 1.25rem;
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

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

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #4a5568;
}

/* Team Expertise */
.team-expertise {
    margin-top: 5rem;
}

.team-expertise h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    text-align: center;
    margin-bottom: 1rem;
}

.expertise-intro {
    font-size: 1.0625rem;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.expertise-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 1.25rem;
    border: 2px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0066FF, #00D4FF);
    opacity: 0;
    transition: opacity 0.3s;
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 12px 32px rgba(0, 102, 255, 0.15);
}

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

.expertise-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1) rotate(-5deg);
}

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

.expertise-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

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

.expertise-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #4a5568;
    line-height: 1.6;
}

.expertise-list li:last-child {
    margin-bottom: 0;
}

.expertise-list li i {
    color: #00CC7E;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Delivery Promise */
.delivery-promise {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border: 2px solid rgba(0, 255, 157, 0.2);
    border-radius: 1.25rem;
    padding: 2.5rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 3rem;
}

.promise-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: linear-gradient(135deg, #00FF9D, #00CC7E);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.promise-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
}

.promise-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #2d3748;
    margin: 0;
}

/* Responsive - About Section */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .delivery-promise {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
}

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

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

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

    .promise-content h4 {
        font-size: 1.25rem;
    }

    .promise-content p {
        font-size: 1rem;
    }

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

    .stat-inline .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   Services Section
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue), var(--deep-purple));
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
}

.service-card:nth-child(1)::before {
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue));
}

.service-card:nth-child(2)::before {
    background: linear-gradient(90deg, var(--deep-purple), var(--hot-pink));
}

.service-card:nth-child(3)::before {
    background: linear-gradient(90deg, var(--vibrant-green), var(--electric-blue));
}

.service-card:nth-child(4)::before {
    background: linear-gradient(90deg, var(--neon-orange), var(--cyber-yellow));
}

.service-card:nth-child(5)::before {
    background: linear-gradient(90deg, var(--hot-pink), var(--deep-purple));
}

.service-card:nth-child(6)::before {
    background: linear-gradient(90deg, var(--electric-blue), var(--vibrant-green));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(0, 102, 255, 0.3);
}

.service-card:nth-child(1):hover {
    box-shadow: var(--shadow-blue);
}

.service-card:nth-child(2):hover {
    box-shadow: var(--shadow-purple);
}

.service-card:nth-child(3):hover {
    box-shadow: var(--shadow-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--electric-blue) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue), var(--deep-purple));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
}

.service-card:hover .service-icon::before {
    opacity: 1;
    animation: glow 2s ease infinite;
}

.service-card:nth-child(1) .service-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
}

.service-card:nth-child(2) .service-icon {
    background: linear-gradient(135deg, var(--deep-purple), var(--hot-pink));
    box-shadow: var(--shadow-purple);
}

.service-card:nth-child(3) .service-icon {
    background: linear-gradient(135deg, var(--vibrant-green), var(--electric-blue));
    box-shadow: var(--shadow-green);
}

.service-card:nth-child(4) .service-icon {
    background: linear-gradient(135deg, var(--neon-orange), var(--cyber-yellow));
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.service-card:nth-child(5) .service-icon {
    background: linear-gradient(135deg, var(--hot-pink), var(--deep-purple));
    box-shadow: var(--shadow-pink);
}

.service-card:nth-child(6) .service-icon {
    background: linear-gradient(135deg, var(--electric-blue), var(--vibrant-green));
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

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

.service-card h3 {
    color: var(--gray-900);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-card > p {
    color: var(--gray-600);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--gray-700);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.service-features li::before {
    content: '\2022';
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0;
}

/* ========================================
   Modern Services Grid - Professional Design
   ======================================== */

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* ========================================
   Trust Signals Section
   ======================================== */

.trust-signals-section {
    padding: 2rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.trust-signals-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 600;
}

.trust-heading i {
    color: #00CC7E;
    font-size: 1.25rem;
}

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

.trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.badge-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-icon i {
    font-size: 1.25rem;
    color: #0066FF;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-text strong {
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1a202c;
}

.badge-text span {
    font-size: 0.8125rem;
    color: #718096;
    font-weight: 500;
}

/* Responsive Trust Signals */
@media (max-width: 1024px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-heading {
        font-size: 0.875rem;
    }
}

/* ========================================
   Service Card - Premium Container
   ======================================== */

.service-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Decorative corner accent */
.service-card-modern::before {
    content: '';
    position: absolute;
    top: -1px;
    right: -1px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(0, 102, 255, 0.03) 50%);
    border-radius: 0 1.5rem 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Subtle gradient overlay on hover */
.service-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.02) 0%, rgba(0, 212, 255, 0.02) 100%);
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 102, 255, 0.15),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        0 0 60px rgba(0, 102, 255, 0.08);
}

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

.service-card-modern:hover::after {
    opacity: 1;
}

/* ========================================
   Service Header - Icon & Badge Container
   ======================================== */

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

/* ========================================
   Service Icon - Gradient Circle
   ======================================== */

.service-icon-modern {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 16px rgba(0, 102, 255, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.service-icon-modern i {
    color: #ffffff;
    font-size: 2.25rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover .service-icon-modern {
    box-shadow:
        0 12px 24px rgba(0, 102, 255, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.service-card-modern:hover .service-icon-modern i {
    transform: rotate(15deg) scale(1.1);
}

/* Unique gradient colors per card */
.service-card-modern:nth-child(1) .service-icon-modern {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    box-shadow: 0 8px 16px rgba(0, 102, 255, 0.25);
}

.service-card-modern:nth-child(2) .service-icon-modern {
    background: linear-gradient(135deg, #6B46FF 0%, #FF006E 100%);
    box-shadow: 0 8px 16px rgba(107, 70, 255, 0.25);
}

.service-card-modern:nth-child(3) .service-icon-modern {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4AA 100%);
    box-shadow: 0 8px 16px rgba(0, 255, 157, 0.25);
}

.service-card-modern:nth-child(4) .service-icon-modern {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD60A 100%);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.25);
}

.service-card-modern:nth-child(5) .service-icon-modern {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    box-shadow: 0 8px 16px rgba(0, 212, 255, 0.25);
}

.service-card-modern:nth-child(6) .service-icon-modern {
    background: linear-gradient(135deg, #FF006E 0%, #6B46FF 100%);
    box-shadow: 0 8px 16px rgba(255, 0, 110, 0.25);
}

/* ========================================
   Service Badges - Status Labels
   ======================================== */

.service-badge {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 102, 255, 0.15);
    white-space: nowrap;
    animation: pulse-badge 3s ease-in-out infinite;
}

.service-badge-alt {
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: #ffffff;
    box-shadow:
        0 4px 12px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    white-space: nowrap;
    animation: pulse-badge 3s ease-in-out infinite;
}

/* Unique badge colors per card */
.service-card-modern:nth-child(1) .service-badge,
.service-card-modern:nth-child(1) .service-badge-alt {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
}

.service-card-modern:nth-child(2) .service-badge,
.service-card-modern:nth-child(2) .service-badge-alt {
    background: linear-gradient(135deg, #6B46FF 0%, #FF006E 100%);
}

.service-card-modern:nth-child(3) .service-badge,
.service-card-modern:nth-child(3) .service-badge-alt {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4AA 100%);
}

.service-card-modern:nth-child(4) .service-badge,
.service-card-modern:nth-child(4) .service-badge-alt {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD60A 100%);
}

.service-card-modern:nth-child(5) .service-badge,
.service-card-modern:nth-child(5) .service-badge-alt {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
}

.service-card-modern:nth-child(6) .service-badge,
.service-card-modern:nth-child(6) .service-badge-alt {
    background: linear-gradient(135deg, #FF006E 0%, #6B46FF 100%);
}

@keyframes pulse-badge {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

/* ========================================
   Service Title & Description
   ======================================== */

.service-card-modern h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #1a202c;
    letter-spacing: -0.02em;
}

.service-card-modern p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 100%;
}

/* ========================================
   Service Benefits
   ======================================== */

.service-benefits {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left: 3px solid #0066FF;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #2d3748;
}

.service-benefits strong {
    color: #0066FF;
    font-weight: 600;
}

/* ========================================
   Service Features List
   ======================================== */

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features-modern li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.9375rem;
    color: #2d3748;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-features-modern li:last-child {
    border-bottom: none;
}

.service-features-modern li:hover {
    padding-left: 0.5rem;
    background: rgba(0, 102, 255, 0.02);
    margin: 0 -0.5rem;
    padding-left: 1rem;
    padding-right: 0.5rem;
    border-radius: 0.5rem;
}

/* Checkmark icon styling */
.service-features-modern li i.fas.fa-check-circle {
    font-size: 1.125rem;
    color: #0066FF;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Unique checkmark colors per card */
.service-card-modern:nth-child(1) .service-features-modern li i {
    color: #0066FF;
}

.service-card-modern:nth-child(2) .service-features-modern li i {
    color: #6B46FF;
}

.service-card-modern:nth-child(3) .service-features-modern li i {
    color: #00D4AA;
}

.service-card-modern:nth-child(4) .service-features-modern li i {
    color: #FF6B35;
}

.service-card-modern:nth-child(5) .service-features-modern li i {
    color: #00D4FF;
}

.service-card-modern:nth-child(6) .service-features-modern li i {
    color: #FF006E;
}

/* ========================================
   Service Link - Call to Action
   ======================================== */

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: #0066FF;
    text-decoration: none;
    transition: all 0.3s 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: linear-gradient(90deg, #0066FF 0%, #00D4FF 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
    transform: translateX(5px);
    gap: 0.75rem;
}

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

.service-link i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
}

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

/* Unique link colors per card */
.service-card-modern:nth-child(1) .service-link {
    color: #0066FF;
}

.service-card-modern:nth-child(2) .service-link {
    color: #6B46FF;
}

.service-card-modern:nth-child(3) .service-link {
    color: #00D4AA;
}

.service-card-modern:nth-child(4) .service-link {
    color: #FF6B35;
}

.service-card-modern:nth-child(5) .service-link {
    color: #00D4FF;
}

.service-card-modern:nth-child(6) .service-link {
    color: #FF006E;
}

/* Link underline gradient colors */
.service-card-modern:nth-child(1) .service-link::after {
    background: linear-gradient(90deg, #0066FF 0%, #00D4FF 100%);
}

.service-card-modern:nth-child(2) .service-link::after {
    background: linear-gradient(90deg, #6B46FF 0%, #FF006E 100%);
}

.service-card-modern:nth-child(3) .service-link::after {
    background: linear-gradient(90deg, #00FF9D 0%, #00D4AA 100%);
}

.service-card-modern:nth-child(4) .service-link::after {
    background: linear-gradient(90deg, #FF6B35 0%, #FFD60A 100%);
}

.service-card-modern:nth-child(5) .service-link::after {
    background: linear-gradient(90deg, #00D4FF 0%, #0066FF 100%);
}

.service-card-modern:nth-child(6) .service-link::after {
    background: linear-gradient(90deg, #FF006E 0%, #6B46FF 100%);
}

/* ========================================
   Hover Effects - Enhanced Colored Glow
   ======================================== */

.service-card-modern:nth-child(1):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 102, 255, 0.2),
        0 0 0 1px rgba(0, 102, 255, 0.15),
        0 0 60px rgba(0, 212, 255, 0.1);
}

.service-card-modern:nth-child(2):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(107, 70, 255, 0.2),
        0 0 0 1px rgba(107, 70, 255, 0.15),
        0 0 60px rgba(255, 0, 110, 0.1);
}

.service-card-modern:nth-child(3):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 255, 157, 0.2),
        0 0 0 1px rgba(0, 212, 170, 0.15),
        0 0 60px rgba(0, 212, 170, 0.1);
}

.service-card-modern:nth-child(4):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(255, 107, 53, 0.2),
        0 0 0 1px rgba(255, 107, 53, 0.15),
        0 0 60px rgba(255, 214, 10, 0.1);
}

.service-card-modern:nth-child(5):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 212, 255, 0.2),
        0 0 0 1px rgba(0, 212, 255, 0.15),
        0 0 60px rgba(0, 102, 255, 0.1);
}

.service-card-modern:nth-child(6):hover {
    box-shadow:
        0 8px 12px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(255, 0, 110, 0.2),
        0 0 0 1px rgba(255, 0, 110, 0.15),
        0 0 60px rgba(107, 70, 255, 0.1);
}

/* ========================================
   Technology Marquee
   ======================================== */

.tech-marquee {
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(0, 102, 255, 0.05) 0%,
        rgba(0, 212, 255, 0.05) 25%,
        rgba(107, 70, 255, 0.05) 50%,
        rgba(0, 255, 157, 0.05) 75%,
        rgba(0, 102, 255, 0.05) 100%);
    background-size: 400% 400%;
    animation: aurora 20s ease infinite;
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-3xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    border-top: 2px solid rgba(0, 102, 255, 0.1);
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.tech-marquee::before,
.tech-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
}

.tech-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--white), transparent);
}

.tech-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--white), transparent);
}

.tech-track {
    display: flex;
    gap: var(--spacing-xl);
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

.tech-item-inline {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    white-space: nowrap;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tech-item-inline:hover {
    background: var(--white);
    transform: scale(1.1) translateY(-5px);
    border-color: var(--primary-blue);
    box-shadow: var(--glow-blue);
}

.tech-item-inline:nth-child(even):hover {
    border-color: var(--deep-purple);
    box-shadow: var(--glow-purple);
}

.tech-item-inline:nth-child(3n):hover {
    border-color: var(--vibrant-green);
    box-shadow: var(--glow-green);
}

.tech-item-inline i {
    font-size: 2rem;
    color: var(--primary-blue);
    transition: all var(--transition-base);
}

.tech-item-inline:hover i {
    transform: rotateY(360deg);
    filter: drop-shadow(0 0 10px currentColor);
}

.tech-item-inline:nth-child(even) i {
    color: var(--deep-purple);
}

.tech-item-inline:nth-child(3n) i {
    color: var(--vibrant-green);
}

.tech-item-inline span {
    font-weight: var(--font-weight-semibold);
    color: var(--gray-800);
}

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio-carousel {
    margin-top: var(--spacing-2xl);
}

.portfolioSwiper {
    padding: var(--spacing-lg) 0;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 100%;
    transition: all var(--transition-base);
    position: relative;
}

.portfolio-card::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.7s ease;
    z-index: 1;
    pointer-events: none;
}

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

.portfolio-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.portfolio-image {
    height: 250px;
    background: linear-gradient(135deg, var(--primary-blue-lighter) 0%, var(--primary-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.portfolio-placeholder i {
    color: var(--white);
    font-size: 3rem;
}

.portfolio-content {
    padding: var(--spacing-xl);
}

.portfolio-category {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: var(--white);
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-sm);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.portfolio-card:nth-child(2) .portfolio-category {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.portfolio-card:nth-child(3) .portfolio-category {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.portfolio-content h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.portfolio-content > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.portfolio-outcome {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border-left: 3px solid #00FF9D;
    padding: 0.875rem 1rem;
    margin-top: 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #2d3748;
}

.portfolio-outcome strong {
    color: #00CC7E;
    font-weight: 600;
    margin-right: 0.25rem;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
}

.tag {
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    color: var(--gray-700);
    font-size: 0.8125rem;
    border-radius: var(--radius-full);
}

.portfolio-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-200);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
}

/* ========================================
   Modern Portfolio Cards - Professional SaaS Design
   ======================================== */

.portfolio-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 102, 255, 0.2);
}

/* Portfolio Image Container */
.portfolio-image-modern {
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 1.5rem 1.5rem 0 0;
}

.portfolio-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card-modern:hover .portfolio-image-modern img {
    transform: scale(1.08);
}

/* Portfolio Placeholder with Gradients */
.portfolio-placeholder-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.portfolio-placeholder-modern i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.portfolio-card-modern:hover .portfolio-placeholder-modern i {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.5);
}

/* Portfolio Overlay with Enhanced Gradient */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    z-index: 2;
}

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

.portfolio-view-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #1a202c;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-view-btn:hover {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.4);
}

/* Portfolio Meta Tags - Glassmorphism */
.portfolio-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.portfolio-tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.portfolio-category,
.portfolio-tech {
    padding: 0.4rem 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolio-category {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(107, 70, 255, 0.9) 100%);
    color: white;
}

.portfolio-tech {
    background: rgba(255, 255, 255, 0.95);
    color: #4a5568;
}

.portfolio-card-modern:hover .portfolio-category,
.portfolio-card-modern:hover .portfolio-tech {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Portfolio Content Area */
.portfolio-content-modern {
    padding: 2rem;
}

.portfolio-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.portfolio-card-modern:hover h3 {
    color: #0066FF;
}

.portfolio-card-modern p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Portfolio Metrics - Enhanced Design */
.portfolio-metrics-modern {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(248, 250, 252, 0.8);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.portfolio-metrics-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 102, 255, 0.3) 50%,
        transparent 100%
    );
}

.metric-modern {
    flex: 1;
    text-align: center;
    transition: all 0.3s ease;
}

.metric-modern:hover {
    transform: translateY(-3px);
}

.metric-modern .metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
    display: block;
}

.metric-modern .metric-label {
    font-size: 0.75rem;
    color: #718096;
    font-weight: 500;
    display: block;
}

/* Metric Color Variants */
.metric-modern:nth-child(1) .metric-value {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-modern:nth-child(2) .metric-value {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-modern:nth-child(3) .metric-value {
    background: linear-gradient(135deg, #6B46FF 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* AI-Themed Gradient Classes */
.ai-gradient {
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    position: relative;
}

.ai-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .ai-gradient::after {
    opacity: 1;
}

.mobile-gradient {
    background: linear-gradient(135deg, #6B46FF 0%, #FF006E 100%);
    position: relative;
}

.mobile-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 0, 110, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .mobile-gradient::after {
    opacity: 1;
}

.ml-gradient {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4FF 100%);
    position: relative;
}

.ml-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 212, 255, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .ml-gradient::after {
    opacity: 1;
}

.automation-gradient {
    background: linear-gradient(135deg, #FF6B35 0%, #FFD60A 100%);
    position: relative;
}

.automation-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 214, 10, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .automation-gradient::after {
    opacity: 1;
}

.ecommerce-gradient {
    background: linear-gradient(135deg, #00D4FF 0%, #0066FF 100%);
    position: relative;
}

.ecommerce-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(0, 102, 255, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .ecommerce-gradient::after {
    opacity: 1;
}

.voice-gradient {
    background: linear-gradient(135deg, #6B46FF 0%, #FF006E 100%);
    position: relative;
}

.voice-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 0, 110, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-card-modern:hover .voice-gradient::after {
    opacity: 1;
}

/* ========================================
   Case Studies Section
   ======================================== */

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* ========================================
   Case Study Cards - Professional SaaS Design
   ======================================== */

.case-study-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.case-study-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.15);
}

/* Healthcare Theme - Purple Blue */
.case-study-card.healthcare:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(107, 70, 255, 0.2);
}

/* E-commerce Theme - Orange Pink */
.case-study-card.ecommerce:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(255, 107, 53, 0.2);
}

/* Finance Theme - Green Blue */
.case-study-card.finance:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 255, 157, 0.2);
}

/* Case Study Image Container */
.case-study-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Case Study Placeholder/Image Area */
.case-study-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #6B46FF 0%, #0066FF 100%);
}

/* Healthcare Gradient */
.case-study-card.healthcare .case-study-placeholder {
    background: linear-gradient(135deg, #6B46FF 0%, #0066FF 100%);
}

/* E-commerce Gradient */
.case-study-card.ecommerce .case-study-placeholder {
    background: linear-gradient(135deg, #FF6B35 0%, #FF006E 100%);
}

/* Finance Gradient */
.case-study-card.finance .case-study-placeholder {
    background: linear-gradient(135deg, #00FF9D 0%, #0066FF 100%);
}

/* Animated Gradient Overlay */
.case-study-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-card:hover .case-study-placeholder::before {
    opacity: 1;
}

.case-study-placeholder i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.case-study-card:hover .case-study-placeholder i {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.5);
}

/* Case Study Badge - Enhanced Glassmorphism */
.case-study-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 2;
    transition: all 0.3s ease;
}

.case-study-card.healthcare .case-study-badge {
    color: #6B46FF;
}

.case-study-card.ecommerce .case-study-badge {
    color: #FF6B35;
}

.case-study-card.finance .case-study-badge {
    color: #00D4AA;
}

.case-study-card:hover .case-study-badge {
    transform: translateY(-4px);
    box-shadow:
        0 6px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Case Study Content Area */
.case-study-content {
    padding: 2rem;
}

.case-study-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.case-study-card.healthcare:hover h3 {
    color: #6B46FF;
}

.case-study-card.ecommerce:hover h3 {
    color: #FF6B35;
}

.case-study-card.finance:hover h3 {
    color: #00D4AA;
}

.case-study-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Case Study Footer */
.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.case-study-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.case-study-read-time i {
    color: #0066FF;
    font-size: 0.875rem;
}

.case-study-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0066FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-study-link:hover {
    gap: 0.75rem;
    color: #0052CC;
}

.case-study-link i {
    transition: transform 0.3s ease;
}

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

/* Case Study Stats - Enhanced Layout */
.case-study-card .stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
}

.case-study-card .stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 102, 255, 0.3) 50%,
        transparent 100%
    );
}

.case-study-card .stat-item {
    flex: 1;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.case-study-card .stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.case-study-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.375rem;
    display: block;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Healthcare Stats Color */
.case-study-card.healthcare .stat-value {
    background: linear-gradient(135deg, #6B46FF 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* E-commerce Stats Color */
.case-study-card.ecommerce .stat-value {
    background: linear-gradient(135deg, #FF6B35 0%, #FF006E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Finance Stats Color */
.case-study-card.finance .stat-value {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-study-card .stat-label {
    font-size: 0.8125rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

/* ========================================
   Blog Section
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

/* ========================================
   Blog Cards - Professional SaaS Design
   ======================================== */

.blog-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 1.5rem;
    overflow: visible;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.04),
        0 8px 16px rgba(0, 0, 0, 0.08),
        0 16px 32px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(0, 102, 255, 0.15);
}

/* AI Development Theme - Blue Purple */
.blog-card.ai-development:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 102, 255, 0.2);
}

/* Mobile Development Theme - Purple Pink */
.blog-card.mobile-dev:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(107, 70, 255, 0.2);
}

/* ML/Data Theme - Green Cyan */
.blog-card.ml-data:hover {
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.06),
        0 12px 24px rgba(0, 0, 0, 0.12),
        0 24px 48px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 40px rgba(0, 255, 157, 0.2);
}

/* Blog Image Container */
.blog-image {
    height: 260px;
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem 1.5rem 0 0;
}

/* Blog Placeholder/Image Area */
.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0066FF 0%, #6B46FF 100%);
}

/* AI Development Gradient */
.blog-card.ai-development .blog-placeholder {
    background: linear-gradient(135deg, #0066FF 0%, #6B46FF 100%);
}

/* Mobile Development Gradient */
.blog-card.mobile-dev .blog-placeholder {
    background: linear-gradient(135deg, #6B46FF 0%, #FF006E 100%);
}

/* ML/Data Gradient */
.blog-card.ml-data .blog-placeholder {
    background: linear-gradient(135deg, #00FF9D 0%, #00D4FF 100%);
}

/* Animated Gradient Overlay */
.blog-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.blog-card:hover .blog-placeholder::before {
    opacity: 1;
}

.blog-placeholder i {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.blog-card:hover .blog-placeholder i {
    transform: scale(1.15) rotate(5deg);
    color: rgba(255, 255, 255, 0.5);
}

/* Blog Content Area */
.blog-content {
    padding: 2rem;
}

/* Blog Meta Information - Enhanced Layout */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.blog-meta span i {
    font-size: 0.875rem;
    color: #0066FF;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-meta span i {
    transform: scale(1.1);
}

/* Category Badge */
.blog-category {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.9) 0%, rgba(107, 70, 255, 0.9) 100%);
    color: white;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 2;
}

.blog-card:hover .blog-category {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.blog-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #0066FF;
}

.blog-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Read More Link - Enhanced with Underline Animation */
.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #0066FF;
    text-decoration: none;
    position: relative;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF 0%, #00D4FF 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-link:hover {
    gap: 0.75rem;
    color: #0052CC;
}

.blog-link:hover::after {
    width: calc(100% - 1.5rem);
}

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

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

.coming-soon-text {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--gray-600);
    font-size: 1.125rem;
    font-style: italic;
}

/* ========================================
   Process Section
   ======================================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.process-step {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all var(--transition-base);
}

.process-step:hover {
    transform: translateY(-8px) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.step-number {
    position: absolute;
    top: -15px;
    left: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    box-shadow: var(--shadow-blue);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: var(--spacing-lg) 0 var(--spacing-md) 0;
    transition: all var(--transition-base);
}

.process-step:hover .step-icon {
    background: var(--primary-blue-light);
    transform: rotateY(360deg);
}

.step-icon i {
    color: var(--primary-blue);
    font-size: 2rem;
    transition: color var(--transition-base);
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.process-step h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
}

.process-step > p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.step-features {
    list-style: none;
    padding: 0;
}

.step-features li {
    color: var(--gray-700);
    font-size: 0.875rem;
    padding: 0.375rem 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.step-features li::before {
    content: '\2713';
    color: var(--primary-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ========================================
   Technologies Section
   ======================================== */

.tech-categories {
    display: grid;
    gap: var(--spacing-xl);
}

.tech-category {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.tech-category:hover {
    box-shadow: var(--shadow-xl);
}

.tech-category h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-lg);
    font-size: 1.5rem;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--spacing-md);
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.tech-item:hover {
    background: var(--primary-blue-pale);
    transform: translateY(-5px) rotateY(10deg);
}

.tech-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    transition: all var(--transition-base);
}

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

.tech-item span {
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--gray-700);
    text-align: center;
}

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.portfolio-carousel {
    margin-top: var(--spacing-lg);
    position: relative;
}

.portfolioSwiper {
    padding: 2rem 0 4rem;
}

.portfolio-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 10px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 102, 255, 0.1);
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.6) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.portfolio-tags span {
    padding: 0.375rem 0.875rem;
    background: rgba(255, 255, 255, 0.95);
    color: #0066FF;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.portfolio-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portfolio-content p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
    flex: 1;
}

/* Portfolio Swiper Navigation */
.portfolioSwiper .swiper-button-next,
.portfolioSwiper .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.portfolioSwiper .swiper-button-next:after,
.portfolioSwiper .swiper-button-prev:after {
    font-size: 1.25rem;
    color: #0066FF;
    font-weight: 700;
}

.portfolioSwiper .swiper-button-next:hover,
.portfolioSwiper .swiper-button-prev:hover {
    background: #0066FF;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

.portfolioSwiper .swiper-button-next:hover:after,
.portfolioSwiper .swiper-button-prev:hover:after {
    color: white;
}

/* Portfolio Swiper Pagination */
.portfolioSwiper .swiper-pagination {
    bottom: 0;
}

.portfolioSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    transition: all 0.3s ease;
}

.portfolioSwiper .swiper-pagination-bullet-active {
    background: #0066FF;
    width: 28px;
    border-radius: 5px;
}

/* ========================================
   Testimonials Section - Enhanced Modern Design
   ======================================== */

.testimonials-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 255, 0.2), transparent);
}

.testimonials-carousel {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.testimonialsSwiper {
    padding: 2rem 1rem 3rem;
}

.testimonial-card-modern {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.03),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Gradient top accent */
.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0066FF 0%, #00D4FF 50%, #6B46FF 100%);
    background-size: 200% auto;
    animation: gradientShift 8s ease infinite;
}

/* Subtle background pattern */
.testimonial-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.swiper-slide-active .testimonial-card-modern {
    transform: scale(1.02);
}

.testimonial-card-modern:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(0, 102, 255, 0.2);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.08),
        0 24px 48px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 102, 255, 0.1),
        0 0 40px rgba(0, 102, 255, 0.12);
}

/* Large decorative quote mark */
.testimonial-quote {
    position: relative;
    font-size: 4rem;
    color: rgba(0, 102, 255, 0.06);
    line-height: 0.8;
    margin-bottom: 0.75rem;
    font-family: Georgia, serif;
    font-weight: 700;
    z-index: 1;
    user-select: none;
}

/* Testimonial text styling */
.testimonial-text {
    position: relative;
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: normal;
    font-weight: 400;
    z-index: 1;
    letter-spacing: -0.01em;
}

/* Testimonial context metrics */
.testimonial-context {
    position: relative;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border-left: 3px solid #0066FF;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 500;
    z-index: 1;
}

.testimonial-context i {
    color: #0066FF;
    margin-right: 0.5rem;
}

/* Star rating */
.testimonial-rating {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    z-index: 1;
    position: relative;
}

.testimonial-rating i {
    color: #FFD60A;
    font-size: 1.125rem;
    filter: drop-shadow(0 2px 6px rgba(255, 214, 10, 0.4));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card-modern:hover .testimonial-rating i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(255, 214, 10, 0.5));
}

/* Author section */
.testimonial-author-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 1.25rem;
    margin-top: auto;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1;
    position: relative;
}

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

/* Avatar styling */
.author-avatar-modern {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 16px rgba(0, 102, 255, 0.25),
        0 0 0 4px rgba(0, 102, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.author-avatar-modern::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #0066FF, #00D4FF, #6B46FF, #FF006E);
    background-size: 300% auto;
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
    animation: gradientShift 8s ease infinite;
}

.testimonial-card-modern:hover .author-avatar-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 24px rgba(0, 102, 255, 0.35),
        0 0 0 4px rgba(0, 102, 255, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.testimonial-card-modern:hover .author-avatar-modern::after {
    opacity: 0.6;
}

.author-avatar-modern i {
    color: white;
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Author info */
.author-info-modern h4 {
    color: #1a202c;
    margin: 0 0 0.375rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.author-info-modern p {
    color: #718096;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Company badge */
.testimonial-company-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.125rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 255, 0.05));
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0066FF;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-company-badge i {
    font-size: 1rem;
    opacity: 0.7;
}

.testimonial-card-modern:hover .testimonial-company-badge {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 255, 0.1));
    border-color: rgba(0, 102, 255, 0.25);
    transform: translateY(-2px);
}

/* Swiper pagination customization */
.testimonialsSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #cbd5e0;
    opacity: 1;
    transition: all 0.3s;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
    width: 32px;
    border-radius: 6px;
    background: linear-gradient(90deg, #0066FF, #00D4FF);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.4);
}

/* ========================================
   Consultation Section
   ======================================== */

.consultation-section {
    background: linear-gradient(135deg,
        var(--primary-blue) 0%,
        var(--electric-blue) 25%,
        var(--deep-purple) 50%,
        var(--primary-blue) 100%);
    background-size: 400% 400%;
    animation: aurora 20s ease infinite;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 157, 0.1) 0%, transparent 50%);
}

.consultation-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    border-radius: var(--radius-full);
    animation: float 20s infinite;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.consultation-text h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 2.5rem;
    font-weight: 800;
}

.consultation-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    font-size: 1.125rem;
}

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

.consultation-benefits li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    color: var(--white);
    padding: var(--spacing-sm) 0;
    font-weight: 500;
    font-size: 1.0625rem;
}

.consultation-benefits li i {
    color: #10B981;
    background: rgba(255, 255, 255, 0.95);
    width: 28px;
    height: 28px;
    min-width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Calendly Inline Widget Container */
.consultation-calendly {
    background: var(--white);
    padding: 0;
    border-radius: 1.25rem;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(0, 102, 255, 0.1);
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.consultation-calendly::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0066FF, #00D4FF, #6B46FF);
    z-index: 1;
}

/* Custom Calendly Header */
.calendly-header {
    padding: 1.3rem 1rem 1rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 212, 255, 0.03));
    border-bottom: 1px solid rgba(0, 102, 255, 0.1);
    text-align: center;
}

.calendly-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.calendly-header p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
}

/* Override Calendly widget styles */
.calendly-inline-widget {
    border-radius: 0 !important;
    overflow: hidden !important;
    position: relative;
    min-height: 900px !important;
    height: 900px !important;
    width: 100% !important;
}

.calendly-inline-widget iframe {
    border-radius: 0 !important;
    min-height: 900px !important;
    height: 900px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

.consultation-calendly #codynex-cal {
    min-height: 740px;
}

/* Hide scrollbars but keep functionality */
.calendly-inline-widget iframe::-webkit-scrollbar {
    width: 6px;
}

.calendly-inline-widget iframe::-webkit-scrollbar-track {
    background: transparent;
}

.calendly-inline-widget iframe::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 255, 0.2);
    border-radius: 3px;
}

.calendly-inline-widget iframe::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 102, 255, 0.3);
}

/* Legacy form styles - keeping for backwards compatibility */
.booking-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: none; /* Hidden since we're using Calendly now */
}

.booking-form h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* ========================================
   Contact Section
   ======================================== */

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
}

.contact-info h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.contact-info > p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

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

.contact-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
    transition: transform var(--transition-base);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-item h4 {
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--gray-600);
    margin: 0;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-blue-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-category {
    background: white;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 102, 255, 0.1);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 102, 255, 0.1);
}

.faq-category-title i {
    color: #0066FF;
    font-size: 1.125rem;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.25rem 0;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.faq-item:first-child {
    padding-top: 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #0066FF;
}

.faq-question span {
    flex: 1;
    line-height: 1.6;
}

.faq-question i {
    flex-shrink: 0;
    font-size: 0.875rem;
    color: #0066FF;
    transition: transform 0.3s ease;
    margin-top: 0.25rem;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 600px;
    padding-top: 1rem;
}

.faq-answer p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 2px solid rgba(0, 102, 255, 0.15);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.faq-cta p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

/* FAQ Responsive */
@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
    }
}

/* Modern Contact Grid */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
}

.contact-items-modern {
    display: grid;
    gap: var(--spacing-lg);
}

.contact-items-modern .contact-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.contact-items-modern .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Response Promise */
.response-promise {
    background: linear-gradient(135deg, rgba(0, 255, 157, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border-left: 3px solid #00FF9D;
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.response-promise i {
    color: #00CC7E;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.response-promise span {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #2d3748;
}

.response-promise strong {
    color: #00CC7E;
    font-weight: 600;
}

/* Form Intro */
.form-intro {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

/* ========================================
   Forms
   ======================================== */

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    color: var(--gray-700);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-xs);
}

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

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

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

.form-success p {
    color: var(--gray-700);
    font-size: 1.125rem;
    margin: 0;
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

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

.footer-column p {
    color: var(--gray-400);
    line-height: 1.7;
}

.footer-tagline {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
}

.footer-tagline a {
    color: var(--primary-blue-light);
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-column ul li a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--primary-blue-light);
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-email {
    color: var(--primary-blue-light);
    font-weight: var(--font-weight-medium);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-800);
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links a {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--primary-blue-light);
}

/* ========================================
   Footer - Professional Redesign
   ======================================== */

.footer {
    background: linear-gradient(180deg, #0A0E27 0%, #151B35 100%);
    color: #cbd5e0;
    padding: 3.25rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.3) 50%, transparent 100%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Company Info Column */
.footer-about {
    max-width: 360px;
}

.footer-logo h3 {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00D4FF, #0066FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo-svg {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 1.5rem;
}

@media (max-width: 1400px) {
    .footer-logo-svg {
        height: 41px;
    }
}

@media (max-width: 1200px) {
    .footer-logo-svg {
        height: 39px;
    }
}

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

@media (max-width: 768px) {
    .footer-logo-svg {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .footer-logo-svg {
        height: 26px;
    }
}

@media (max-width: 400px) {
    .footer-logo-svg {
        height: 24px;
    }
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 1.25rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 0.65rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0aec0;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066FF, #00D4FF);
    transition: width 0.3s;
}

.footer-links a:hover {
    color: #00D4FF;
    padding-left: 0.5rem;
}

.footer-links a:hover::before {
    width: 12px;
}

/* Contact Information */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    color: #a0aec0;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #0066FF;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #00D4FF;
}

.footer-contact-col {
    align-items: flex-end;
    text-align: right;
}

.footer-contact-col .footer-contact {
    width: 100%;
}

.footer-contact-col .footer-contact li {
    justify-content: flex-end;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom-left p {
    color: #718096;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-right a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-bottom-right a:hover {
    color: #00D4FF;
}

.footer-bottom-right .separator {
    color: rgba(255, 255, 255, 0.2);
}

/* Responsive - Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        max-width: 100%;
        grid-column: 1 / -1;
    }
}

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-contact-col {
        align-items: flex-start;
        text-align: left;
    }

    .footer-contact-col .footer-contact li {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 0;
    }

    .footer-bottom-right {
        justify-content: center;
    }
}

/* ========================================
   Scroll to Top Button
   ======================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-blue);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

/* ========================================
   Swiper Customization
   ======================================== */

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-blue);
    background: var(--white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.25rem;
}

.swiper-pagination-bullet {
    background: var(--gray-400);
    opacity: 1;
    transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: var(--radius-full);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

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

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

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

    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .about-content-modern,
    .consultation-content,
    .contact-grid-modern {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: var(--spacing-xl);
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .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);
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .case-studies-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Portfolio responsive */
    .portfolio-image {
        height: 240px;
    }

    .portfolio-content {
        padding: 1.5rem;
    }

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

    .portfolio-content p {
        font-size: 0.875rem;
    }

    .portfolioSwiper .swiper-button-next,
    .portfolioSwiper .swiper-button-prev {
        display: none;
    }

    /* Testimonials responsive */
    .testimonial-card-modern {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 3rem;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .testimonial-author-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testimonial-company-badge {
        width: 100%;
        justify-content: center;
    }

    .author-avatar-modern {
        width: 60px;
        height: 60px;
    }

    .author-avatar-modern i {
        font-size: 1.625rem;
    }

    .author-info-modern h4 {
        font-size: 1.125rem;
    }

    .author-info-modern p {
        font-size: 0.9375rem;
    }

    .testimonialsSwiper {
        padding: 2rem 0.5rem 4rem;
    }

    /* Consultation section mobile */
    .consultation-text h2 {
        font-size: 2rem;
    }

    .consultation-text p {
        font-size: 1rem;
    }

    .consultation-benefits li {
        font-size: 1rem;
    }

    .consultation-calendly {
        padding: 1rem;
    }

    .calendly-inline-widget {
        min-width: 100% !important;
        min-height: 780px !important;
        height: 780px !important;
    }

    .consultation-calendly #codynex-cal {
        min-height: 780px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .shape {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: var(--spacing-2xl) 0;
    }

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

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

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

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

    .portfolio-metrics,
    .portfolio-metrics-modern {
        grid-template-columns: 1fr;
    }

    .tech-marquee::before,
    .tech-marquee::after {
        width: 50px;
    }
}

/* ========================================
   Calendly Modal Styles
   ======================================== */

.calendly-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.calendly-modal.active {
    display: flex;
}

.calendly-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease-out;
}

.calendly-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 85vh;
    background: white;
    border-radius: 1.5rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.calendly-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #4a5568;
}

.calendly-modal-close:hover {
    background: rgba(255, 0, 0, 0.1);
    color: #e53e3e;
    transform: rotate(90deg) scale(1.1);
}

.calendly-modal-close i {
    font-size: 1.25rem;
}

.calendly-modal-header {
    padding: 2rem 2.5rem 1.25rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.03), rgba(0, 212, 255, 0.03));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-shrink: 0;
}

.calendly-modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.02em;
}

.calendly-modal-header p {
    font-size: 1rem;
    color: #718096;
    margin: 0;
}

.calendly-embed-container {
    flex: 1 1 auto;
    min-height: 0;
    overflow: auto;
    position: relative;
}

/* Calendly widget styling overrides */
.calendly-embed-container .calendly-inline-widget {
    min-width: 100%;
    width: 100%;
    height: 100% !important;
    min-height: 100%;
}

.calendly-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide up animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive styles for Calendly modal */
@media (max-width: 768px) {
    .calendly-modal {
        padding: 0;
        align-items: stretch;
    }

    .calendly-modal-content {
        max-width: 100%;
        height: 100vh;
        border-radius: 0;
    }

    .calendly-modal-header {
        padding: 1.5rem 1rem 1rem;
    }

    .calendly-modal-header h3 {
        font-size: 1.375rem;
    }

    .calendly-modal-header p {
        font-size: 0.9375rem;
    }

    .calendly-modal-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }

    .calendly-modal-close i {
        font-size: 1.125rem;
    }

    .calendly-embed-container {
        flex: 1 1 auto;
        min-height: 0;
    }

    /* Inline widget header responsive */
    .calendly-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .calendly-header h3 {
        font-size: 1.25rem;
    }

    .calendly-header p {
        font-size: 0.875rem;
    }

    /* Inline widget responsive */
    .calendly-inline-widget iframe {
        min-height: 600px !important;
    }

    .consultation-calendly {
        border-radius: 1rem;
    }
}

/* ========================================
   Utility Classes
   ======================================== */

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

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }

/* ========================================
   Loading & Animation Classes
   ======================================== */

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

.slide-in-up {
    animation: slideInUp 0.6s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-in-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-in-out;
}

/* 3D Transform Effects */
.hover-3d {
    transition: all var(--transition-base);
    transform-style: preserve-3d;
}

.hover-3d:hover {
    transform: perspective(1000px) rotateY(10deg) translateZ(20px);
}

/* Gradient Animation */
.gradient-animate {
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

/* Pulse Animation */
.pulse-animate {
    animation: pulse 2s ease-in-out infinite;
}

/* Bounce Animation */
.bounce-animate {
    animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   Decorative Elements
   ======================================== */

.decorative-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    border-radius: var(--radius-full);
    box-shadow: var(--glow-blue);
}

.decorative-line {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--electric-blue), var(--deep-purple));
    border-radius: var(--radius-full);
}

.decorative-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary-blue);
    border-radius: 4px;
}

.decorative-corner.top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.decorative-corner.top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.decorative-corner.bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.decorative-corner.bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Neon Text */
.neon-text {
    color: var(--electric-blue);
    text-shadow: 0 0 10px var(--electric-blue),
                 0 0 20px var(--electric-blue),
                 0 0 30px var(--electric-blue);
    animation: pulse 2s ease-in-out infinite;
}

/* Gradient Border */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue), var(--deep-purple), var(--hot-pink));
    border-radius: var(--radius-xl);
    z-index: -1;
    animation: gradientShift 8s ease infinite;
    background-size: 200% auto;
}

/* Floating Badge */
.floating-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--electric-blue));
    color: var(--white);
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-bold);
    font-size: 0.875rem;
    box-shadow: var(--glow-blue);
    animation: bounce 2s ease-in-out infinite;
}

/* Mesh Gradient Background */
.mesh-gradient-1 {
    background: radial-gradient(at 0% 0%, rgba(0, 102, 255, 0.1) 0px, transparent 50%),
                radial-gradient(at 50% 0%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 0%, rgba(107, 70, 255, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 50%, rgba(0, 255, 157, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 50%, rgba(255, 0, 110, 0.1) 0px, transparent 50%),
                radial-gradient(at 0% 100%, rgba(255, 214, 10, 0.1) 0px, transparent 50%),
                radial-gradient(at 50% 100%, rgba(255, 107, 53, 0.1) 0px, transparent 50%),
                radial-gradient(at 100% 100%, rgba(0, 102, 255, 0.1) 0px, transparent 50%);
}

.mesh-gradient-2 {
    background: linear-gradient(135deg,
        rgba(0, 102, 255, 0.05) 0%,
        rgba(107, 70, 255, 0.05) 25%,
        rgba(0, 255, 157, 0.05) 50%,
        rgba(0, 212, 255, 0.05) 75%,
        rgba(0, 102, 255, 0.05) 100%);
    background-size: 400% 400%;
    animation: aurora 20s ease infinite;
}

/* Glowing Orb */
.glowing-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-full);
    filter: blur(60px);
    opacity: 0.4;
    animation: float 15s infinite;
}

.glowing-orb.blue {
    background: radial-gradient(circle, var(--primary-blue), transparent);
}

.glowing-orb.purple {
    background: radial-gradient(circle, var(--deep-purple), transparent);
}

.glowing-orb.green {
    background: radial-gradient(circle, var(--vibrant-green), transparent);
}

/* Dotted Pattern Background */
.dotted-pattern {
    background-image: radial-gradient(circle, rgba(0, 102, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Grid Pattern Background */
.grid-pattern {
    background-image:
        linear-gradient(rgba(0, 102, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 102, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Status Badges with Colors */
.badge-success {
    background: linear-gradient(135deg, var(--vibrant-green), #00CC7E);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    box-shadow: var(--glow-green);
}

.badge-warning {
    background: linear-gradient(135deg, var(--cyber-yellow), #FFC400);
    color: var(--gray-900);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(255, 214, 10, 0.3);
}

.badge-danger {
    background: linear-gradient(135deg, var(--hot-pink), #CC0055);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    box-shadow: var(--glow-pink);
}

.badge-info {
    background: linear-gradient(135deg, var(--electric-blue), #00AAD4);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.badge-purple {
    background: linear-gradient(135deg, var(--deep-purple), #5534CC);
    color: var(--white);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: var(--font-weight-semibold);
    font-size: 0.875rem;
    box-shadow: var(--glow-purple);
}

/* Pulse Dot */
.pulse-dot {
    position: relative;
    display: inline-block;
    width: 12px;
    height: 12px;
    background: var(--vibrant-green);
    border-radius: var(--radius-full);
    box-shadow: var(--glow-green);
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--vibrant-green);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 3s infinite;
}

/* ========================================
   Print Styles
   ======================================== */

@media print {
    .navbar,
    .hamburger,
    .scroll-top,
    .hero-background,
    .floating-shapes {
        display: none;
    }

    body {
        font-size: 12pt;
        color: black;
    }

    .container {
        max-width: 100%;
    }

    .section-padding {
        padding: 1rem 0;
    }
}

/* ========================================
   Mobile Optimization
   ======================================== */

/* Enhanced Mobile Typography - Ensure readability without zooming */
@media (max-width: 768px) {
    html {
        font-size: 16px; /* Ensures minimum text size for readability */
        -webkit-text-size-adjust: 100%; /* Prevents iOS from adjusting font size */
        text-size-adjust: 100%;
    }

    /* Hero Section Mobile */
    .hero-badge {
        margin-bottom: var(--spacing-md);
        font-size: 0.8125rem;
        padding: 0.4rem 1rem;
    }

    .hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        line-height: 1.6;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.75rem !important;
    }

    .section-subtitle {
        font-size: 1rem !important;
    }

    /* CTA Section Mobile */
    .section-cta {
        padding: 2rem 1.5rem;
    }

    .section-cta h3 {
        font-size: 1.5rem;
    }

    .section-cta p {
        font-size: 1rem;
    }

    /* Enhanced Button Tap Targets - Minimum 44x44px for accessibility */
    .btn {
        min-height: 44px;
        min-width: 120px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-lg {
        min-height: 48px;
        padding: 1rem 1.75rem;
        font-size: 1.0625rem;
    }

    /* Ensure buttons don't break on mobile */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Hero CTA Buttons */
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    /* Form Inputs - Enhanced tap targets */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="url"],
    input[type="number"],
    textarea,
    select {
        min-height: 44px;
        padding: 0.875rem 1rem;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }

    textarea {
        min-height: 120px;
    }

    /* Contact Form */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px !important;
    }

    /* Navigation Mobile Improvements */
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Service Cards - Stack on mobile */
    .services-grid-modern {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    /* Testimonials - Better mobile spacing */
    .testimonial-card-modern {
        padding: 1.5rem;
    }

    /* Portfolio - Full width on mobile */
    .portfolio-card {
        margin: 0 0.5rem;
    }

    /* Stats - 2 columns on mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Tech Showcase */
    .tech-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer - Stack columns */
    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Ensure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    /* Sticky Navigation - Ensure it's always visible */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small devices (phones in portrait) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    /* Single column for all grids */
    .stats-grid,
    .tech-grid,
    .about-stats-inline {
        grid-template-columns: 1fr !important;
    }

    /* Smaller padding on very small screens */
    .section-padding {
        padding: 3rem 0;
    }

    /* CTA Buttons */
    .btn {
        padding: 0.875rem 1.25rem;
    }
}

/* Landscape phone optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }

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

    .section-padding {
        padding: 3rem 0;
    }
}

/* ========================================
   Accessibility Improvements
   ======================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
}

/* Focus Styles */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-blue: #0056D2;
        --gray-600: #555555;
        --gray-700: #333333;
    }

    .btn-primary,
    .btn-outline {
        border-width: 3px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1A1A1A;
        --light-gray: #2D2D2D;
        --gray-900: #FFFFFF;
        --gray-800: #F0F0F0;
        --gray-700: #E0E0E0;
        --gray-600: #C0C0C0;
    }

    body {
        background-color: #1A1A1A;
        color: #F0F0F0;
    }

    .navbar {
        background: rgba(26, 26, 26, 0.95);
    }

    .service-card,
    .portfolio-card,
    .testimonial-card,
    .about-card,
    .process-step,
    .tech-category {
        background: #2D2D2D;
    }
}
