/*
 * Digital24x7 - AI Development & Automation Services
 * Modern Dark Theme CSS
 * 
 * Color Palette:
 * Primary: #0D5C9B (Logo Blue - Brand Color)
 * Primary Light: #0F7CD3 (Lighter Blue)
 * Primary Dark: #0A4A7D (Darker Blue)
 * Secondary: #06B6D4 (Cyan - Innovation)
 * Accent: #F97316 (Orange - Energy)
 * Success: #10B981 (Green)
 * Background Dark: #0F172A
 * Background Card: #1E293B
 * Text Primary: #F8FAFC
 * Text Secondary: #94A3B8
 */

/* ========== CSS Variables ========== */
:root {
    /* Logo Colors - Extracted from logo2.png */
    --primary: #0F7CD3;
    --primary-dark: #127ED4;
    --primary-light: #3B9AE8;
    --primary-muted: rgba(59, 90, 115, 0.58);
    
    --secondary: #06B6D4;
    --secondary-dark: #0891B2;
    --accent: #F97316;
    --accent-light: #FB923C;
    --success: #10B981;
    --warning: #FBBF24;
    --danger: #EF4444;
    --info: #0F7CD3;
    
    --bg-dark: #0F172A;
    --bg-darker: #020617;
    --bg-card: #1E293B;
    --bg-card-hover: #334155;
    --bg-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --border-color: #334155;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 40px rgba(13, 92, 155, 0.3);
    
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* ========== Lottie Animation Styles ========== */

/* Lottie Player Global Styles */
lottie-player {
    display: block;
}

/* Hero Lottie Carousel */
.hero-lottie-carousel {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.lottie-carousel-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
}

.lottie-carousel-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.lottie-carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(0.95);
}

.lottie-carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.lottie-carousel-slide.fade-out {
    opacity: 0;
    transform: scale(1.05);
}

.lottie-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot:hover {
    background: var(--primary-light);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
    box-shadow: 0 0 10px var(--primary);
}

/* Progress bar for carousel auto-advance */
.carousel-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: carouselProgress 5s linear infinite;
}

@keyframes carouselProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Stat Section Lottie */
.stat-lottie {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.lottie-stat {
    width: 100%;
    height: 100%;
}

/* Services Section Lottie */
.services-lottie-container {
    max-width: 300px;
    margin: 0 auto;
}

.lottie-services-header {
    width: 100%;
    height: auto;
    max-height: 200px;
}

/* Why Us Section Lottie */
.why-us-lottie {
    max-width: 300px;
    margin: 0 auto 30px;
}

/* Process Section Lottie */
.process-lottie-header {
    max-width: 250px;
    margin: 0 auto 30px;
}

.lottie-process {
    width: 100%;
    height: auto;
    max-height: 180px;
}

/* Tech Stack Section Lottie */
.tech-lottie-container {
    max-width: 280px;
    margin: 0 auto;
}

.lottie-tech-header {
    width: 100%;
    height: auto;
    max-height: 180px;
}

/* Testimonials Section Lottie */
.testimonials-lottie-container {
    max-width: 260px;
    margin: 0 auto;
}

.lottie-testimonials-header {
    width: 100%;
    height: auto;
    max-height: 160px;
}

/* CTA Section Lottie */
.cta-lottie {
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
}

.lottie-cta-rocket {
    width: 100%;
    height: 100%;
}

/* Blog Section Lottie */
.blog-lottie-container {
    max-width: 260px;
    margin: 0 auto;
}

.lottie-blog-header {
    width: 100%;
    height: auto;
    max-height: 160px;
}

/* Responsive Lottie Sizes */
@media (max-width: 768px) {
    .hero-lottie-carousel {
        max-width: 350px;
    }
    
    .lottie-carousel-indicators {
        bottom: -35px;
    }
    
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
    
    .stat-lottie {
        width: 50px;
        height: 50px;
    }
    
    .services-lottie-container,
    .tech-lottie-container,
    .testimonials-lottie-container,
    .blog-lottie-container {
        max-width: 200px;
    }
    
    .why-us-lottie {
        max-width: 200px;
    }
    
    .cta-lottie {
        width: 120px;
        height: 120px;
    }
}

/* Original Lottie Styles */
.lottie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lottie-hero {
    width: 100%;
    height: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: block;
}

.lottie-service {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.lottie-feature {
    width: 80px;
    height: 80px;
}

.lottie-why-us {
    width: 100%;
    max-width: 450px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
}

.lottie-contact {
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
}

.lottie-about {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1;
}

.lottie-cta {
    width: 200px;
    height: 200px;
    position: absolute;
    right: -50px;
    bottom: -50px;
    opacity: 0.6;
}

.lottie-loading {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.lottie-success {
    width: 150px;
    height: 150px;
    margin: 0 auto;
}

.lottie-empty {
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

/* Floating animation effect for Lottie containers */
.lottie-float {
    animation: lottieFloat 6s ease-in-out infinite;
}

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

/* Pulse glow behind Lottie animations */
.lottie-glow {
    position: relative;
}

.lottie-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 92, 155, 0.3) 0%, transparent 70%);
    animation: lottieGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes lottieGlow {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Service card Lottie styling */
.service-card .lottie-service {
    transition: var(--transition);
}

.service-card:hover .lottie-service {
    transform: scale(1.1);
}

/* Responsive Lottie sizes */
@media (max-width: 768px) {
    .lottie-hero {
        max-width: 300px;
    }
    
    .lottie-why-us,
    .lottie-contact {
        max-width: 280px;
    }
    
    .lottie-service {
        width: 100px;
        height: 100px;
    }
    
    .lottie-cta {
        display: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

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

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

/* ========== Dark Theme Text Color Overrides ========== */
/* Ensure all text is visible on dark backgrounds */
body, p, span, div, li, td, th, label {
    color: var(--text-primary);
}

.text-secondary,
p.text-secondary {
    color: var(--text-secondary) !important;
}

.text-body,
.text-body-secondary {
    color: var(--text-secondary) !important;
}

/* Override Bootstrap gray/dark text classes */
.text-dark {
    color: var(--text-primary) !important;
}

.text-body-tertiary {
    color: var(--text-muted) !important;
}

/* Override Bootstrap muted class */
.text-muted,
small.text-muted {
    color: var(--text-muted) !important;
}

/* Lead paragraphs */
.lead {
    color: var(--text-secondary);
}

/* ========== Utility Classes ========== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-color { color: var(--primary) !important; }
.text-secondary-color { color: var(--secondary) !important; }
.text-accent { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }

.bg-dark { background-color: var(--bg-dark) !important; }
.bg-darker { background-color: var(--bg-darker) !important; }
.bg-card { background-color: var(--bg-card) !important; }

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* ========== Buttons ========== */
.btn {
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    -webkit-tap-highlight-color: rgba(13, 92, 155, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 92, 155, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 92, 155, 0.5);
    color: white;
}

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

.btn-secondary:hover {
    background: var(--bg-card);
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.875rem;
}

/* ========== Navigation ========== */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary) !important;
}

.navbar-brand span {
    color: var(--primary);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248, 250, 252, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 10px 20px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-card-hover);
    color: var(--primary);
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-gradient);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(13, 92, 155, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(249, 115, 22, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(13, 92, 155, 0.2);
    border: 1px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 32px;
    animation: heroFadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroFadeInUp 1s ease-out 0.9s both;
}

/* ========== Hero Text Animations ========== */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

@keyframes heroTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(15, 124, 211, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(15, 124, 211, 0.6), 0 0 60px rgba(15, 124, 211, 0.4);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Hero Badge Animation */
.hero-badge {
    animation: heroBadgeSlideIn 0.8s ease-out both;
}

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

/* Hero Title Animation */
.hero-title {
    animation: heroTitleReveal 1s ease-out 0.3s both;
}

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

/* Text Gradient Animation */
.hero-title .text-gradient {
    background-size: 200% 200%;
    animation: gradientFlow 4s ease infinite, heroTitleGlow 3s ease-in-out infinite;
}

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

@keyframes heroTitleGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(15, 124, 211, 0.3);
    }
    50% {
        text-shadow: 0 0 40px rgba(15, 124, 211, 0.6), 0 0 60px rgba(59, 154, 232, 0.4);
    }
}

/* Hero Subtitle Animation */
.hero-subtitle {
    animation: heroSubtitleFade 0.8s ease-out 0.6s both;
}

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

/* Hero Buttons Animation */
.hero-buttons {
    animation: heroButtonsSlide 0.8s ease-out 0.9s both;
}

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

/* ========== Floating Badges ========== */
.floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(15, 124, 211, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 30px rgba(15, 124, 211, 0.2);
    z-index: 10;
    white-space: nowrap;
}

.floating-badge i {
    font-size: 1rem;
    color: var(--primary);
}

/* Left side badges */
.floating-badge-left-1 {
    top: 15%;
    left: 3%;
    animation: floatBadgeLeft1 6s ease-in-out infinite;
}

.floating-badge-left-2 {
    top: 55%;
    left: 1%;
    animation: floatBadgeLeft2 7s ease-in-out infinite;
    animation-delay: -2s;
}

/* Right side badges */
.floating-badge-right-1 {
    top: 12%;
    right: 3%;
    animation: floatBadgeRight1 5s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(15, 124, 211, 0.3), rgba(6, 182, 212, 0.3));
    border-color: rgba(6, 182, 212, 0.5);
}

.floating-badge-right-1 i {
    color: #06B6D4;
}

.floating-badge-right-2 {
    top: 75%;
    right: 2%;
    animation: floatBadgeRight2 8s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes floatBadgeLeft1 {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

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

@keyframes floatBadgeRight1 {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

@keyframes floatBadgeRight2 {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-18px) translateX(-8px);
    }
}

/* ========== Flowing Text Effect (Water Style) ========== */
.hero-flow-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 50%, transparent 100%);
}

.flowing-text-track {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    overflow: hidden;
}

.flowing-text-content {
    display: flex;
    gap: 2rem;
    white-space: nowrap;
    animation: flowingText 25s linear infinite;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Large flowing text style like the reference */
.flowing-text-large {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 8px;
    gap: 3rem;
    opacity: 0.15;
    animation: flowingText 40s linear infinite;
}

.flowing-text-large span {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.flowing-text-large span.dot {
    opacity: 0.5;
}

.flowing-text-content span {
    background: linear-gradient(90deg, rgba(15, 124, 211, 0.7), rgba(59, 154, 232, 0.9), rgba(15, 124, 211, 0.7));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textShimmer 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.flowing-text-large span {
    animation: none;
}

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

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

/* Hide floating badges on mobile */
@media (max-width: 991px) {
    .floating-badge {
        display: none;
    }
    
    .flowing-text-large {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .hero-flow-container {
        height: 80px;
    }
}

@media (max-width: 576px) {
    .flowing-text-large {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .hero-flow-container {
        height: 60px;
    }
}

/* ========== Hero Dashboard Mockup ========== */
.hero-dashboard {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(59, 154, 232, 0.3);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(15, 124, 211, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.dashboard-title i {
    color: var(--primary);
    font-size: 1.1rem;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--success);
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--success);
}

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

/* Dashboard Stats */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.stat-card {
    background: rgba(15, 124, 211, 0.1);
    border: 1px solid rgba(15, 124, 211, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(15, 124, 211, 0.15);
    transform: translateY(-2px);
    border-color: rgba(15, 124, 211, 0.4);
}

.stat-icon-small {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-small i {
    color: white;
    font-size: 0.9rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.stat-suffix {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Dashboard Progress Bars */
.dashboard-progress {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.progress-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.progress-item:nth-child(1) { animation-delay: 0.2s; }
.progress-item:nth-child(2) { animation-delay: 0.4s; }
.progress-item:nth-child(3) { animation-delay: 0.6s; }

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

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
}

.progress-header span:first-child {
    color: var(--text-secondary);
}

.progress-value {
    color: var(--primary-light);
    font-weight: 600;
}

.progress-bar-wrapper {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    animation: progressFill 1.5s ease forwards;
    animation-delay: 0.5s;
    position: relative;
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes progressFill {
    to {
        width: var(--progress);
    }
}

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

/* Dashboard Activity Feed */
.dashboard-activity {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 0.75rem;
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.activity-header i {
    color: var(--primary);
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: slideIn 0.4s ease forwards;
}

.activity-item:last-child {
    border-bottom: none;
}

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

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

.activity-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-dot.success {
    background: var(--success);
    box-shadow: 0 0 6px var(--success);
}

.activity-dot.info {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.activity-dot.warning {
    background: var(--warning);
    box-shadow: 0 0 6px var(--warning);
}

.activity-time {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.65rem;
}

/* Dashboard Responsive */
@media (max-width: 1200px) {
    .hero-dashboard {
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .hero-dashboard {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-dashboard {
        padding: 1rem;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.6rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
}

/* Animated background shapes */
.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

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

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(13, 92, 155, 0.3);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.3);
    bottom: -50px;
    left: -50px;
    animation-delay: -5s;
}

.hero-shape-3 {
    width: 200px;
    height: 200px;
    background: rgba(249, 115, 22, 0.2);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

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

/* ========== Blog Hero Section ========== */
.blog-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232563EB' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.blog-hero .lead {
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.blog-hero .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.blog-hero .post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-hero .post-meta .category {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.blog-hero .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.blog-hero .author-info img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.blog-hero .author-info strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.blog-hero .author-info span {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Blog Content */
.blog-content {
    padding: 60px 0;
}

.blog-content .post-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-content h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.blog-content h3 {
    color: var(--text-primary);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 30px 0 15px;
}

.blog-content h4 {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 20px 0 10px;
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-content li {
    margin-bottom: 8px;
}

.blog-content pre {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.blog-content code {
    background: rgba(13, 92, 155, 0.1);
    color: var(--primary);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
}

.blog-content pre code {
    background: transparent;
    color: #e2e8f0;
    padding: 0;
}

/* Author Bio Card */
.author-bio {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    margin-top: 40px;
}

.author-bio img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

.author-bio h5 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.author-bio p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.author-social {
    display: flex;
    gap: 12px;
}

.author-social a {
    color: var(--text-muted);
    font-size: 1.25rem;
    transition: var(--transition);
}

.author-social a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* Share Buttons */
.share-post h6 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius);
    color: white;
    font-size: 1.25rem;
    transition: var(--transition);
}

.btn-share:hover {
    transform: translateY(-3px);
    color: white;
}

.btn-share.twitter {
    background: #1DA1F2;
}

.btn-share.linkedin {
    background: #0A66C2;
}

.btn-share.facebook {
    background: #1877F2;
}

.btn-share.whatsapp {
    background: #25D366;
}

/* Blog Cards */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card-body {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.blog-card-title {
    color: var(--text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

/* Blog List/Index */
.blog-list-hero {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-gradient);
    text-align: center;
}

.blog-list-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.blog-list-hero p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Page Header (for other pages) */
.page-header {
    padding-top: 140px;
    padding-bottom: 60px;
    background: var(--bg-gradient);
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.page-header .lead {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Responsive Blog Styles */
@media (max-width: 768px) {
    .blog-hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .blog-hero h1 {
        font-size: 1.75rem;
    }
    
    .blog-hero .lead {
        font-size: 1rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-bio img {
        margin: 0 auto;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .blog-list-hero,
    .page-header {
        padding-top: 120px;
    }
    
    .blog-list-hero h1,
    .page-header h1 {
        font-size: 1.75rem;
    }
}

/* ========== Cards ========== */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.card-body {
    padding: 30px;
}

.card-title {
    color: var(--text-primary);
    font-weight: 700;
}

.card-text {
    color: var(--text-secondary);
}

/* Service Cards */
.service-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin: 0 auto 24px;
    font-size: 2rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    transform: scale(1.1);
}

.service-card h4 {
    margin-bottom: 16px;
}

.service-card p {
    font-size: 0.95rem;
}

/* Feature Cards */
.feature-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary);
}

.feature-card .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 92, 155, 0.2);
    border-radius: var(--border-radius-sm);
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card h5 {
    margin-bottom: 8px;
}

.feature-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ========== Section Headers ========== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(13, 92, 155, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
}

/* ========== Stats Section ========== */
.stats-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(13, 92, 155, 0.05);
    border: 1px solid rgba(13, 92, 155, 0.15);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(13, 92, 155, 0.1);
    border-color: rgba(13, 92, 155, 0.3);
    box-shadow: 0 10px 40px rgba(13, 92, 155, 0.15);
}

.stat-item .stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: white;
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(13, 92, 155, 0.3);
}

.stat-item:nth-child(1) .stat-icon { animation-delay: 0s; }
.stat-item:nth-child(2) .stat-icon { animation-delay: 0.5s; }
.stat-item:nth-child(3) .stat-icon { animation-delay: 1s; }
.stat-item:nth-child(4) .stat-icon { animation-delay: 1.5s; }

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1.2;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Section with gradient background */
.bg-gradient-primary .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.bg-gradient-primary .stat-item::before {
    background: rgba(255, 255, 255, 0.5);
}

.bg-gradient-primary .stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.bg-gradient-primary .stat-number {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.bg-gradient-primary .stat-item .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Stats in cards (like about page) */
.card .stat-number {
    font-size: 2.5rem;
}

.card .stat-label {
    font-size: 0.875rem;
}

/* ========== Process/Steps Section ========== */
.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: var(--border-color);
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.process-step h4 {
    margin-bottom: 12px;
}

.process-step p {
    margin-bottom: 0;
}

/* ========== Testimonials ========== */
.testimonial-card {
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    height: 100%;
}

.testimonial-card .quote {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card .author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-card .author-info h5 {
    margin-bottom: 4px;
    font-size: 1rem;
}

.testimonial-card .author-info p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-section .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.cta-section .btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CTA Section Card Style Variant */
.cta-card-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.cta-card-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), white, var(--secondary));
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 80px 0;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-content .btn-light {
    background: white;
    color: var(--primary);
    font-weight: 600;
}

.cta-content .btn-light:hover {
    background: var(--text-primary);
    transform: translateY(-2px);
}

/* ========== Technologies Section ========== */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.tech-item {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
}

.tech-item:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Tech Logo Grid - Modern logo display */
.tech-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.tech-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    min-width: 90px;
}

.tech-logo-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(13, 92, 155, 0.15);
}

.tech-logo-item img {
    filter: grayscale(30%);
    transition: var(--transition);
}

.tech-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.tech-logo-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

.tech-logo-item:hover .tech-logo-name {
    color: var(--text-primary);
}

/* Compact tech logo grid */
.tech-logo-grid.compact {
    gap: 12px;
}

.tech-logo-grid.compact .tech-logo-item {
    padding: 10px 14px;
    min-width: 70px;
}

.tech-logo-grid.compact .tech-logo-name {
    font-size: 10px;
}

/* Tech item text fallback */
.tech-item-text {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-secondary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .tech-logo-grid {
        gap: 12px;
    }
    
    .tech-logo-item {
        padding: 12px 14px;
        min-width: 75px;
    }
    
    .tech-logo-item img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .tech-logo-name {
        font-size: 10px;
    }
}

/* ========== Blog Cards ========== */
.blog-card {
    height: 100%;
    overflow: hidden;
}

.blog-card .card-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.blog-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card .card-body {
    display: flex;
    flex-direction: column;
}

.blog-card .blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.blog-card .blog-category {
    color: var(--primary);
    font-weight: 600;
}

.blog-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.blog-card .card-title a {
    color: var(--text-primary);
}

.blog-card .card-title a:hover {
    color: var(--primary);
}

.blog-card .read-more {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-card .read-more:hover {
    gap: 12px;
}

/* ========== Footer ========== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
    padding-top: 80px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-brand span {
    color: var(--primary);
}

.footer-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.footer h5 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.footer-contact li i {
    color: var(--primary);
    width: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

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

/* ========== Forms ========== */
.form-control {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    padding: 14px 18px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg-card);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13, 92, 155, 0.2);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 8px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ========== Pricing Cards ========== */
.pricing-card {
    text-align: center;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card .plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .plan-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.pricing-card .plan-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card .plan-description {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-card .plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    text-align: left;
}

.pricing-card .plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card .plan-features li i {
    color: var(--success);
}

.pricing-card .btn {
    margin-top: auto;
}

/* ========== FAQ Section ========== */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    padding: 20px 24px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--primary);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
}

/* ========== Animations ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Pulse animation for icons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(13, 92, 155, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(13, 92, 155, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(13, 92, 155, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* ========== Loading Spinner ========== */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* ========== Back to Top Button ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    -webkit-tap-highlight-color: rgba(13, 92, 155, 0.3);
}

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

.back-to-top:hover,
.back-to-top:active {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ========== Responsive Adjustments ========== */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .navbar-collapse {
        background: var(--bg-card);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* ========== Enhanced Animations ========== */

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

/* Flow animation - floating elements */
@keyframes flowFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-5px) rotate(-2deg);
    }
    75% {
        transform: translateY(-20px) rotate(1deg);
    }
}

/* Gradient flow animation */
@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glow pulse animation */
@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(13, 92, 155, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(13, 92, 155, 0.6), 0 0 60px rgba(6, 182, 212, 0.3);
    }
}

/* Shimmer effect */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Slide in animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

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

/* Scale bounce animation */
@keyframes scaleBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Rotate animation */
@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Typewriter cursor blink */
@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Apply animations to elements */
.flow-float {
    animation: flowFloat 6s ease-in-out infinite;
}

.glow-pulse {
    animation: glowPulse 3s ease-in-out infinite;
}

.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Animated gradient text */
.text-gradient-animated {
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s ease infinite;
}

/* Button hover animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

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

.btn-animated:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(13, 92, 155, 0.4);
}

/* Card hover animations */
.card-animated {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-animated:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 92, 155, 0.2);
}

/* Icon animations */
.icon-animated {
    transition: all 0.3s ease;
}

.icon-animated:hover {
    transform: scale(1.2) rotate(5deg);
}

/* Link underline animation */
.link-animated {
    position: relative;
    text-decoration: none;
}

.link-animated::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

/* Image hover zoom */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* Stagger animation delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Floating particles effect */
.particles-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: flowFloat 8s ease-in-out infinite;
}

.particle:nth-child(2n) {
    background: var(--secondary);
    animation-delay: -2s;
    animation-duration: 10s;
}

.particle:nth-child(3n) {
    background: var(--accent);
    animation-delay: -4s;
    animation-duration: 12s;
}

/* Ripple effect on click */
.ripple {
    position: relative;
    overflow: hidden;
}

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

.ripple:active::after {
    width: 300px;
    height: 300px;
}

/* Stats counter animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--primary);
}

/* Navbar scroll animation */
.navbar.scrolled {
    background: rgba(15, 23, 42, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Progress bar animation */
.progress-animated .progress-bar {
    animation: slideInLeft 1.5s ease forwards;
}

/* Typing cursor effect */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary);
}

/* Hero section enhanced animations */
.hero-content > * {
    opacity: 0;
    animation: slideInUp 0.8s ease forwards;
}

.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.3s; }
.hero-content .hero-subtitle { animation-delay: 0.5s; }
.hero-content .hero-buttons { animation-delay: 0.7s; }

/* Service card icon animation */
.service-card .icon-box {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon-box {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(13, 92, 155, 0.3);
}

/* Testimonial card slide */
.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary);
}

/* CTA section glow */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(13, 92, 155, 0.1) 0%, transparent 70%);
    animation: rotate360 20s linear infinite;
    pointer-events: none;
}

/* Smooth page transitions */
.page-transition {
    animation: slideInUp 0.5s ease;
}

/* Loading animation */
@keyframes loadingPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: loadingPulse 1.5s ease-in-out infinite;
}

/* Focus ring animation */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    transition: outline-offset 0.2s ease;
}

/* Selection color */
::selection {
    background: var(--primary);
    color: white;
}

/* ========== WhatsApp Float Button ========== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 25px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover,
.whatsapp-btn:active {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn.active {
    animation: none;
    transform: rotate(360deg);
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-popup-header span {
    flex: 1;
    font-weight: 600;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    line-height: 1;
}

.whatsapp-close:hover {
    opacity: 1;
}

.whatsapp-popup-body {
    padding: 20px;
}

.whatsapp-popup-body p {
    color: var(--text-secondary);
    font-size: 14px;
}

.whatsapp-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.whatsapp-service-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: var(--bg-dark);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid var(--border-color);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(13, 92, 155, 0.2);
}

.whatsapp-service-btn:hover,
.whatsapp-service-btn:active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.whatsapp-service-btn i {
    font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 80px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .whatsapp-popup {
        width: calc(100vw - 30px);
        right: -7px;
    }
    
    .whatsapp-services {
        grid-template-columns: 1fr;
    }
}

/* ========== Global Presence Section ========== */
.global-presence {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
}

.global-presence-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 8px;
}

.location-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--text-primary);
}

.location-badge i {
    font-size: 12px;
}

/* Remove heavy gradient backgrounds - use subtle styling */
.location-badge.bangalore,
.location-badge.dubai,
.location-badge.berlin,
.location-badge.new-york {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
}

/* Flag icons in badges */
.flag-icon {
    width: 20px;
    height: 14px;
    border-radius: 2px;
    display: inline-block;
    background-size: cover;
    background-position: center;
}

.flag-in {
    background: linear-gradient(180deg, #FF9933 33%, #fff 33%, #fff 66%, #138808 66%);
}

.flag-ae {
    background: linear-gradient(90deg, #00732F 25%, #000 25%, #000 50%, #fff 50%, #fff 75%, #FF0000 75%);
    background-size: 100% 100%;
}

.flag-de {
    background: linear-gradient(180deg, #000 33%, #DD0000 33%, #DD0000 66%, #FFCC00 66%);
}

.flag-us {
    background: linear-gradient(180deg, 
        #BF0A30 7.7%, #fff 7.7%, #fff 15.4%,
        #BF0A30 15.4%, #BF0A30 23.1%, #fff 23.1%, #fff 30.8%,
        #BF0A30 30.8%, #BF0A30 38.5%, #fff 38.5%, #fff 46.2%,
        #BF0A30 46.2%, #BF0A30 53.9%, #fff 53.9%, #fff 61.6%,
        #BF0A30 61.6%, #BF0A30 69.3%, #fff 69.3%, #fff 77%,
        #BF0A30 77%, #BF0A30 84.7%, #fff 84.7%, #fff 92.4%,
        #BF0A30 92.4%);
}

/* Responsive global presence */
@media (max-width: 768px) {
    .global-presence {
        flex-direction: column;
        gap: 15px;
    }
    
    .global-presence-label {
        margin-right: 0;
        margin-bottom: 5px;
    }
    
    .location-badges {
        justify-content: center;
    }
    
    .location-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* ========== SVG Animation Styles ========== */
.svg-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    /* Prevent extra space from SVG viewBox */
    overflow: visible;
    line-height: 0;
}

.svg-animation-container svg {
    width: 100%;
    height: auto;
    max-height: 350px;
    display: block;
}

/* Compact SVG container for sidebar/small sections */
.svg-animation-container.svg-compact {
    max-width: 280px;
    max-height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-animation-container.svg-compact svg {
    max-height: 180px;
    width: auto;
}

/* Animation glow effects */
.svg-glow {
    filter: drop-shadow(0 0 10px rgba(13, 92, 155, 0.5));
}

/* Hero animation specific */
.hero-svg-animation {
    position: relative;
    max-width: 450px;
}

.hero-svg-animation::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(13, 92, 155, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Animation section styling */
.animation-wrapper {
    padding: 20px;
    border-radius: var(--border-radius-lg);
    background: rgba(13, 92, 155, 0.05);
    border: 1px solid rgba(13, 92, 155, 0.1);
}

@media (max-width: 768px) {
    .svg-animation-container {
        max-width: 280px;
    }
    
    .svg-animation-container svg {
        max-height: 220px;
    }
    
    .svg-animation-container.svg-compact {
        max-width: 180px;
        max-height: 150px;
    }
    
    .svg-animation-container.svg-compact svg {
        max-height: 130px;
    }
}

/* ========== Footer Global Presence ========== */
.footer-global-presence {
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.global-presence-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.global-presence-title i {
    font-size: 14px;
    color: var(--primary);
}

.footer-locations {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 12px;
}

.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.footer-location:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.footer-location .fi {
    width: 16px;
    height: 12px;
    border-radius: 2px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .footer-locations {
        gap: 10px;
    }
    
    .footer-location {
        font-size: 12px;
        padding: 5px 10px;
    }
}

/* ========== Mobile Navigation Icons ========== */
.nav-link i {
    font-size: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    color: var(--primary);
}

/* ========== Mobile Footer Responsiveness ========== */
@media (max-width: 991px) {
    .footer {
        padding-top: 60px;
    }
    
    .footer .row.g-5 > [class*="col-"] {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 50px;
    }
    
    .footer .row.g-5 {
        gap: 0;
    }
    
    .footer .col-lg-4.col-md-6:first-child {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .footer .col-lg-4.col-md-6:first-child .footer-brand {
        justify-content: center;
    }
    
    .footer .col-lg-4.col-md-6:first-child .footer-description {
        max-width: 100%;
        margin: 0 auto 24px;
    }
    
    .footer .col-lg-4.col-md-6:first-child .footer-social {
        justify-content: center;
    }
    
    .footer h5 {
        font-size: 1.1rem;
        margin-bottom: 16px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--primary);
    }
    
    .footer .col-lg-4.col-md-6:first-child h5::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-contact li {
        margin-bottom: 14px;
    }
    
    /* Newsletter on mobile */
    .footer .mt-4 {
        margin-top: 20px !important;
    }
    
    .footer .mt-4 h6 {
        font-size: 0.9rem;
    }
    
    .footer .mt-4 form {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer .mt-4 form .btn {
        width: 100%;
    }
    
    /* Global Presence on mobile */
    .footer-global-presence {
        margin-top: 30px;
        padding: 15px 0;
    }
    
    .global-presence-title {
        font-size: 11px;
    }
    
    /* Footer bottom on mobile */
    .footer-bottom {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .footer-bottom .row {
        gap: 10px;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
}

@media (max-width: 576px) {
    .footer {
        padding-top: 40px;
    }
    
    /* Stack footer columns */
    .footer .col-lg-2.col-md-6,
    .footer .col-lg-4.col-md-6 {
        width: 100%;
    }
    
    .footer h5 {
        margin-top: 10px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .footer-links li {
        margin-bottom: 0;
    }
    
    .footer-contact {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom p a {
        display: inline-block;
    }
    
    .footer-bottom .mx-2 {
        margin: 0 8px !important;
    }
}

/* ========== Mobile Hero/Header Overlap Fix ========== */
@media (max-width: 991px) {
    .hero {
        padding-top: 140px;
    }
    
    .page-header {
        padding-top: 140px;
    }
    
    .blog-hero {
        padding-top: 130px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .page-header {
        padding-top: 120px;
        padding-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header .lead {
        font-size: 1rem;
    }
    
    .blog-hero {
        padding-top: 110px;
    }
    
    /* Portfolio page header */
    .portfolio-header {
        padding-top: 110px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .page-header {
        padding-top: 100px;
        padding-bottom: 30px;
    }
    
    .page-header h1 {
        font-size: 1.5rem;
    }
    
    .blog-hero {
        padding-top: 100px;
        padding-bottom: 30px;
    }
}

/* ========== Mobile Navigation Menu Improvements ========== */
@media (max-width: 991px) {
    .navbar {
        padding: 10px 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .navbar-collapse {
        background: var(--bg-card);
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 15px;
        border: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 100px);
        overflow-y: auto;
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        z-index: 1000;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link {
        padding: 14px 0 !important;
        font-size: 1rem;
        display: flex;
        align-items: center;
    }
    
    .navbar-nav .nav-link i {
        margin-right: 12px;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
    }
    
    .navbar-nav .dropdown-menu {
        background: rgba(0, 0, 0, 0.3);
        border: none;
        border-radius: var(--border-radius-sm);
        margin: 0;
        padding: 10px 0;
        position: static !important;
        width: 100%;
        box-shadow: none;
    }
    
    .navbar-nav .dropdown-item {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* Mobile CTA button */
    .navbar .ms-lg-3 {
        margin-top: 20px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar .ms-lg-3 .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile Call Button */
    .mobile-call-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.875rem;
        font-weight: 600;
        border-radius: 50px;
        white-space: nowrap;
    }
    
    /* Fix navbar toggler */
    .navbar-toggler {
        padding: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Fix hero section on mobile */
    .hero {
        padding-left: 15px;
        padding-right: 15px;
        overflow: visible;
    }
    
    /* Ensure content doesn't get cut off */
    body {
        overflow-x: hidden;
    }
    
    /* Fix hero content visibility on mobile - disable animation that causes issues */
    .hero-content > * {
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
    }
    
    .hero-content {
        opacity: 1 !important;
        transform: none !important;
    }
    
    /* Ensure floating badges don't cause overflow */
    .floating-badge {
        display: none;
    }
    
    /* Fix hero shapes */
    .hero-shapes,
    .hero-shape {
        display: none;
    }
}

/* ========== Mobile Service Cards ========== */
@media (max-width: 576px) {
    .service-card {
        padding: 24px 20px;
    }
    
    .service-card .lottie-service {
        width: 80px;
        height: 80px;
    }
}

/* ========== Mobile Stats Section ========== */
@media (max-width: 991px) {
    .stat-item {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .stat-item .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .stat-item {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-item .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0;
    }
}

@media (max-width: 576px) {
    .stat-item {
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-item .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* ========== Mobile CTA Section ========== */
@media (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section .lead {
        font-size: 1.1rem;
    }
    
    .cta-content {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 1.75rem;
    }
    
    .cta-section .lead {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .cta-section .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .cta-section .btn.me-3 {
        margin-right: 0 !important;
        display: block;
        width: 100%;
    }
    
    .cta-section .btn:last-child {
        display: block;
        width: 100%;
        margin-bottom: 0;
    }
    
    .cta-content {
        padding: 50px 0;
    }
    
    .cta-card-wrapper {
        padding: 32px 24px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section .lead {
        font-size: 0.95rem;
    }
    
    .cta-content {
        padding: 40px 0;
    }
}

/* ========== Visual Enhancement Classes ========== */

/* Icon Lists - Lists with icons instead of bullets */
.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.icon-list li:last-child {
    border-bottom: none;
}

.icon-list li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.icon-list li i {
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.icon-list.icon-list-success li i {
    color: var(--success);
}

.icon-list.icon-list-cyan li i {
    color: var(--secondary);
}

/* Feature Cards with Glow Effect */
.feature-card-glow {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.feature-card-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 92, 155, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-glow:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(13, 92, 155, 0.2);
}

.feature-card-glow:hover::before {
    opacity: 1;
}

/* Icon Box with Gradient */
.icon-box-gradient {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(13, 92, 155, 0.3);
    transition: var(--transition);
}

.feature-card-glow:hover .icon-box-gradient {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(13, 92, 155, 0.4);
}

/* Tech Bubbles/Pills */
.tech-bubble {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    cursor: default;
}

.tech-bubble:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(13, 92, 155, 0.2);
}

.tech-bubble i {
    color: var(--primary);
}

.tech-bubble-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* Step Cards with Connector */
.step-card {
    position: relative;
    padding-left: 80px;
    min-height: 100px;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 92, 155, 0.3);
}

.step-card::after {
    content: '';
    position: absolute;
    left: 27px;
    top: 64px;
    width: 2px;
    height: calc(100% - 40px);
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-card:last-child::after {
    display: none;
}

/* Animated Gradient Border */
.card-gradient-border {
    position: relative;
    background: var(--bg-card);
    border-radius: var(--border-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent), var(--primary));
    background-size: 300% 300%;
    animation: gradientBorder 5s ease infinite;
}

.card-gradient-border > * {
    background: var(--bg-card);
    border-radius: calc(var(--border-radius-lg) - 2px);
    padding: 28px;
}

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

/* Info Cards */
.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 92, 155, 0.2), rgba(6, 182, 212, 0.2));
    border: 1px solid var(--primary);
    border-radius: var(--border-radius);
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 16px;
    transition: var(--transition);
}

.info-card:hover .info-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
}

.info-card h4, .info-card h5 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Quote Box */
.quote-box {
    position: relative;
    background: var(--bg-card);
    border-left: 4px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    margin: 24px 0;
}

.quote-box::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-box p {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(13, 92, 155, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    margin: 24px 0;
}

.highlight-box.highlight-success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.highlight-box.highlight-warning {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(249, 115, 22, 0.05));
    border-color: rgba(249, 115, 22, 0.3);
}

.highlight-box h5 {
    color: var(--text-primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.highlight-box h5 i {
    color: var(--primary);
}

.highlight-box.highlight-success h5 i {
    color: var(--success);
}

.highlight-box.highlight-warning h5 i {
    color: var(--accent);
}

/* Badge Pills */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(13, 92, 155, 0.1);
    border: 1px solid rgba(13, 92, 155, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary);
}

.badge-pill.badge-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    color: var(--success);
}

.badge-pill.badge-accent {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: var(--accent);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 6px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid var(--bg-darker);
    border-radius: 50%;
}

.timeline-item h5 {
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Numbered List with Style */
.numbered-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: numbered-counter;
}

.numbered-list li {
    position: relative;
    padding-left: 50px;
    padding-bottom: 20px;
    counter-increment: numbered-counter;
    color: var(--text-secondary);
}

.numbered-list li:last-child {
    padding-bottom: 0;
}

.numbered-list li::before {
    content: counter(numbered-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

/* Case Study Cards */
.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-left-color: var(--secondary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(5px);
}

.case-study-card h5 {
    color: var(--text-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.case-study-card h5 i {
    color: var(--primary);
}

.case-study-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Contact Cards */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-card-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 92, 155, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid var(--border-color);
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    transform: scale(1.1);
    border-color: transparent;
}

.contact-card h5 {
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-card p, .contact-card a {
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
    transition: color 0.3s ease;
}

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

/* Pricing Card Improvements */
.pricing-card .plan-features li i {
    color: var(--success);
    font-size: 1rem;
}

.pricing-card .plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.pricing-card .plan-features li.disabled i {
    color: var(--text-muted);
}

/* FAQ Enhancements */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-button i {
    margin-right: 12px;
    color: var(--primary);
}

.accordion-body .icon-list li {
    padding: 8px 0;
}

/* Team Card Enhancements */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(13, 92, 155, 0.2);
}

.team-card-image {
    position: relative;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.05);
}

.team-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.team-card-body {
    padding: 24px;
    text-align: center;
}

.team-card-body h4 {
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-card-body p {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card-hover);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Responsive Adjustments for Visual Enhancements */
@media (max-width: 768px) {
    .icon-box-gradient {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
    
    .feature-card-glow {
        padding: 24px;
    }
    
    .step-card {
        padding-left: 65px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 24px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .tech-bubble {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .tech-bubble-grid {
        gap: 8px;
    }
    
    .quote-box {
        padding: 20px 24px;
    }
    
    .quote-box::before {
        font-size: 3rem;
    }
}

/* ========== Enhanced CSS Animations (Replacing Excessive Lottie) ========== */

/* Animated gradient text */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerGradient 3s ease infinite;
}

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

/* Section badge pulse animation */
.section-header .badge {
    animation: subtlePulse 2s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 92, 155, 0.4);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 0 15px 2px rgba(13, 92, 155, 0.2);
    }
}

/* Service cards hover lift with icon animation */
.service-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 92, 155, 0.25);
}

.service-card .icon-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover .icon-box {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 8px 20px rgba(13, 92, 155, 0.3);
}

/* Stats counter glow animation */
.stat-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(13, 92, 155, 0.2);
}

.stat-number {
    animation: numberGlow 2.5s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        text-shadow: 0 0 5px rgba(13, 92, 155, 0.3);
    }
    50% { 
        text-shadow: 0 0 20px rgba(13, 92, 155, 0.6), 0 0 30px rgba(6, 182, 212, 0.3);
    }
}

/* Process step number animation */
.process-step .step-number {
    transition: all 0.3s ease;
    animation: stepPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--step-index, 0) * 0.5s);
}

.process-step:nth-child(1) .step-number { --step-index: 0; }
.process-step:nth-child(2) .step-number { --step-index: 1; }
.process-step:nth-child(3) .step-number { --step-index: 2; }
.process-step:nth-child(4) .step-number { --step-index: 3; }

@keyframes stepPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(13, 92, 155, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(13, 92, 155, 0);
    }
}

/* Tech grid item hover effect */
.tech-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(13, 92, 155, 0.2);
}

.tech-item img {
    transition: transform 0.3s ease;
}

.tech-item:hover img {
    transform: scale(1.15);
}

/* Testimonial card hover */
.testimonial-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13, 92, 155, 0.15);
    border-color: rgba(13, 92, 155, 0.3);
}

/* Blog card image zoom */
.blog-card .card-img-wrapper {
    overflow: hidden;
}

.blog-card .card-img-wrapper > div {
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-wrapper > div {
    transform: scale(1.05);
}

/* Feature card icon bounce */
.feature-card:hover .icon {
    animation: iconBounce 0.5s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
    60% { transform: translateY(-3px); }
}

/* Hero section floating animation for shapes */
.hero-shape {
    animation: floatShape 6s ease-in-out infinite;
}

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

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

/* CTA section subtle background animation */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    animation: ctaGlow 8s linear infinite;
}

@keyframes ctaGlow {
    0% { transform: translate(0, 0); }
    50% { transform: translate(25%, 25%); }
    100% { transform: translate(0, 0); }
}

/* Button hover ripple effect */
.btn-primary::after,
.btn-secondary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

/* Smooth scroll indicator animation */
@keyframes scrollIndicator {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* ========== Portfolio Card CSS Mockups ========== */
.portfolio-mockup {
    width: 100%;
    height: 200px;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    border-radius: 12px 12px 0 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chatbot Mockup - Chat Interface */
.portfolio-mockup.chatbot {
    padding: 1rem;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
}

.chat-bubble {
    max-width: 75%;
    padding: 0.5rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    opacity: 0;
    animation: chatBubbleIn 0.5s ease forwards;
}

.chat-bubble.user {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 4px;
}

.chat-bubble.bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    border-bottom-left-radius: 4px;
}

.chat-bubble:nth-child(1) { animation-delay: 0.2s; }
.chat-bubble:nth-child(2) { animation-delay: 0.8s; }
.chat-bubble:nth-child(3) { animation-delay: 1.4s; }
.chat-bubble:nth-child(4) { animation-delay: 2s; }

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

.chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    animation: chatBubbleIn 0.5s ease forwards 2.5s;
}

.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: typingDot 1s infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

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

/* Automation Mockup - Workflow Nodes */
.portfolio-mockup.automation {
    padding: 1.5rem;
}

.workflow-nodes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.workflow-node {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    position: relative;
    opacity: 0;
    animation: nodeAppear 0.5s ease forwards;
}

.workflow-node:nth-child(1) { animation-delay: 0.1s; }
.workflow-node:nth-child(3) { animation-delay: 0.4s; }
.workflow-node:nth-child(5) { animation-delay: 0.7s; }
.workflow-node:nth-child(7) { animation-delay: 1s; }

.workflow-connector {
    width: 30px;
    height: 2px;
    background: var(--primary);
    position: relative;
    opacity: 0;
    animation: connectorGrow 0.3s ease forwards;
}

.workflow-connector:nth-child(2) { animation-delay: 0.25s; }
.workflow-connector:nth-child(4) { animation-delay: 0.55s; }
.workflow-connector:nth-child(6) { animation-delay: 0.85s; }

.workflow-connector::after {
    content: '';
    position: absolute;
    right: -4px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 6px solid var(--primary);
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
}

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

@keyframes connectorGrow {
    from { opacity: 0; width: 0; }
    to { opacity: 1; width: 30px; }
}

.workflow-pulse {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: workflowPulse 2s infinite;
}

@keyframes workflowPulse {
    0% { left: 0; opacity: 1; }
    100% { left: calc(100% - 8px); opacity: 0; }
}

/* Coding Mockup - Code Editor */
.portfolio-mockup.coding {
    padding: 0;
}

.code-editor {
    width: 90%;
    height: 85%;
    background: #0d1117;
    border-radius: 8px;
    border: 1px solid rgba(59, 154, 232, 0.3);
    overflow: hidden;
}

.code-editor-header {
    height: 24px;
    background: #161b22;
    display: flex;
    align-items: center;
    padding: 0 10px;
    gap: 6px;
}

.code-editor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.code-editor-dot.red { background: #ff5f56; }
.code-editor-dot.yellow { background: #ffbd2e; }
.code-editor-dot.green { background: #27ca40; }

.code-editor-content {
    padding: 10px;
    font-family: monospace;
    font-size: 0.65rem;
    line-height: 1.4;
}

.code-line {
    opacity: 0;
    animation: codeType 0.3s ease forwards;
    white-space: nowrap;
}

.code-line:nth-child(1) { animation-delay: 0.2s; }
.code-line:nth-child(2) { animation-delay: 0.5s; }
.code-line:nth-child(3) { animation-delay: 0.8s; }
.code-line:nth-child(4) { animation-delay: 1.1s; }
.code-line:nth-child(5) { animation-delay: 1.4s; }

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

.code-keyword { color: #ff79c6; }
.code-function { color: #8be9fd; }
.code-string { color: #50fa7b; }
.code-comment { color: #6272a4; }
.code-var { color: #f8f8f2; }

.code-cursor {
    display: inline-block;
    width: 2px;
    height: 12px;
    background: var(--primary);
    animation: cursorBlink 0.8s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Analytics Mockup - Charts */
.portfolio-mockup.analytics {
    padding: 1rem;
}

.mini-chart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.chart-title {
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.chart-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.chart-value .positive { color: #10B981; }

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
    padding-top: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--secondary));
    border-radius: 3px 3px 0 0;
    min-height: 10px;
    opacity: 0;
    animation: barGrow 0.5s ease forwards;
}

.chart-bar:nth-child(1) { height: 60%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { height: 45%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 80%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { height: 55%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { height: 90%; animation-delay: 0.5s; }
.chart-bar:nth-child(6) { height: 70%; animation-delay: 0.6s; }
.chart-bar:nth-child(7) { height: 95%; animation-delay: 0.7s; }

@keyframes barGrow {
    from { opacity: 0; transform: scaleY(0); }
    to { opacity: 1; transform: scaleY(1); }
}

/* Mobile App Mockup */
.portfolio-mockup.mobile {
    padding: 1rem;
}

.phone-frame {
    width: 80px;
    height: 140px;
    background: #1e293b;
    border-radius: 16px;
    border: 2px solid #334155;
    position: relative;
    overflow: hidden;
    padding: 8px 4px;
}

.phone-notch {
    width: 30px;
    height: 8px;
    background: #0f172a;
    border-radius: 4px;
    margin: 0 auto 6px;
}

.phone-screen {
    background: linear-gradient(180deg, var(--primary), #1e293b);
    border-radius: 8px;
    height: calc(100% - 14px);
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    height: 20px;
    opacity: 0;
    animation: phoneCardSlide 0.4s ease forwards;
}

.phone-card:nth-child(1) { animation-delay: 0.3s; }
.phone-card:nth-child(2) { animation-delay: 0.5s; width: 80%; }
.phone-card:nth-child(3) { animation-delay: 0.7s; width: 60%; }

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

/* Healthcare Mockup - Pulse Monitor */
.portfolio-mockup.healthcare {
    padding: 1rem;
}

.pulse-monitor {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pulse-line {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
}

.pulse-line svg {
    width: 200%;
    height: 100%;
    animation: pulseScroll 2s linear infinite;
}

.pulse-line path {
    fill: none;
    stroke: #10B981;
    stroke-width: 2;
    filter: drop-shadow(0 0 4px #10B981);
}

@keyframes pulseScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.pulse-stats {
    display: flex;
    gap: 1.5rem;
}

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

.pulse-stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10B981;
}

.pulse-stat-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Finance Mockup - Stock Chart */
.portfolio-mockup.finance {
    padding: 1rem;
}

.stock-chart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stock-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.stock-symbol {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.stock-price {
    color: #10B981;
    font-weight: 600;
    font-size: 0.85rem;
}

.stock-line {
    flex: 1;
    position: relative;
}

.stock-line svg {
    width: 100%;
    height: 100%;
}

.stock-line path {
    fill: none;
    stroke: #10B981;
    stroke-width: 2;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: stockDraw 2s ease forwards;
}

.stock-line .area {
    fill: url(#stockGradient);
    opacity: 0;
    animation: stockAreaFade 1s ease forwards 1.5s;
}

@keyframes stockDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes stockAreaFade {
    to { opacity: 0.3; }
}

/* ========== Blog Card CSS Mockups ========== */
.blog-mockup {
    height: 200px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* AI Integration Blog - Plug Icon with Connections */
.blog-mockup.ai-integration {
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
}

.integration-icon {
    position: relative;
}

.integration-icon i {
    font-size: 3rem;
    color: white;
    animation: plugPulse 2s ease-in-out infinite;
}

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

.integration-lines {
    position: absolute;
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.integration-line {
    position: absolute;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.5);
    transform-origin: left center;
}

.integration-line:nth-child(1) { top: 0; left: 50%; transform: rotate(-45deg); animation: lineExtend 1.5s ease infinite; }
.integration-line:nth-child(2) { top: 50%; right: 0; transform: rotate(0deg); animation: lineExtend 1.5s ease infinite 0.2s; }
.integration-line:nth-child(3) { bottom: 0; left: 50%; transform: rotate(45deg); animation: lineExtend 1.5s ease infinite 0.4s; }
.integration-line:nth-child(4) { top: 50%; left: 0; transform: rotate(180deg); animation: lineExtend 1.5s ease infinite 0.6s; }

@keyframes lineExtend {
    0%, 100% { width: 20px; opacity: 0.3; }
    50% { width: 40px; opacity: 1; }
}

/* N8N Workflow Blog */
.blog-mockup.n8n-workflow {
    background: linear-gradient(135deg, #F97316, #ea580c);
}

.workflow-mini {
    display: flex;
    align-items: center;
    gap: 8px;
}

.workflow-mini-node {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    animation: nodeFloat 2s ease-in-out infinite;
}

.workflow-mini-node:nth-child(2) { animation-delay: 0.2s; }
.workflow-mini-node:nth-child(4) { animation-delay: 0.4s; }

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

.workflow-mini-arrow {
    color: rgba(255, 255, 255, 0.6);
    animation: arrowPulse 1s ease infinite;
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50% { opacity: 1; transform: translateX(3px); }
}

/* E-commerce Blog */
.blog-mockup.ecommerce {
    background: linear-gradient(135deg, #10B981, #059669);
}

.cart-icon {
    position: relative;
}

.cart-icon i {
    font-size: 3rem;
    color: white;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    width: 20px;
    height: 20px;
    background: white;
    color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    animation: cartBounce 0.5s ease infinite alternate;
}

@keyframes cartBounce {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.cart-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 1.5s ease infinite;
}

.sparkle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; right: 25%; animation-delay: 0.3s; }
.sparkle:nth-child(3) { bottom: 25%; left: 30%; animation-delay: 0.6s; }

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

/* AI Models Blog */
.blog-mockup.ai-models {
    background: linear-gradient(135deg, #06B6D4, #0891b2);
}

.ai-brain-mini {
    position: relative;
}

.ai-brain-mini i {
    font-size: 3rem;
    color: white;
}

.neural-dots {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.neural-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: neuralPulse 2s ease infinite;
}

.neural-dot:nth-child(1) { top: 0; left: 50%; animation-delay: 0s; }
.neural-dot:nth-child(2) { top: 25%; right: 10%; animation-delay: 0.3s; }
.neural-dot:nth-child(3) { bottom: 25%; right: 10%; animation-delay: 0.6s; }
.neural-dot:nth-child(4) { bottom: 0; left: 50%; animation-delay: 0.9s; }
.neural-dot:nth-child(5) { bottom: 25%; left: 10%; animation-delay: 1.2s; }
.neural-dot:nth-child(6) { top: 25%; left: 10%; animation-delay: 1.5s; }

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

/* Trends/Rocket Blog */
.blog-mockup.trends {
    background: linear-gradient(135deg, #EC4899, #db2777);
}

.rocket-animation {
    position: relative;
}

.rocket-animation i {
    font-size: 3rem;
    color: white;
    animation: rocketShake 0.5s ease infinite;
}

@keyframes rocketShake {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.rocket-trail {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.trail-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: trailFade 0.8s ease infinite;
}

.trail-dot:nth-child(2) { width: 6px; height: 6px; animation-delay: 0.1s; }
.trail-dot:nth-child(3) { width: 4px; height: 4px; animation-delay: 0.2s; }

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

/* ROI/Graph Blog */
.blog-mockup.roi {
    background: linear-gradient(135deg, #22C55E, #16a34a);
}

.graph-animation {
    position: relative;
    width: 80px;
    height: 60px;
}

.graph-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graph-line svg {
    width: 100%;
    height: 100%;
}

.graph-line path {
    fill: none;
    stroke: white;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: graphDraw 2s ease forwards infinite;
}

@keyframes graphDraw {
    0% { stroke-dashoffset: 150; }
    50%, 100% { stroke-dashoffset: 0; }
}

.graph-arrow {
    position: absolute;
    top: 0;
    right: 0;
    color: white;
    font-size: 1.5rem;
    opacity: 0;
    animation: arrowAppear 0.5s ease forwards 1.5s;
}

@keyframes arrowAppear {
    from { opacity: 0; transform: translate(-10px, 10px); }
    to { opacity: 1; transform: translate(0, 0); }
}

/* Vibe Coding Blog */
.blog-mockup.vibe-coding {
    background: linear-gradient(135deg, #2563EB, #1d4ed8);
}

.lightning-code {
    position: relative;
}

.lightning-code i {
    font-size: 3rem;
    color: white;
    animation: lightningFlash 2s ease infinite;
}

@keyframes lightningFlash {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.5; }
}

.code-particles {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.code-particle {
    position: absolute;
    font-family: monospace;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    animation: particleFloat 3s ease infinite;
}

.code-particle:nth-child(1) { content: '</>'; top: 0; left: 0; animation-delay: 0s; }
.code-particle:nth-child(2) { top: 20%; right: 0; animation-delay: 0.5s; }
.code-particle:nth-child(3) { bottom: 0; left: 20%; animation-delay: 1s; }

@keyframes particleFloat {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-10px); }
}

/* Chatbot Building Blog */
.blog-mockup.chatbot-build {
    background: linear-gradient(135deg, #06B6D4, #0891b2);
}

.chat-build-icon {
    position: relative;
}

.chat-build-icon i {
    font-size: 3rem;
    color: white;
}

.chat-dots-anim {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.chat-dot-anim {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: chatDotBounce 1s ease infinite;
}

.chat-dot-anim:nth-child(2) { animation-delay: 0.2s; }
.chat-dot-anim:nth-child(3) { animation-delay: 0.4s; }

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

/* Compare/Shuffle Blog */
.blog-mockup.compare {
    background: linear-gradient(135deg, #F97316, #ea580c);
}

.compare-icon {
    position: relative;
}

.compare-icon i {
    font-size: 3rem;
    color: white;
    animation: shuffleRotate 2s ease infinite;
}

@keyframes shuffleRotate {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(15deg); }
    75% { transform: rotate(-15deg); }
}

/* Business/Building Blog */
.blog-mockup.business {
    background: linear-gradient(135deg, #10B981, #059669);
}

.building-icon {
    position: relative;
}

.building-icon i {
    font-size: 3rem;
    color: white;
}

.building-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: buildingPulse 2s ease infinite;
}

@keyframes buildingPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0; }
}

/* ========== Page Hero Section Fix (for pages with fixed navbar) ========== */
.page-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(15, 124, 211, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.page-hero .lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .badge-primary {
    background: rgba(15, 124, 211, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 124, 211, 0.3);
}

/* Responsive Page Hero */
@media (max-width: 991px) {
    .page-hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    .page-hero h1 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    .page-hero h1 {
        font-size: 1.875rem;
    }
    .page-hero .lead {
        font-size: 1rem;
    }
}

/* ========== Landing Page Feature Card Mockups ========== */

/* Base Feature Card Mockup */
.feature-card .feature-mockup,
.workflow-card .workflow-mockup {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Replace static icons with animated mockups in landing pages */

/* Email Automation Mockup */
.lp-mockup-email {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-email::before {
    content: '✉';
    font-size: 24px;
    animation: emailBounce 2s ease infinite;
}

.lp-mockup-email::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    top: 8px;
    right: 8px;
    animation: emailNotify 2s ease infinite;
}

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

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

/* Lead Processing Mockup */
.lp-mockup-lead {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-lead .lead-users {
    display: flex;
    gap: 2px;
}

.lp-mockup-lead .lead-user {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: leadUserPop 1.5s ease infinite;
}

.lp-mockup-lead .lead-user:nth-child(2) { animation-delay: 0.3s; }
.lp-mockup-lead .lead-user:nth-child(3) { animation-delay: 0.6s; }

.lp-mockup-lead .lead-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    color: #10B981;
    font-size: 14px;
    animation: leadArrowMove 1.5s ease infinite;
}

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

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

/* Document Workflows Mockup */
.lp-mockup-document {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-document .doc-icon {
    font-size: 22px;
    color: white;
}

.lp-mockup-document .doc-lines {
    position: absolute;
    top: 10px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.lp-mockup-document .doc-line {
    width: 12px;
    height: 2px;
    background: rgba(255,255,255,0.6);
    border-radius: 1px;
    animation: docLineType 1.5s ease infinite;
}

.lp-mockup-document .doc-line:nth-child(2) { width: 8px; animation-delay: 0.3s; }
.lp-mockup-document .doc-line:nth-child(3) { width: 10px; animation-delay: 0.6s; }

@keyframes docLineType {
    0% { width: 0; }
    100% { width: 12px; }
}

/* Auto Reporting Mockup */
.lp-mockup-report {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-report .report-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 30px;
}

.lp-mockup-report .report-bar {
    width: 6px;
    background: white;
    border-radius: 2px;
    animation: reportBarGrow 1.5s ease infinite;
}

.lp-mockup-report .report-bar:nth-child(1) { height: 12px; animation-delay: 0s; }
.lp-mockup-report .report-bar:nth-child(2) { height: 20px; animation-delay: 0.2s; }
.lp-mockup-report .report-bar:nth-child(3) { height: 16px; animation-delay: 0.4s; }
.lp-mockup-report .report-bar:nth-child(4) { height: 24px; animation-delay: 0.6s; }

@keyframes reportBarGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.7); }
}

/* 24/7 Availability Mockup */
.lp-mockup-247 {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-247 .clock-face {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    position: relative;
}

.lp-mockup-247 .clock-hand {
    position: absolute;
    background: white;
    border-radius: 2px;
    transform-origin: bottom center;
    bottom: 50%;
    left: 50%;
}

.lp-mockup-247 .clock-hand.hour {
    width: 2px;
    height: 8px;
    margin-left: -1px;
    animation: clockHour 12s linear infinite;
}

.lp-mockup-247 .clock-hand.minute {
    width: 2px;
    height: 11px;
    margin-left: -1px;
    animation: clockMinute 2s linear infinite;
}

@keyframes clockHour {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes clockMinute {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Instant Response / Lightning Mockup */
.lp-mockup-instant {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-instant .lightning {
    font-size: 26px;
    color: #FBBF24;
    animation: lightningFlash 1.5s ease infinite;
}

.lp-mockup-instant .lightning-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(251,191,36,0.4) 0%, transparent 70%);
    animation: lightningGlow 1.5s ease infinite;
}

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

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

/* Multi-Language / Translate Mockup */
.lp-mockup-language {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-language .lang-chars {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.lp-mockup-language .lang-char {
    animation: langSwitch 3s ease infinite;
}

.lp-mockup-language .lang-char:nth-child(2) { animation-delay: 1s; }
.lp-mockup-language .lang-char:nth-child(3) { animation-delay: 2s; }

@keyframes langSwitch {
    0%, 33% { opacity: 1; }
    34%, 66% { opacity: 0.3; }
    67%, 100% { opacity: 1; }
}

/* Analytics Mockup */
.lp-mockup-analytics {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-analytics .analytics-line {
    position: relative;
    width: 30px;
    height: 20px;
}

.lp-mockup-analytics .analytics-line svg {
    width: 100%;
    height: 100%;
}

.lp-mockup-analytics .analytics-line path {
    fill: none;
    stroke: #10B981;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: analyticsDrawLine 2s ease infinite;
}

@keyframes analyticsDrawLine {
    to { stroke-dashoffset: 0; }
}

/* Data Sync Mockup */
.lp-mockup-sync {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-sync .sync-arrows {
    font-size: 24px;
    color: white;
    animation: syncRotate 2s linear infinite;
}

@keyframes syncRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Notification Bell Mockup */
.lp-mockup-notify {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-notify .bell-icon {
    font-size: 24px;
    color: white;
    animation: bellRing 2s ease infinite;
}

.lp-mockup-notify .bell-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #EF4444;
    border-radius: 50%;
    top: 10px;
    right: 10px;
    animation: bellDotPulse 2s ease infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(10deg); }
    20%, 40% { transform: rotate(-10deg); }
    50% { transform: rotate(0deg); }
}

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

/* Document Gen Mockup */
.lp-mockup-docgen {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-docgen .doc-stack {
    position: relative;
}

.lp-mockup-docgen .doc-page {
    width: 20px;
    height: 26px;
    background: white;
    border-radius: 2px;
    position: absolute;
}

.lp-mockup-docgen .doc-page:nth-child(1) {
    top: 0;
    left: 0;
    z-index: 3;
    animation: docStackPop 2s ease infinite;
}

.lp-mockup-docgen .doc-page:nth-child(2) {
    top: 3px;
    left: 3px;
    z-index: 2;
    opacity: 0.7;
}

.lp-mockup-docgen .doc-page:nth-child(3) {
    top: 6px;
    left: 6px;
    z-index: 1;
    opacity: 0.4;
}

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

/* Lead Routing / People Mockup */
.lp-mockup-routing {
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0F7CD3 0%, #0D5C9B 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lp-mockup-routing .routing-people {
    display: flex;
    align-items: center;
    gap: 3px;
}

.lp-mockup-routing .routing-person {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
}

.lp-mockup-routing .routing-arrow {
    color: #10B981;
    font-size: 16px;
    animation: routingArrowBounce 1.5s ease infinite;
}

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

/* ========== Mobile AOS Animation Fix ========== */
/* Disable horizontal AOS animations on mobile to prevent overflow */
@media (max-width: 991px) {
    /* Disable fade-left and fade-right animations that cause horizontal overflow */
    [data-aos="fade-left"],
    [data-aos="fade-right"],
    [data-aos="slide-left"],
    [data-aos="slide-right"] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Also ensure AOS initialized elements show properly */
    [data-aos].aos-animate {
        opacity: 1 !important;
    }
    
    /* Force full width on body and html to prevent overflow */
    html, body {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Ensure container doesn't overflow */
    .container, .container-fluid {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
}




