/* Custom CSS for CodeIgniter India Website */

/* CSS Variables for Colors and Spacing */
:root {
    --primary-color: #1f2937;
    --secondary-color: #374151;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --orange-primary: #ea580c;
    --orange-secondary: #dc2626;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loaded {
    opacity: 1;
}

.container-fluid {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--text-light);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-gray);
}

/* Loading Screen Styles */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1f2937 0%, #1e3a8a 50%, #dc2626 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 1s ease, visibility 1s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    color: white;
}

.spinner-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.outer-ring, .inner-ring, .center-ring {
    position: absolute;
    border-radius: 50%;
    border: 4px solid transparent;
}

.outer-ring {
    width: 80px;
    height: 80px;
    border-top-color: rgba(255, 255, 255, 0.2);
    animation: spin 2s linear infinite;
}

.inner-ring {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #3b82f6;
    animation: spin 1.5s linear infinite;
}

.center-ring {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #dc2626;
    animation: spin-reverse 1s linear infinite;
}

.loading-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.loading-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

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

/* Progress Indicator */
.progress-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1000;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::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;
}

/* Section Indicator */
.section-indicator {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    opacity: 0;
    transform: translateY(-20px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-indicator.visible {
    opacity: 1;
    transform: translateY(0);
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #3b82f6, #1e40af);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.indicator-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Header Styles */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
    padding: 0;
}

.modern-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-heavy);
    border-bottom-color: var(--border-color);
}

.navbar {
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

.modern-header.scrolled .navbar {
    padding: 0.75rem 0;
}



/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
}

/* Background Effects */
.background-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

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

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(34, 211, 238, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: float-gentle 6s ease-in-out infinite;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.15) 1px, transparent 0),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 40px 40px;
    animation: grid-move 20s linear infinite;
    opacity: 0.3;
}

.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ray {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: ray-move 8s ease-in-out infinite;
}

.ray-1 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent);
    top: -5rem;
    right: -5rem;
    animation-delay: 0s;
}

.ray-2 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), transparent);
    bottom: -5rem;
    left: -5rem;
    animation-delay: 2s;
}

.ray-3 {
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.float-particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    animation: float-particle 8s infinite ease-in-out;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 70%;
    animation-delay: 4s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 40%;
    animation-delay: 6s;
}

.particle-5 {
    width: 14px;
    height: 14px;
    bottom: 20%;
    left: 20%;
    animation-delay: 8s;
}

/* Animations */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes float-particle {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(120deg);
    }
    66% {
        transform: translateY(5px) rotate(240deg);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes ray-move {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0;
        padding: 1rem 0;
        border-top: 1px solid var(--border-color);
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 1rem;
        border-radius: 0.5rem;
        margin: 0.25rem 0;
        transition: var(--transition-smooth);
    }
    
    .nav-link:hover {
        background: var(--bg-light);
        transform: translateX(8px);
    }
    
    .header-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }
    
    .call-link {
        justify-content: center;
        padding: 0.75rem;
        border-radius: 0.5rem;
        background: var(--bg-light);
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }
    
    .dropdown-menu {
        position: static !important;
        display: none;
        transform: none !important;
        box-shadow: none;
        border: none;
        background: var(--bg-light);
        margin: 0.5rem 0 0 1rem;
        border-radius: 0.5rem;
    }
    
    .dropdown.show .dropdown-menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .section-indicator {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.75rem;
    }
    
    .main-content {
        padding-top: 4.5rem;
    }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--orange-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border: none;
    color: white;
    transition: var(--transition-smooth);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    filter: brightness(1.1);
}

.card-hover {
    transition: var(--transition-smooth);
}

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

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-smooth);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-smooth);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   HERO SECTION STYLES
   ============================================ */

.hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 25%, #f0fdfa 75%, #ffffff 100%);
}

/* Hero Background Effects */
.hero-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

/* Animated Grid Pattern for Hero */
.animated-grid-hero {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(59, 130, 246, 0.25) 1px, transparent 0),
        linear-gradient(90deg, rgba(59, 130, 246, 0.12) 1px, transparent 1px),
        linear-gradient(rgba(59, 130, 246, 0.12) 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 40px 40px;
    animation: grid-slide-hero 25s linear infinite;
    opacity: 0.35;
}

/* Floating Geometric Shapes */
.geometric-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.geometric-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.35);
    animation: soft-float-hero 6s ease-in-out infinite;
}

/* Animated Light Rays for Hero */
.light-rays-hero {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.ray-hero {
    position: absolute;
    border-radius: 50%;
    animation: breathing-hero 8s ease-in-out infinite;
}

.ray-hero-1 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.4), rgba(34, 211, 238, 0.25), transparent);
    top: -5rem;
    right: -5rem;
    animation-delay: 0s;
}

.ray-hero-2 {
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.25), transparent);
    bottom: -5rem;
    left: -5rem;
    animation-delay: 2s;
}

.ray-hero-3 {
    width: 18rem;
    height: 18rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(6, 182, 212, 0.2), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Interactive Particles */
.interactive-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.interactive-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle-hero 6s infinite ease-in-out;
}

.interactive-particle.particle-blue {
    background: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

.interactive-particle.particle-sky {
    background: rgba(14, 165, 233, 0.5);
}

.interactive-particle.particle-cyan {
    background: rgba(6, 182, 212, 0.7);
}

/* Animated Wave Patterns */
.wave-patterns {
    position: absolute;
    inset: 0;
    overflow: hidden;
    opacity: 0.2;
}

.wave-pattern {
    position: absolute;
    inset: 0;
    animation: wave-motion-hero 12s infinite ease-in-out;
}

.wave-1 {
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(59, 130, 246, 0.12) 10px,
        rgba(59, 130, 246, 0.12) 11px
    );
    animation-delay: 0s;
}

.wave-2 {
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 15px,
        rgba(34, 211, 238, 0.08) 15px,
        rgba(34, 211, 238, 0.08) 16px
    );
    animation-delay: 4s;
}

.wave-3 {
    background: repeating-linear-gradient(
        30deg,
        transparent,
        transparent 12px,
        rgba(6, 182, 212, 0.06) 12px,
        rgba(6, 182, 212, 0.06) 13px
    );
    animation-delay: 8s;
}

/* Enhanced Shimmer Effects */
.shimmer-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.shimmer-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer-hero 3s infinite;
}

.shimmer-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    animation-delay: 0s;
}

.shimmer-bottom {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(-90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    animation-delay: 1s;
}

.shimmer-left {
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.35), transparent);
    animation-delay: 0.3s;
    animation-duration: 2.5s;
}

.shimmer-right {
    right: 0;
    top: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(-180deg, transparent, rgba(59, 130, 246, 0.35), transparent);
    animation-delay: 1s;
    animation-duration: 4s;
}

/* Enhanced Corner Accent Elements */
.corner-accents {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    border-radius: 50%;
    animation: pulse-refined 6s infinite ease-in-out;
}

.corner-top-left {
    width: 12rem;
    height: 12rem;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5), rgba(14, 165, 233, 0.3), transparent);
    border-radius: 0 0 100% 0;
    animation-delay: 0s;
}

.corner-top-right {
    width: 8rem;
    height: 8rem;
    top: 0;
    right: 0;
    background: linear-gradient(-135deg, rgba(14, 165, 233, 0.4), transparent);
    border-radius: 0 0 0 100%;
    animation-delay: 0.7s;
}

.corner-bottom-left {
    width: 8rem;
    height: 8rem;
    bottom: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.4), transparent);
    border-radius: 0 100% 0 0;
    animation-delay: 0.8s;
}

.corner-bottom-right {
    width: 12rem;
    height: 12rem;
    bottom: 0;
    right: 0;
    background: linear-gradient(-45deg, rgba(6, 182, 212, 0.5), rgba(34, 211, 238, 0.3), transparent);
    border-radius: 100% 0 0 0;
    animation-delay: 0.3s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Premium Modern Badge */
.hero-badge-container {
    display: flex;
    justify-content: center;
}

.hero-badge {
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero-badge:hover {
    transform: scale(1.05);
}

/* Background glow effect */
.badge-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(220, 38, 38, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 1rem;
    filter: blur(16px);
    opacity: 0.7;
    animation: gradient-pulse-hero 4s ease-in-out infinite;
    transition: opacity 0.7s ease;
}

.hero-badge:hover .badge-glow {
    opacity: 1;
}

/* Main badge container */
.badge-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 1rem;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.hero-badge:hover .badge-content {
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* Animated background shimmer */
.badge-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.hero-badge:hover .badge-shimmer {
    transform: translateX(100%);
}

/* Left accent */
.badge-accent-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accent-line {
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(180deg, var(--accent-color), var(--orange-primary));
    border-radius: 2px;
    opacity: 0.6;
}

/* Main text content */
.badge-text {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.badge-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.125rem;
}

.badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Right accent elements */
.badge-accent-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.badge-stars {
    display: flex;
    gap: 0.8rem;
}

.badge-stars i {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--orange-primary);
    font-size: 0.75rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 4px rgba(220, 38, 38, 0.4);
}

/* Decorative corner elements */
.badge-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    opacity: 0.6;
}

.badge-corner-top {
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), transparent);
}

.badge-corner-bottom {
    bottom: 4px;
    left: 4px;
    background: linear-gradient(-45deg, rgba(220, 38, 38, 0.6), transparent);
}

/* Floating accent particles */
.badge-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 3s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-badge:hover .badge-particle {
    opacity: 1;
}

.badge-particle-1 {
    width: 12px;
    height: 12px;
    top: -8px;
    right: -8px;
    background: rgba(59, 130, 246, 0.6);
    animation-delay: 0s;
}

.badge-particle-2 {
    width: 8px;
    height: 8px;
    bottom: -8px;
    left: -8px;
    background: rgba(220, 38, 38, 0.6);
    animation-delay: 0.3s;
}

/* Hero Heading */
.hero-heading {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.dynamic-word-container {
    position: relative;
    display: inline-block;
}

.dynamic-word {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary), #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.5s ease;
    font-weight: 700;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.highlight-text {
    color: var(--orange-primary);
    font-weight: 600;
}

/* Hero CTA */
.hero-cta {
    margin-top: 2rem;
}

.btn-hero {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-secondary), #dc2626);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero:hover::before {
    opacity: 1;
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
}

.hero-btn-icon,
.hero-btn-arrow {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-hero:hover .hero-btn-icon {
    animation: bounce 0.6s ease;
}

.btn-hero:hover .hero-btn-arrow {
    transform: translateX(4px);
}

/* Hero Animations */
@keyframes grid-slide-hero {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(40px, 40px);
    }
}

@keyframes soft-float-hero {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        transform: translateY(10px) rotate(240deg);
    }
}

@keyframes breathing-hero {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

@keyframes float-particle-hero {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes wave-motion-hero {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    25% {
        transform: translateX(20px) translateY(-10px);
    }
    50% {
        transform: translateX(0) translateY(-20px);
    }
    75% {
        transform: translateX(-20px) translateY(-10px);
    }
}

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

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

@keyframes gradient-pulse-hero {
    0%, 100% {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.3), rgba(220, 38, 38, 0.3), rgba(59, 130, 246, 0.3));
    }
    50% {
        background: linear-gradient(90deg, rgba(220, 38, 38, 0.4), rgba(59, 130, 246, 0.4), rgba(220, 38, 38, 0.4));
    }
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .badge-content {
        padding: 0.75rem 1.5rem;
        gap: 0.75rem;
    }
    
    .badge-title {
        font-size: 0.8rem;
    }
    
    .hero-title {
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .btn-hero {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    .ray-hero-1,
    .ray-hero-2 {
        width: 16rem;
        height: 16rem;
    }
    
    .ray-hero-3 {
        width: 12rem;
        height: 12rem;
    }
    
    .corner-top-left,
    .corner-bottom-right {
        width: 8rem;
        height: 8rem;
    }
}

@media (max-width: 576px) {
    .badge-content {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
        text-align: center;
    }
    
    .badge-accent-left,
    .badge-accent-right {
        display: none;
    }
    
    .hero-badge:hover {
        transform: scale(1.02);
    }
}

/* ============================================
   WHY CHOOSE US SECTION STYLES
   ============================================ */

.why-choose-us-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

/* Advanced Background Effects */
.why-bg-effects {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.gradient-base {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ffffff 0%, rgba(239, 246, 255, 0.3) 25%, #ffffff 75%, #ffffff 100%);
}

.bg-particle {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: float-large 12s ease-in-out infinite;
}

.bg-particle-1 {
    top: 5rem;
    left: 25%;
    width: 10rem;
    height: 10rem;
    background: rgba(59, 130, 246, 0.2);
    animation-delay: 0s;
}

.bg-particle-2 {
    bottom: 5rem;
    right: 25%;
    width: 8rem;
    height: 8rem;
    background: rgba(220, 38, 38, 0.3);
    animation-delay: 4s;
}

.bg-particle-3 {
    top: 50%;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(220, 38, 38, 0.2));
    animation-delay: 8s;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(45deg, #000 1px, transparent 1px),
        linear-gradient(-45deg, #000 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

/* Premium Interactive Badge */
.premium-badge-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.premium-badge {
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.premium-badge:hover {
    transform: scale(1.05);
}

/* Multi-layered background glow */
.badge-glow-multi {
    position: absolute;
    border-radius: 1.5rem;
    filter: blur(16px);
    transition: opacity 0.7s ease;
    animation: gradient-pulse-why 4s ease-in-out infinite;
}

.badge-glow-1 {
    inset: -8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
    opacity: 0.6;
}

.badge-glow-2 {
    inset: -4px;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(59, 130, 246, 0.3), rgba(220, 38, 38, 0.3));
    opacity: 0.4;
    animation-delay: 2s;
}

.premium-badge:hover .badge-glow-multi {
    opacity: 1;
}

/* Main badge container */
.premium-badge-content {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1rem;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.premium-badge:hover .premium-badge-content {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Animated shimmer background */
.premium-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease;
}

.premium-badge:hover .premium-shimmer {
    transform: translateX(100%);
}

/* Left section with premium indicators */
.badge-left-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.premium-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.premium-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.premium-badge:hover .premium-icon {
    transform: rotate(12deg);
}

.premium-icon i {
    animation: pulse 2s infinite;
}

.premium-label {
    font-size: 0.75rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 0.1em;
}

.vertical-divider {
    width: 1px;
    height: 2.5rem;
    opacity: 0.6;
}

.divider-1 {
    background: linear-gradient(180deg, var(--accent-color), var(--orange-primary));
}

.divider-2 {
    background: linear-gradient(180deg, var(--orange-primary), var(--accent-color));
}

/* Main content section */
.badge-main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.badge-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.excellence-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--orange-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.star-rating {
    display: flex;
    gap: 0.125rem;
}

.star-rating i {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--orange-primary);
    font-size: 0.75rem;
}

.badge-main-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* Right section with action elements */
.badge-right-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.interactive-elements {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.sparkles-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.premium-badge:hover .sparkles-icon {
    transform: scale(1.1);
}

.sparkles-icon i {
    transition: var(--transition-smooth);
}

.premium-badge:hover .sparkles-icon i {
    transform: rotate(12deg);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, var(--orange-primary), var(--orange-secondary));
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 4px rgba(234, 88, 12, 0.4);
}

/* Decorative elements */
.decorative-corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    opacity: 0.8;
}

.corner-1 {
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.6), transparent);
}

.corner-2 {
    bottom: 8px;
    left: 8px;
    background: linear-gradient(-45deg, rgba(220, 38, 38, 0.6), transparent);
}

/* Premium border accent */
.premium-border {
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
}

.premium-badge:hover .premium-border {
    border-color: rgba(255, 255, 255, 0.5);
}

/* Floating accent particles */
.floating-accent {
    position: absolute;
    border-radius: 50%;
    animation: float-particle 3s infinite ease-in-out;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.premium-badge:hover .floating-accent {
    opacity: 1;
}

.accent-1 {
    width: 16px;
    height: 16px;
    top: -12px;
    right: -12px;
    background: rgba(59, 130, 246, 0.6);
    animation-delay: 0s;
}

.accent-2 {
    width: 12px;
    height: 12px;
    bottom: -12px;
    left: -12px;
    background: rgba(220, 38, 38, 0.6);
    animation-delay: 0.3s;
}

.accent-3 {
    width: 8px;
    height: 8px;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: rgba(99, 102, 241, 0.6);
    animation-delay: 0.5s;
}

/* Main heading */
.main-heading {
    position: relative;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.gradient-text {
    display: block;
    background: linear-gradient(135deg, var(--orange-primary), var(--accent-color), var(--orange-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated underline */
.animated-underline {
    display: flex;
    justify-content: center;
}

.underline-bar {
    width: 6rem;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--orange-primary));
    border-radius: 2px;
    animation: pulse-divider 3s ease-in-out infinite;
}

.section-subtitle {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 64rem;
    margin: 0 auto;
}

/* Stats Section */
.stats-section {
    position: relative;
    z-index: 10;
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}
.stats-header h3 {
  font-size: 30px !important;
}
.stats-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.stats-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    max-width: 36rem;
    margin: 0 auto;
}

/* Stats Cards */
.stats-card {
    position: relative;
    cursor: pointer;
    transform: scale(1);
    transition: var(--transition-smooth);
}

.stats-card:hover {
    transform: scale(1.02);
    z-index: 10;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: rgba(239, 246, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
}

.stats-card:hover .stats-bg {
    background: rgba(239, 246, 255, 0.9);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-medium);
}

.stats-gradient {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
}

.stats-gradient.red-gradient {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.05));
}

.stats-card:hover .stats-gradient {
    opacity: 0.3;
}

.stats-ripple {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    background: rgba(59, 130, 246, 0.3);
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

.stats-card.active .stats-ripple {
    animation: blue-ripple 0.6s ease-out;
}

.stats-content {
    position: relative;
    z-index: 10;
    padding: 1rem;
    text-align: center;
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    color: var(--accent-color);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-light);
}

.red-gradient .stats-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(252, 165, 165, 0.05));
    color: var(--orange-primary);
}

.stats-card:hover .stats-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
}

.red-gradient .stats-card:hover .stats-icon {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.stats-card:hover .stats-number {
    color: var(--accent-color);
}

.red-gradient .stats-card:hover .stats-number {
    color: var(--orange-primary);
}

.stats-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-bottom: 0.5rem;
    transition: var(--transition-smooth);
}

.stats-card:hover .stats-label {
    color: var(--accent-hover);
}

.red-gradient .stats-card:hover .stats-label {
    color: var(--orange-secondary);
}

.stats-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.stats-card.expanded .stats-description {
    max-height: 4rem;
    opacity: 1;
}

.stats-description p {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.5;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 0.5rem;
    margin: 0;
}

.stats-indicator {
    position: absolute;
    bottom: 0.375rem;
    right: 0.375rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    transition: var(--transition-smooth);
}

.stats-card.expanded .stats-indicator {
    background: var(--accent-color);
    transform: scale(1.25);
}

.red-gradient .stats-card.expanded .stats-indicator {
    background: var(--orange-primary);
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 10;
    margin-top: 50px;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title {
    font-size: 30px !important;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.features-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 48rem;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    position: relative;
    cursor: pointer;
    transform: scale(1);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    transform: scale(1.05) translateY(-8px);
    z-index: 20;
}

.feature-bg {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 1.5rem;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-bg {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(220, 38, 38, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.feature-corner-accent {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-corner-accent {
    transform: scale(1.5);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    animation: pulse 2s infinite;
}

.feature-content {
    position: relative;
    z-index: 10;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
}

.feature-title-section {
    flex: 1;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-title {
    color: var(--orange-secondary);
}

.feature-line {
    width: 2rem;
    height: 2px;
    background: var(--text-light);
    border-radius: 1px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-line {
    background: var(--orange-primary);
    width: 3rem;
}

.feature-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: var(--transition-smooth);
}

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

.feature-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.7s ease-out, opacity 0.7s ease-out;
    opacity: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 0;
}

.feature-card.expanded .feature-details {
    max-height: 24rem;
    opacity: 1;
    padding-top: 1rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.detail-item i {
    width: 1rem;
    height: 1rem;
    color: var(--orange-primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-cta {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-secondary));
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(234, 88, 12, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--orange-secondary), #dc2626);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.4);
}

.btn-cta span,
.btn-cta i {
    position: relative;
    z-index: 1;
    transition: var(--transition-smooth);
}

.btn-cta:hover i {
    transform: translateX(4px);
}

/* Why Choose Us Animations */
@keyframes gradient-pulse-why {
    0%, 100% {
        background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2), rgba(59, 130, 246, 0.2));
    }
    50% {
        background: linear-gradient(90deg, rgba(220, 38, 38, 0.3), rgba(59, 130, 246, 0.3), rgba(220, 38, 38, 0.3));
    }
}

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

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

@keyframes blue-ripple {
    0% {
        opacity: 0.6;
        transform: scale(0);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Responsive Design for Why Choose Us */
@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 4rem 0;
    }
    
    .premium-badge-content {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        text-align: center;
    }
    
    .badge-left-section,
    .badge-right-section {
        display: none;
    }
    
    .stats-content {
        padding: 0.75rem;
    }
    
    .feature-content {
        padding: 1.5rem;
    }
    
    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .bg-particle-1,
    .bg-particle-2 {
        width: 6rem;
        height: 6rem;
    }
    
    .bg-particle-3 {
        width: 3rem;
        height: 3rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        margin-bottom: 2rem;
    }
    
    .premium-badge-content {
        padding: 0.75rem 1rem;
    }
    
    .stats-section {
        margin-bottom: 2rem;
    }
    

    
    .cta-section {
        margin-top: 3rem;
    }
    
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* ===== SERVICES SECTION STYLES ===== */
.services-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, var(--primary-color)15 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--secondary-color)15 0%, transparent 50%);
    pointer-events: none;
}

.services-header-text {
    max-width: 800px;
}

.services-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Service Card Styles */
.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.service-card[data-service-index="0"] { animation-delay: 0ms; }
.service-card[data-service-index="1"] { animation-delay: 100ms; }
.service-card[data-service-index="2"] { animation-delay: 200ms; }
.service-card[data-service-index="3"] { animation-delay: 300ms; }
.service-card[data-service-index="4"] { animation-delay: 400ms; }
.service-card[data-service-index="5"] { animation-delay: 500ms; }
.service-card[data-service-index="6"] { animation-delay: 600ms; }
.service-card[data-service-index="7"] { animation-delay: 700ms; }
.service-card[data-service-index="8"] { animation-delay: 800ms; }
.service-card[data-service-index="9"] { animation-delay: 900ms; }
.service-card[data-service-index="10"] { animation-delay: 1000ms; }
.service-card[data-service-index="11"] { animation-delay: 1100ms; }

.service-card:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.2);
}

.service-card.hovered {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 1);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.25);
}

.service-card-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(147, 51, 234, 0.02) 50%, 
        rgba(236, 72, 153, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s ease-out;
    border-radius: 1rem;
}

.service-card:hover .service-card-background {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(147, 51, 234, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
}

.service-card.hovered .service-card-background {
    opacity: 1;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.07) 0%, 
        rgba(147, 51, 234, 0.07) 50%, 
        rgba(236, 72, 153, 0.07) 100%);
}

.service-card-header {
    position: relative;
    z-index: 3;
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0) 100%);
    border-radius: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.15),
        0 2px 6px rgba(59, 130, 246, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.service-card.hovered .service-icon {
    transform: scale(1.08);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.18),
        0 3px 8px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bg-gradient-blue {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.bg-gradient-red {
    background: linear-gradient(135deg, var(--secondary-color), #ef4444);
}

.service-complexity {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 9999px;
    transition: all 0.3s ease;
    border: 1px solid;
}

.complexity-professional {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-color: rgba(59, 130, 246, 0.2);
}

.complexity-advanced {
    background-color: rgba(239, 68, 68, 0.1);
    color: var(--secondary-color);
    border-color: rgba(239, 68, 68, 0.2);
}

.complexity-expert {
    background-color: rgba(168, 85, 247, 0.1);
    color: #8b5cf6;
    border-color: rgba(168, 85, 247, 0.2);
}

.complexity-cutting-edge {
    background-color: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.2);
}

.complexity-ongoing {
    background-color: rgba(249, 115, 22, 0.1);
    color: #f97316;
    border-color: rgba(249, 115, 22, 0.2);
}

.service-card:hover .service-complexity {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-card-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--text-dark);
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.service-card:hover .service-description {
    color: #4b5563;
}

.service-features {
    gap: 0.75rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-feature {
    transform: translateX(2px);
}

.service-card.hovered .service-feature {
    transform: translateX(4px);
}

.service-feature:nth-child(1) { transition-delay: 0ms; }
.service-feature:nth-child(2) { transition-delay: 50ms; }
.service-feature:nth-child(3) { transition-delay: 100ms; }
.service-feature:nth-child(4) { transition-delay: 150ms; }

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

.service-feature span {
    color: #374151;
    font-weight: 500;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.75rem;
    margin-top: auto;
}

.tech-tag {
    padding: 0.25rem 0.5rem;
    background-color: rgba(107, 114, 128, 0.1);
    color: var(--text-muted);
    font-size: 0.6rem;
    border-radius: 0.375rem;
    font-weight: 500;
    border: 1px solid rgba(107, 114, 128, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.tech-tag:hover {
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Hover Effects */
.service-hover-glow {
    position: absolute;
    inset: -1px;
    border-radius: 1.1rem;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.2) 0%, 
        rgba(147, 51, 234, 0.2) 50%, 
        rgba(236, 72, 153, 0.2) 100%);
    opacity: 0;
    filter: blur(15px);
    transition: all 0.4s ease-out;
    z-index: -1;
}

.service-card:hover .service-hover-glow {
    opacity: 0.3;
    filter: blur(20px);
    transform: scale(1.02);
}

.service-card.hovered .service-hover-glow {
    opacity: 0.4;
    filter: blur(25px);
    transform: scale(1.03);
}

.service-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.service-sparkles i {
    position: absolute;
    opacity: 0;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0) rotate(0deg);
}

.sparkle-1 {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    animation: sparkleFloat 3s infinite ease-in-out;
}

.sparkle-2 {
    bottom: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    animation: sparkleFloat 3s infinite ease-in-out 1s;
}

.service-card:hover .service-sparkles i {
    opacity: 0;
    transform: scale(0) rotate(0deg);
}

.service-card.hovered .service-sparkles i {
    opacity: 0;
    transform: scale(0) rotate(0deg);
}

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.4;
    }
    25% {
        transform: translateY(-5px) rotate(90deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-3px) rotate(180deg);
        opacity: 1;
    }
    75% {
        transform: translateY(-7px) rotate(270deg);
        opacity: 0.6;
    }
}

.service-floating-shadow {
    position: absolute;
    inset: 4px;
    border-radius: 1rem;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(147, 51, 234, 0.3) 50%, 
        rgba(236, 72, 153, 0.3) 100%);
    filter: blur(25px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -2;
    transform: scale(0.9) translateY(10px);
}

.service-card:hover .service-floating-shadow {
    opacity: 0.4;
    transform: scale(1) translateY(8px);
    filter: blur(30px);
}

.service-card.hovered .service-floating-shadow {
    opacity: 0.6;
    transform: scale(1.1) translateY(12px);
    filter: blur(35px);
}

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #1f2937 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    border-radius: 1rem;
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.services-cta-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(239, 68, 68, 0.15) 100%);
}

.floating-particles {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

.particle-blue {
    background-color: #60a5fa;
}

.particle-red {
    background-color: #f87171;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 3s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-duration: 4s; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-duration: 3.5s; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; top: 90%; animation-duration: 4.5s; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; top: 10%; animation-duration: 3.2s; animation-delay: 2s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-duration: 4.2s; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; top: 30%; animation-duration: 3.7s; animation-delay: 3s; }
.particle:nth-child(8) { left: 80%; top: 85%; animation-duration: 4.7s; animation-delay: 0.3s; }
.particle:nth-child(9) { left: 90%; top: 15%; animation-duration: 3.3s; animation-delay: 0.8s; }
.particle:nth-child(10) { left: 15%; top: 60%; animation-duration: 4.3s; animation-delay: 1.3s; }
.particle:nth-child(11) { left: 25%; top: 95%; animation-duration: 3.8s; animation-delay: 1.8s; }
.particle:nth-child(12) { left: 35%; top: 25%; animation-duration: 4.8s; animation-delay: 2.3s; }
.particle:nth-child(13) { left: 45%; top: 75%; animation-duration: 3.4s; animation-delay: 2.8s; }
.particle:nth-child(14) { left: 55%; top: 5%; animation-duration: 4.4s; animation-delay: 0.7s; }
.particle:nth-child(15) { left: 65%; top: 55%; animation-duration: 3.9s; animation-delay: 1.2s; }

.services-cta-text {
    max-width: 600px;
        font-size: 1rem !important;
}

.btn-services-primary {
    background: linear-gradient(to right, var(--color-red-400), var(--color-red-600));
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-services-primary:hover {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.btn-services-primary i {
    transition: transform 0.3s ease;
}

.btn-services-primary:hover i {
    transform: translateX(4px);
}

.btn-services-outline {
    border: 2px solid rgba(191, 219, 254, 0.5);
    color: white;
    background: transparent;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-services-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(191, 219, 254, 0.7);
    color: white;
    transform: scale(1.05);
}

/* Services Animations */
@keyframes sparkleAnimation {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Services Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .service-icon i {
        font-size: 1.25rem;
    }
    
    .service-title {
        font-size: 1.125rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        gap: 1.5rem !important;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .service-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .services-cta {
        padding: 1.5rem 1rem;
    }
    
    .services-cta-text {
        font-size: 1rem !important;
    }
}

/* ===== INDUSTRIES SECTION STYLES ===== */
.industries-section {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(147, 197, 253, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.industries-header-text {
    max-width: 900px;
}

.industries-grid {
    position: relative;
    z-index: 2;
}

/* Industry Card Styles */
.industry-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    height: 100%;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.industry-card[data-industry-index="0"] { animation-delay: 0ms; }
.industry-card[data-industry-index="1"] { animation-delay: 100ms; }
.industry-card[data-industry-index="2"] { animation-delay: 200ms; }
.industry-card[data-industry-index="3"] { animation-delay: 300ms; }
.industry-card[data-industry-index="4"] { animation-delay: 400ms; }
.industry-card[data-industry-index="5"] { animation-delay: 500ms; }
.industry-card[data-industry-index="6"] { animation-delay: 600ms; }
.industry-card[data-industry-index="7"] { animation-delay: 700ms; }

.industry-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.1);
}

/* Background Elements */
.industry-bg-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(12px);
    transition: all 0.5s ease;
}

.element-1 {
    top: -1.5rem;
    right: -1.5rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
}

.element-2 {
    bottom: -1.5rem;
    left: -1.5rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.industry-card:hover .element-1 {
    transform: scale(1.1);
}

.industry-card:hover .element-2 {
    transform: scale(1.25);
}

/* Industry Icons */
.industry-icon {
    position: relative;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industry-icon i {
    font-size: 1.25rem;
    color: #374151;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Industry-specific icon colors */
.industry-icon-education { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.industry-icon-healthcare { background: linear-gradient(135deg, #e0f2fe, #b3e5fc); }
.industry-icon-realestate { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.industry-icon-travel { background: linear-gradient(135deg, #e1f5fe, #b3e5fc); }
.industry-icon-ecommerce { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }
.industry-icon-media { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.industry-icon-food { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.industry-icon-sports { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }

.icon-glow {
    position: absolute;
    inset: 0;
    border-radius: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .icon-glow {
    opacity: 1;
}

/* Action Button */
.industry-action-btn {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0.7;
    cursor: pointer;
}

.industry-action-btn i {
    font-size: 0.75rem;
    color: #374151;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-action-btn {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.industry-card:hover .industry-action-btn i {
    transform: translateX(1px);
}

/* Action button colors matching icons */
.industry-action-education { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.industry-action-healthcare { background: linear-gradient(135deg, #e0f2fe, #b3e5fc); }
.industry-action-realestate { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.industry-action-travel { background: linear-gradient(135deg, #e1f5fe, #b3e5fc); }
.industry-action-ecommerce { background: linear-gradient(135deg, #f3e8ff, #e9d5ff); }
.industry-action-media { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.industry-action-food { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.industry-action-sports { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }

/* Industry Content */
.industry-content {
    position: relative;
    z-index: 2;
}

.industry-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.industry-card:hover .industry-title {
    color: #1f2937;
}

.industry-description {
    font-size: 0.75rem;
    color: #4b5563;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
}

/* Industry Details */
.industry-details {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.industry-details-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.industry-solutions {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.solution-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #374151;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.solution-item:hover {
    opacity: 1;
    transform: translateX(2px);
}

.solution-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.375rem;
    transition: transform 0.2s ease;
}

.solution-item:hover .solution-dot {
    transform: scale(1.25);
}

.solution-item span {
    font-weight: 500;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.solution-item:hover span {
    opacity: 1;
}

/* Solution dot colors */
.solution-dot-education { background: linear-gradient(135deg, #3b82f6, #60a5fa); }
.solution-dot-healthcare { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.solution-dot-realestate { background: linear-gradient(135deg, #2563eb, #3b82f6); }
.solution-dot-travel { background: linear-gradient(135deg, #0284c7, #0ea5e9); }
.solution-dot-ecommerce { background: linear-gradient(135deg, #7c3aed, #a855f7); }
.solution-dot-media { background: linear-gradient(135deg, #ec4899, #f472b6); }
.solution-dot-food { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.solution-dot-sports { background: linear-gradient(135deg, #10b981, #34d399); }

/* Hover Effects */
.industry-shine {
    position: absolute;
    inset: 0;
    border-radius: 0.75rem;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease-out;
}

.industry-card:hover .industry-shine {
    transform: translateX(100%);
}

.industry-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 0.75rem 0.75rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.industry-card:hover .industry-bottom-accent {
    opacity: 1;
}

/* Bottom accent colors */
.industry-accent-education { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.industry-accent-healthcare { background: linear-gradient(90deg, #0ea5e9, #38bdf8); }
.industry-accent-realestate { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.industry-accent-travel { background: linear-gradient(90deg, #0284c7, #0ea5e9); }
.industry-accent-ecommerce { background: linear-gradient(90deg, #7c3aed, #a855f7); }
.industry-accent-media { background: linear-gradient(90deg, #ec4899, #f472b6); }
.industry-accent-food { background: linear-gradient(90deg, #f59e0b, #fbbf24); }
.industry-accent-sports { background: linear-gradient(90deg, #10b981, #34d399); }

/* Industry Card Background Gradients */
.industry-card[data-industry-index="0"] {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.25), rgba(191, 219, 254, 0.2), rgba(147, 197, 253, 0.25));
}

.industry-card[data-industry-index="1"] {
    background: linear-gradient(135deg, rgba(224, 242, 254, 0.25), rgba(179, 229, 252, 0.2), rgba(125, 211, 252, 0.25));
}

.industry-card[data-industry-index="2"] {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.25), rgba(187, 222, 251, 0.2), rgba(147, 197, 253, 0.25));
}

.industry-card[data-industry-index="3"] {
    background: linear-gradient(135deg, rgba(225, 245, 254, 0.25), rgba(179, 229, 252, 0.2), rgba(125, 211, 252, 0.25));
}

.industry-card[data-industry-index="4"] {
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.25), rgba(233, 213, 255, 0.2), rgba(196, 181, 253, 0.25));
}

.industry-card[data-industry-index="5"] {
    background: linear-gradient(135deg, rgba(252, 231, 243, 0.25), rgba(251, 207, 232, 0.2), rgba(244, 114, 182, 0.25));
}

.industry-card[data-industry-index="6"] {
    background: linear-gradient(135deg, rgba(254, 243, 199, 0.25), rgba(253, 230, 138, 0.2), rgba(251, 191, 36, 0.25));
}

.industry-card[data-industry-index="7"] {
    background: linear-gradient(135deg, rgba(209, 250, 229, 0.25), rgba(167, 243, 208, 0.2), rgba(52, 211, 153, 0.25));
}

/* Responsive Design */
@media (max-width: 768px) {
    .industry-card {
        padding: 0.875rem;
    }
    
    .industry-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .industry-icon i {
        font-size: 1.125rem;
    }
    
    .industry-title {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .industries-grid {
        gap: 1.5rem !important;
    }
    
    .industry-card {
        padding: 0.75rem;
    }
    
    .industry-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .industry-header {
        margin-bottom: 0.75rem !important;
    }
}

/* ===== EXPERTISE SECTION STYLES ===== */
.expertise-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.expertise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(156, 163, 175, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styles */
.expertise-header {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.expertise-badge {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(156, 163, 175, 0.2);
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #374151;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.expertise-badge i {
    color: #374151;
}

.expertise-header-text {
    max-width: 900px;
}

/* Content Layout */
.expertise-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

/* Sidebar Styles */
.expertise-sidebar {
    position: sticky;
    top: 8rem;
}

.expertise-divider {
    width: 3rem;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
}

/* Navigation Items */
.expertise-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-nav-item {
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0.75rem;
    overflow: hidden;
}

.expertise-nav-content {
    position: relative;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: white;
    transition: all 0.3s ease;
    z-index: 2;
}

.expertise-nav-item:hover .expertise-nav-content {
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.expertise-nav-item.active .expertise-nav-content {
    background: #111827;
    border-color: #111827;
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.expertise-nav-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.expertise-nav-item:hover .expertise-nav-icon {
    background: #e5e7eb;
}

.expertise-nav-item.active .expertise-nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.expertise-nav-icon i {
    font-size: 1rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.expertise-nav-item.active .expertise-nav-icon i {
    color: white;
}

.expertise-nav-title {
    font-weight: 500;
    font-size: 0.875rem;
    color: #1f2937;
    transition: color 0.3s ease;
}

.expertise-nav-item:hover .expertise-nav-title {
    color: #111827;
}

.expertise-nav-item.active .expertise-nav-title {
    color: white;
}

.expertise-nav-indicator {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: pulse 2s infinite;
}

.expertise-nav-item.active .expertise-nav-indicator {
    opacity: 1;
}

.expertise-nav-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(75, 85, 99, 0.6));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 0.75rem;
}

.expertise-nav-item:not(.active):hover .expertise-nav-overlay {
    opacity: 0.05;
}

/* Content Area */
.expertise-content-area {
    position: relative;
    min-height: 460px;
}

.expertise-content-panel {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(1rem);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}
.expertise-content-panel .fs-5.text-muted {
  font-size: 1rem !important;
}
.expertise-content-panel.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.expertise-content-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f9fafb;
    border-radius: 9999px;
    border: 1px solid #f3f4f6;
}

.expertise-content-badge span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Feature Items */
.expertise-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid #f3f4f6;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    animation: slideInFromLeft 0.6s ease-out both;
}

.expertise-feature-item:nth-child(1) { animation-delay: 0ms; }
.expertise-feature-item:nth-child(2) { animation-delay: 100ms; }
.expertise-feature-item:nth-child(3) { animation-delay: 200ms; }
.expertise-feature-item:nth-child(4) { animation-delay: 300ms; }

.expertise-feature-item:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
    transform: translateX(2px);
}

.expertise-feature-item i {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
}

.expertise-feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
}

/* Stats */
.expertise-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.expertise-stat-badge {
    padding: 0.5rem 1rem;
    background: #111827;
    color: white;
    border-radius: 9999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expertise-stat-badge span {
    font-size: 0.875rem;
    font-weight: 700;
}

/* Decorative Elements */
.expertise-decorative-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.expertise-dot {
    position: absolute;
    border-radius: 50%;
    background: #e5e7eb;
}

.expertise-dot-1 {
    top: 2rem;
    right: 2rem;
    width: 12px;
    height: 12px;
}

.expertise-dot-2 {
    bottom: 2rem;
    left: 2rem;
    width: 8px;
    height: 8px;
    background: #d1d5db;
}

/* Pattern Overlay */
.expertise-content-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    opacity: 0.05;
    pointer-events: none;
    background-image: 
        linear-gradient(45deg, rgba(0,0,0,0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0,0,0,0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Animations */
@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-1rem);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .expertise-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .expertise-nav {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .expertise-nav-item {
        flex-shrink: 0;
        min-width: 200px;
    }
    
    .expertise-content-panel {
        position: static;
        transform: none;
        opacity: 1;
        display: none;
    }
    
    .expertise-content-panel.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .expertise-content-panel {
        padding: 1.5rem;
    }
    
    .expertise-nav-item {
        min-width: 180px;
    }
    
    .expertise-nav-content {
        padding: 0.75rem;
    }
    
    .expertise-nav-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .expertise-badge {
        padding: 0.5rem 1rem !important;
        gap: 0.5rem !important;
    }
    
    .expertise-badge span {
        font-size: 0.75rem;
    }
    
    .expertise-content-panel {
        padding: 1.25rem;
    }
    
    .expertise-nav {
        gap: 0.75rem;
    }
    
    .expertise-nav-item {
        min-width: 160px;
    }
}

/* ============================================
   PROCESS SECTION STYLES
   ============================================ */

.process-section {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.9) 0%, 
        rgba(241, 245, 249, 0.9) 50%, 
        rgba(248, 250, 252, 0.9) 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.process-header {
    animation: fadeInUp 1s ease-out;
}

.process-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.process-header .badge-icon {
    font-size: 1.2rem;
}

.process-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.process-header .section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    z-index: 2;
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
}

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

.process-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.1),
        0 0 30px rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Process Number */
.process-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.process-number .number-emoji {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-number .number-text {
    transition: opacity 0.3s ease;
}

.process-card:hover .process-number .number-emoji {
    opacity: 1;
}

.process-card:hover .process-number .number-text {
    opacity: 0;
}

/* Process Content */
.process-content {
    margin-top: 1.5rem;
}

.process-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
}

.process-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0.25rem;
}

.process-features li:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateX(4px);
    padding-left: 0.5rem;
    margin: 0 -0.5rem;
}

.process-features li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.process-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
}

.process-duration i {
    font-size: 0.8rem;
}

/* Process Icon */
.process-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

/* Process Connector */
.process-connector {
    display: none;
}

@media (min-width: 992px) {
    .process-connector {
        display: block;
        position: absolute;
        top: 30px;
        right: -25px;
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), transparent);
        z-index: 1;
    }
    
    .process-connector::after {
        content: '';
        position: absolute;
        right: -8px;
        top: -4px;
        width: 0;
        height: 0;
        border-left: 8px solid var(--primary-color);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
    }
    
    .col-lg-4:nth-child(3) .process-connector,
    .col-lg-4:nth-child(6) .process-connector {
        display: none;
    }
}

/* Process Methodology */
.process-methodology {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 3rem;
    margin-top: 4rem;
    backdrop-filter: blur(10px);
    text-align: center;
}

.methodology-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.methodology-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0.75rem;
}

.methodology-item:hover {
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(-5px);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.methodology-item:hover .methodology-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

.methodology-item h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.methodology-item p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Background */
.process-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.timeline-line {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.3) 10%,
        rgba(59, 130, 246, 0.3) 90%,
        transparent 100%
    );
    z-index: 1;
}

.floating-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

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

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

@keyframes processPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .process-header .section-title {
        font-size: 2rem;
    }
    
    .process-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .process-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .process-methodology {
        padding: 2rem 1.5rem;
    }
    
    .methodology-title {
        font-size: 1.5rem;
    }
    
    .methodology-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-header .section-title {
        font-size: 1.75rem;
    }
    
    .process-card {
        padding: 1.25rem;
    }
    
    .process-title {
        font-size: 1.2rem;
    }
    
    .process-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION STYLES
   ============================================ */

.testimonials-section {
    background: linear-gradient(135deg, 
        rgba(255, 247, 237, 0.9) 0%, 
        rgba(254, 243, 199, 0.9) 50%, 
        rgba(255, 247, 237, 0.9) 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.testimonials-header {
    animation: fadeInUp 1s ease-out;
}

.testimonials-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(251, 146, 60, 0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ea580c;
}

.testimonials-header .badge-icon {
    font-size: 1.2rem;
}

.testimonials-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.testimonials-header .section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Testimonial Card */
.testimonial-main-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.testimonial-main-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

/* Quote Icon */
.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.testimonial-main-card:hover .quote-icon {
    color: #ea580c;
    transform: scale(1.1);
}

/* Testimonial Header */
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-avatar {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.user-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.user-title {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.user-company {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ea580c;
}

/* Rating and Industry */
.testimonial-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.star-rating {
    display: flex;
    gap: 0.25rem;
}

.star-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.industry-badge {
    background: rgba(249, 115, 22, 0.1);
    color: #ea580c;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

/* Testimonial Content */
.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 4rem;
    color: rgba(249, 115, 22, 0.2);
    position: absolute;
    left: -0.5rem;
    top: -1rem;
    font-family: serif;
}

/* Project Info */
.project-info {
    margin-bottom: 1.5rem;
}

.project-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.company-size {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Results */
.results-section h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.results-list {
    display: grid;
    gap: 0.5rem;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #059669;
}

.result-dot {
    width: 6px;
    height: 6px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Control Panels */
.testimonial-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.control-panel:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.control-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

/* Navigation Controls */
.navigation-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
}

.nav-btn:hover {
    background: #ea580c;
    color: white;
    transform: scale(1.05);
    border-color: #ea580c;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.nav-btn:active {
    transform: scale(0.98);
}

.testimonial-counter {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(226, 232, 240, 1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ea580c, #f97316);
    border-radius: 2px;
    transition: width 0.3s ease;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
    animation: shimmer 2s ease-in-out infinite;
}

/* Auto-play Toggle */
.autoplay-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.control-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.toggle-switch {
    width: 48px;
    height: 24px;
    background: #d1d5db;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: #ea580c;
}

.toggle-knob {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch.active .toggle-knob {
    transform: translateX(24px);
}

/* Stats List */
.stats-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.stat-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.stat-value.success {
    color: #059669;
}

.rating-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Testimonial Thumbnails */
.testimonial-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.thumbnail-card {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid transparent;
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease-out forwards;
}

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

.thumbnail-card:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.thumbnail-card.active {
    background: rgba(254, 243, 199, 1);
    border-color: #ea580c;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.thumbnail-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.thumbnail-avatar {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ea580c, #f97316);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.thumbnail-info .user-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

.thumbnail-info .user-company {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Background Elements */
.testimonials-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-quotes {
    position: absolute;
    inset: 0;
}

.gradient-orbs {
    position: absolute;
    inset: 0;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-header .section-title {
        font-size: 2rem;
    }
    
    .testimonial-main-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-user {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .control-panel {
        padding: 1.25rem;
    }
    
    .testimonial-thumbnails {
        grid-template-columns: 1fr;
    }
    
    .navigation-controls {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-header .section-title {
        font-size: 1.75rem;
    }
    
    .testimonial-main-card {
        padding: 1.5rem 1rem;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .user-avatar {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .quote-icon {
        font-size: 1.5rem;
        top: 1.5rem;
        right: 1.5rem;
    }
}

/* ============================================
   FAQ SECTION STYLES
   ============================================ */

.faq-section {
    background: linear-gradient(135deg, 
        rgba(245, 245, 247, 0.9) 0%, 
        rgba(248, 250, 252, 0.9) 50%, 
        rgba(245, 245, 247, 0.9) 100%
    );
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.faq-header {
    animation: fadeInUp 1s ease-out;
}

.faq-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(167, 139, 250, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #7c3aed;
}

.faq-header .badge-icon {
    font-size: 1.2rem;
}

.faq-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.faq-header .section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Container */
.faq-search-container {
    position: relative;
    animation: slideInUp 0.8s ease-out;
}



/* FAQ Controls */
.faq-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.expand-all-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.expand-all-btn:hover {
    background: #7c3aed;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.faq-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(226, 232, 240, 1);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    background: #7c3aed;
    color: white;
    border-color: #7c3aed;
    transform: translateY(-1px);
}

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Item */
.faq-item {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
}

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

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

.faq-item.active {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #7c3aed;
}

/* FAQ Question */
.faq-question {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(139, 92, 246, 0.02);
}

.faq-question-content {
    flex: 1;
}

.faq-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    display: none;
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-item.active .faq-icon {
    color: #7c3aed;
}

.faq-category {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border-radius: 1rem;
    font-weight: 500;
}

.faq-popularity {
    display: flex;
    gap: 0.125rem;
}

.popularity-dot {
    width: 4px;
    height: 4px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.faq-item.active .popularity-dot {
    background: #7c3aed;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    color: #7c3aed;
    transform: rotate(180deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 0;
}

.faq-answer-text {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.answer-indicator {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.answer-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.answer-content {
    flex: 1;
}

.answer-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.answer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.answer-action {
    font-size: 0.85rem;
    color: #7c3aed;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.answer-action:hover {
    color: #5b21b6;
    text-decoration: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    animation: fadeInUp 0.6s ease-out;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-results p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.btn-show-all {
    background: #7c3aed;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-show-all:hover {
    background: #5b21b6;
    transform: translateY(-1px);
}

/* Additional Help */
.additional-help {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.help-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.additional-help h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.additional-help p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.help-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary.help-btn {
    background: #7c3aed;
    color: white;
}

.btn-primary.help-btn:hover {
    background: #5b21b6;
    color: white;
}

.btn-outline-primary.help-btn {
    background: transparent;
    color: #7c3aed;
    border: 1px solid #7c3aed;
}

.btn-outline-primary.help-btn:hover {
    background: #7c3aed;
    color: white;
}

/* Background Elements */
.faq-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-question-marks {
    position: absolute;
    inset: 0;
}

.gradient-circles {
    position: absolute;
    inset: 0;
}

/* Highlight for search results */
.highlight {
    background: rgba(255, 235, 59, 0.3);
    padding: 0.125rem 0.25rem;
    border-radius: 0.25rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-header .section-title {
        font-size: 2rem;
    }
    
    .faq-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-meta {
        flex-wrap: wrap;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-btn {
        min-width: 200px;
        justify-content: center;
    }
    
    .additional-help {
        padding: 2rem 1.5rem;
    }
    
    .help-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .faq-header .section-title {
        font-size: 1.75rem;
    }
    
    .search-input {
        font-size: 0.9rem;
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 1rem 1rem;
    }
}

/* ============================================
   CONTACT SECTION STYLES
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.03) 0%, 
        rgba(147, 197, 253, 0.08) 30%,
        rgba(255, 255, 255, 1) 60%,
        rgba(249, 115, 22, 0.03) 90%,
        rgba(251, 146, 60, 0.05) 100%
    );
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.contact-background {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

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

.contact-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 1.5rem;
}

.contact-header .badge-icon {
    font-size: 1.2rem;
}

.contact-header .section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-header .section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(59, 130, 246, 0.05);
    animation: slideInUp 0.8s ease-out;
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Form Groups */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid rgba(226, 232, 240, 1);
    border-radius: 0.75rem;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: rgba(255, 255, 255, 1);
}

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

.form-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    transition: color 0.3s ease;
    margin-top: 1.25rem;
}

.form-group:focus-within .form-icon {
    color: #3b82f6;
}

/* Textarea specific styling */
textarea.form-control {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

/* Select styling */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5rem 1.5rem;
    padding-right: 3rem;
}

/* Submit Button */
.btn-contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

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

.btn-content,
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-loading {
    display: none;
}

.btn-contact-submit.loading .btn-content {
    display: none;
}

.btn-contact-submit.loading .btn-loading {
    display: flex;
}

.spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Form Note */
.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Form Status Messages */
.form-status {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #059669;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #dc2626;
}

/* Contact Info */
.contact-info {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.contact-methods {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.contact-methods h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-methods p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(59, 130, 246, 0.05);
}

.method-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.25rem;
}

.method-content {
    flex: 1;
}

.method-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.method-value {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.method-value a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-value a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Quick Actions */
.quick-actions {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.quick-actions h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.quick-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-action-btn.call-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.quick-action-btn.call-btn:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.quick-action-btn.email-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.quick-action-btn.email-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.quick-action-btn.chat-btn {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
}

.quick-action-btn.chat-btn:hover {
    background: linear-gradient(135deg, #d97706, #b45309);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Business Hours */
.business-hours {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.business-hours h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.hours-list {
    margin-bottom: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

.hours-item.weekend {
    opacity: 0.6;
}

.day {
    font-weight: 600;
    color: var(--text-dark);
}

.time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timezone-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid rgba(226, 232, 240, 0.5);
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.back-to-top:active {
    transform: translateY(-1px);
}

/* ============================================
   CHAT WIDGET
   ============================================ */

.chat-widget {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    z-index: 1001;
}

.chat-toggle {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: pulse-chat 2s infinite;
}

.chat-toggle:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.chat-badge {
    position: absolute;
    top: -0.25rem;
    right: -0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background: #ef4444;
    color: white;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

.chat-window {
    position: absolute;
    bottom: 4.5rem;
    right: 0;
    width: 20rem;
    max-width: calc(100vw - 2rem);
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(10px) scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-window.open {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.chat-header {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.chat-body {
    padding: 1rem;
    max-height: 20rem;
    overflow-y: auto;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.message-content {
    flex: 1;
}

.message-content p {
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 0.5rem;
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.chat-suggestions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.suggestion-btn {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.suggestion-btn:hover {
    background: #3b82f6;
    color: white;
}

.chat-footer {
    border-top: 1px solid #e2e8f0;
    padding: 1rem;
}

.chat-input-container {
    display: flex;
    gap: 0.5rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    outline: none;
}

.chat-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.chat-send {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-send:hover {
    background: #1d4ed8;
}

/* Animations */
@keyframes breathing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

@keyframes pulse-line {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

@keyframes pulse-chat {
    0% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(249, 115, 22, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header .section-title {
        font-size: 2.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .quick-action-buttons {
        gap: 0.5rem;
    }
    
    .brand-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .brand-divider {
        width: 4rem;
        height: 1px;
    }
    
    .divider-line {
        width: 100%;
        height: 1px;
    }
    
    .footer-nav {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .chat-widget {
        bottom: 4rem;
        right: 1rem;
    }
    
    .chat-toggle {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    
    .chat-window {
        width: calc(100vw - 2rem);
    }
}

@media (max-width: 576px) {
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-header .section-title {
        font-size: 2rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .form-control {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .form-icon {
        left: 0.875rem;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .brand-container {
        padding: 1.5rem;
    }
    
    .logo-img {
        height: 2.5rem;
    }
    
    .brand-title {
        font-size: 1.5rem;
    }
}

/* ============================================
   AGILE PROCESS SECTION STYLES
   ============================================ */

.agile-process-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    min-height: 100vh;
    color: white;
}

.agile-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.process-header-section {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.process-header-section .section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: #f97316;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.process-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Timeline Container */
.process-timeline-container {
    position: relative;
    margin: 4rem 0;
    padding: 0 2rem;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #f97316, #3b82f6);
    width: 16.66%; /* Initial width for step 1 */
    transition: width 0.5s ease;
    border-radius: 1px;
}

/* Timeline Steps */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 80%;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.timeline-step:hover {
    transform: translateY(-5px);
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step.active .step-circle {
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.timeline-step.completed .step-circle {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-color: #3b82f6;
}

.step-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.step-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-weight: 500;
    max-width: 120px;
    line-height: 1.3;
}

.timeline-step.active .step-label {
    color: #f97316;
    font-weight: 600;
}

/* Process Content */
.process-content-container {
    margin: 4rem 0;
    position: relative;
}

.process-step-content {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.process-step-content.active {
    display: block;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 3rem;
    backdrop-filter: blur(10px);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.step-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.step-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 3rem;
}

/* Step Details */
.step-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.detail-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.detail-item:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.detail-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Navigation Controls */
.process-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 10;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.current-step {
    color: #f97316;
    font-size: 1.25rem;
}

.total-steps {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-main-title {
        font-size: 2.5rem;
    }
    
    .step-card {
        padding: 2rem;
    }
    
    .step-title {
        font-size: 2rem;
    }
    
    .step-details {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .agile-process-section {
        padding: 3rem 0;
    }
    
    .process-main-title {
        font-size: 2rem;
    }
    
    .process-subtitle {
        font-size: 1rem;
    }
    
    .timeline-steps {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .step-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        font-size: 1rem;
    }
    
    .step-label {
        font-size: 0.75rem;
        max-width: 80px;
    }
    
    .step-card {
        padding: 1.5rem;
    }
    
    .step-title {
        font-size: 1.75rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .step-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .detail-item {
        padding: 1rem;
    }
    
    .process-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .process-timeline-container {
        padding: 0 1rem;
    }
    
    .timeline-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .timeline-step {
        flex: 0 0 calc(33.333% - 0.5rem);
    }
    
    .timeline-line {
        display: none;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .detail-content h4 {
        font-size: 1.125rem;
    }
}

/* ===========================================
   🎯 PIXEL PERFECT AGILE PROCESS SECTION 
   =========================================== */
.agile-process-section {
    padding: 50px 0 50px;
    background: 
        radial-gradient(circle at 25% 25%, rgba(249, 115, 22, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.agile-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="60" height="60" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
}

.agile-process-section .container-fluid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Section Header - EXACT MATCH */
.process-header-section {
    text-align: center;
    margin-bottom: 70px;
}

.process-header-section .section-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.08);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 40px;
    padding: 10px 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.process-header-section .badge-text {
    color: #f97316;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.process-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.process-subtitle {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Timeline Container - PIXEL PERFECT */
.process-timeline-container {
    margin-bottom: 60px;
    position: relative;
    padding: 0 20px;
}

/* Timeline Line */
.timeline-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.timeline-progress {
    height: 100%;
    background: #f97316;
    width: 16.67%; /* Shows completion through step 1 */
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Timeline Steps - EXACT DESIGN */
.timeline-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease;
    flex: 1;
}

.step-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-step.active .step-circle {
    background: #f97316;
    border-color: #f97316;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.4);
}

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}

.timeline-step.active .step-number {
    color: #ffffff;
}

.step-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
    max-width: 120px;
}

.timeline-step.active .step-label {
    color: #f97316;
    font-weight: 600;
}

/* Process Content - CARD DESIGN */
.process-content-container {
    margin-bottom: 0px;
}

.process-step-content {
    display: none;
    animation: slideInUp 0.5s ease forwards;
}

.process-step-content.active {
    display: block;
}

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

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #f97316;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.step-description {
    font-size: 16px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 800px;
}

/* Step Details Grid - 2x2 LAYOUT */
.step-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.25s ease;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.detail-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(249, 115, 22, 0.2);
    transform: translateY(-1px);
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 18px;
    color: #f97316;
}

.detail-content {
    flex: 1;
}

.detail-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.detail-content p {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* Navigation Controls - EXACT MATCH */
.process-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 20px;
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 100px;
    justify-content: center;
}

.nav-btn:hover:not(:disabled) {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.2);
    color: #f97316;
}

.nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.step-indicator {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.current-step {
    color: #f97316;
    font-weight: 600;
}

.total-steps {
    color: #9ca3af;
}

/* RESPONSIVE - PIXEL PERFECT */
@media (max-width: 1200px) {
    .agile-process-section .container-fluid {
        padding: 0 40px;
    }

    .process-main-title {
        font-size: 42px;
    }

    .step-card {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .agile-process-section {
        padding: 60px 0 80px;
    }

    .agile-process-section .container-fluid {
        padding: 0 20px;
    }

    .process-main-title {
        font-size: 32px;
    }

    .process-subtitle {
        font-size: 16px;
    }

    .timeline-steps {
        overflow-x: auto;
        padding-bottom: 10px;
        gap: 20px;
    }

    .timeline-step {
        min-width: 80px;
        flex-shrink: 0;
    }

    .step-circle {
        width: 50px;
        height: 50px;
    }

    .step-number {
        font-size: 18px;
    }

    .step-label {
        font-size: 12px;
        max-width: 80px;
    }

    .step-card {
        padding: 24px;
    }

    .step-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .step-title {
        font-size: 24px;
    }

    .step-description {
        font-size: 15px;
    }

    .step-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-navigation {
        flex-direction: column;
        gap: 16px;
    }

    .nav-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ===========================================
   🎯 SUCCESS STORIES SECTION - PIXEL PERFECT
   =========================================== */
.success-stories-section {
    padding: 100px 0 120px;
    background: 
        radial-gradient(circle at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 40%),
        linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots-light" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(100,116,139,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots-light)"/></svg>');
    opacity: 0.6;
}

.success-stories-section .container-fluid {
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.success-header-section {
    text-align: center;
    margin-bottom: 80px;
}

.success-main-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.success-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
    font-weight: 400;
}

/* Case Studies Grid */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.case-study-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, rgba(241, 245, 249, 0.3) 100%);
    border-radius: 50%;
    transform: translate(40px, -40px);
    opacity: 0.6;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Case Study Header */
.case-study-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.case-study-category {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(100, 116, 139, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #475569;
    letter-spacing: 0.5px;
}

.case-study-category i {
    font-size: 12px;
    color: #64748b;
}

.case-study-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
}

/* Case Study Content */
.case-study-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.case-study-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Case Study Metrics */
.case-study-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.metric-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
}

.metric-bar {
    position: relative;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    overflow: hidden;
    flex: 1;
    margin-right: 12px;
}

.metric-progress {
    height: 100%;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    border-radius: 2px;
    position: relative;
    transition: width 1s ease-out;
}

.metric-value {
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
    flex-shrink: 0;
    min-width: 32px;
    text-align: right;
}

/* Proven Track Record Section */
.proven-track-record {
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.proven-track-record::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

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

.track-record-title {
    font-size: 30px !important;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 16px;
    line-height: 1.2;
}

.track-record-subtitle {
    font-size: 16px;
    color: #64748b;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 48px;
}

.track-record-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.track-stat {
    text-align: center;
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.5);
    transition: all 0.3s ease;
}

.track-stat:hover {
    background: rgba(241, 245, 249, 0.8);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 40px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .success-stories-section .container-fluid {
        padding: 0 40px;
    }

    .success-main-title {
        font-size: 42px;
    }

    .case-studies-grid {
        gap: 24px;
    }

    .case-study-card {
        padding: 28px;
    }

    .proven-track-record {
        padding: 40px;
    }

    .track-record-title {
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .case-studies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .track-record-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .success-stories-section {
        padding: 60px 0 80px;
    }

    .success-stories-section .container-fluid {
        padding: 0 20px;
    }

    .success-main-title {
        font-size: 32px;
    }

    .success-subtitle {
        font-size: 16px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .case-study-card {
        padding: 24px;
    }

    .case-study-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .case-study-content h3 {
        font-size: 20px;
    }

    .case-study-description {
        font-size: 14px;
    }

    .proven-track-record {
        padding: 32px 24px;
    }

    .track-record-title {
        font-size: 28px;
    }

    .track-record-subtitle {
        font-size: 15px;
    }

    .track-record-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }
}

/* Animation for metrics when in view */
@keyframes fillProgress {
    from {
        width: 0%;
    }
    to {
        width: var(--target-width);
    }
}

.metric-progress.animate {
    animation: fillProgress 1.5s ease-out forwards;
}

/* ============================================
   COMPACT DESIGN ADJUSTMENTS
   Font sizes, padding, and spacing reductions
   ============================================ */

/* Global Typography Reductions */
.section-title {
    font-size: clamp(2rem, 6vw, 3rem) !important;
    margin-bottom: 1rem !important;
}

.section-description {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

.section-badge {
    font-size: 0.75rem !important;
    padding: 0.4rem 0.8rem !important;
}

/* Heading Reductions */
h1 {
    font-size: clamp(2rem, 5vw, 2.8rem) !important;
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.2rem) !important;
}

h3 {
    font-size: 1rem !important;
}

h4 {
    font-size: 1.2rem !important;
}

h5 {
    font-size: 1.1rem !important;
}

h6 {
    font-size: 1rem !important;
}

/* Paragraph and Text Reductions */
p {
    font-size: 0.9rem !important;
    line-height: 1.2 !important;
}

/* Section Padding Reductions */
/*
.hero-section {
    padding: 4rem 0 !important;
}
*/

.why-choose-us-section {
    padding: 4rem 0 !important;
}
/* 
.stats-section {
    padding: 3rem 0 !important;
} */


.services-section {
    padding: 0rem 0 !important;
}

.industries-section {
    padding: 4rem 0 0 !important;
}

.expertise-section {
    padding: 4rem 0 !important;
}

.process-section {
    padding: 4rem 0 !important;
}

.success-stories-section {
    padding: 2rem 0 !important;
}

.faq-section {
    padding: 4rem 0 !important;
}

.cta-section {
    padding: 3rem 0 0 !important;
}

/* Card Padding Reductions */
.card, .feature-card, .service-card, .industry-card {
    padding: .5rem !important;
}

.testimonial-card {
    padding: 1.5rem !important;
}

.process-card {
    padding: 1.5rem !important;
}

.why-card {
    padding: 1.2rem !important;
}

.story-card {
    padding: 1.5rem !important;
}

.faq-card {
    padding: 1.2rem !important;
}

/* Container and Content Padding Reductions */
.container-fluid {
    padding-left: 0.8rem !important;
    padding-right: 0.8rem !important;
}

.row {
    margin-left: -0.6rem !important;
    margin-right: -0.6rem !important;
}

.col, [class*="col-"] {
    padding-left: 0.6rem !important;
    padding-right: 0.6rem !important;
}

/* Margin Reductions */
.mb-5 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mt-5 {
    margin-top: 2rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

/* Button Size Reductions */
.btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.85rem !important;
}

.btn-lg {
    padding: 0.8rem 1.6rem !important;
    font-size: 0.95rem !important;
}

/* Form Element Reductions */
.form-control {
    padding: 0.6rem 0.8rem !important;
    font-size: 0.85rem !important;
}

.form-label {
    font-size: 0.8rem !important;
    margin-bottom: 0.3rem !important;
}

/* Icon Size Reductions */
.fa, .fas, .far, .fab {
    font-size: 0.9em !important;
}

.feature-icon, .service-icon {
    font-size: 1.8rem !important;
}

/* Badge and Tag Reductions */
.badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
}

/* List Item Reductions */
li {
    font-size: 0.9rem !important;
    margin-bottom: 0.3rem !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem) !important;
    }
    
    .hero-section,
    .why-choose-us-section,
    .features-section,
    .services-section,
    .industries-section,
    .expertise-section,
    .process-section,
    .success-stories-section,
    .faq-section {
        padding: 2.5rem 0 !important;
    }
    
    .stats-section,
    .cta-section {
        padding: 2rem 0 !important;
    }
    
    .card, .feature-card, .service-card, .industry-card,
    .process-card, .why-card, .story-card, .faq-card {
        padding: 1rem !important;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: clamp(1.4rem, 4vw, 1.8rem) !important;
    }
    
    p {
        font-size: 0.85rem !important;
    }
    
    .hero-section,
    .why-choose-us-section,
    .features-section,
    .services-section,
    .industries-section,
    .expertise-section,
    .process-section,
    .success-stories-section,
    .faq-section {
        padding: 2rem 0 !important;
    }
}

/* ============================================
   SERVICE CARD EQUAL HEIGHT ADJUSTMENTS
   Ensures all service cards have equal height
   ============================================ */

/* Ensure Bootstrap columns work with flexbox for equal heights */
.services-grid .col-md-6,
.services-grid .col-lg-4 {
    display: flex;
    flex-direction: column;
}

/* Ensure service card header has consistent height */
.service-card-header {
    min-height: 60px !important;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

/* Ensure service description area has flexible height */
.service-card-content > .mb-4 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    flex-grow: 1;
    margin-bottom: 1rem;
}
.service-card-content .mb-4, .service-card-content .mb-4 p{
    margin-bottom: 5px !important;
  min-height: 60px;
}
/* Ensure service features section fills available space */
/* .service-features {
    min-height: 120px !important;
} */

/* Consistent feature item height */


.webdev-expert-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(180deg, #f9fbff 0%, #ffffff 100%);
  overflow: hidden;
}

.webdev-expert-section .container {
  position: relative;
  z-index: 2;
  max-width:1000px!important;
  margin: 0 auto;
}

/* 🎨 Colorful Bubbles */
.webdev-expert-section .bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.webdev-expert-section .bubbles span {
  position: absolute;
  bottom: -60px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.6;
  animation: bubble 15s infinite ease-in;
}

/* Different colors and positions */
.webdev-expert-section .bubbles span:nth-child(1) { left: 10%; background: rgba(255, 99, 132, 0.4); width: 25px; height: 25px; animation-delay: 0s; }
.webdev-expert-section .bubbles span:nth-child(2) { left: 20%; background: rgba(54, 162, 235, 0.4); width: 15px; height: 15px; animation-delay: 2s; }
.webdev-expert-section .bubbles span:nth-child(3) { left: 35%; background: rgba(255, 206, 86, 0.4); width: 30px; height: 30px; animation-delay: 4s; }
.webdev-expert-section .bubbles span:nth-child(4) { left: 50%; background: rgba(75, 192, 192, 0.4); width: 18px; height: 18px; animation-delay: 1s; }
.webdev-expert-section .bubbles span:nth-child(5) { left: 65%; background: rgba(153, 102, 255, 0.4); width: 22px; height: 22px; animation-delay: 3s; }
.webdev-expert-section .bubbles span:nth-child(6) { left: 75%; background: rgba(255, 159, 64, 0.4); width: 26px; height: 26px; animation-delay: 5s; }
.webdev-expert-section .bubbles span:nth-child(7) { left: 85%; background: rgba(0, 204, 255, 0.4); width: 20px; height: 20px; animation-delay: 7s; }
.webdev-expert-section .bubbles span:nth-child(8) { left: 90%; background: rgba(255, 0, 204, 0.4); width: 28px; height: 28px; animation-delay: 9s; }
.webdev-expert-section .bubbles span:nth-child(9) { left: 40%; background: rgba(0, 255, 153, 0.4); width: 24px; height: 24px; animation-delay: 6s; }
.webdev-expert-section .bubbles span:nth-child(10){ left: 55%; background: rgba(255, 255, 102, 0.4); width: 20px; height: 20px; animation-delay: 8s; }

@keyframes bubble {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-400px) translateX(20px) scale(1.1);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-800px) translateX(-30px) scale(1.3);
    opacity: 0;
  }
}

/* Top Badge */
.webdev-expert-section .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border-radius: 40px;
  padding: 10px 24px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  font-size: 14px;
  font-weight: 600;
  color: #0a2540;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.webdev-expert-section .badge i {
  color: #1e73be;
  font-size: 16px;
}

/* Title & Text */
.webdev-expert-section .section-title {
  font-size: 34px !important;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.webdev-expert-section .section-text {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

.webdev-expert-section .section-subtext {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  max-width: 750px;
  margin: 0 auto;
}

.brands-image-container {
  position: relative;
  margin-bottom: 1.5rem;
  animation: scaleIn 1s ease-out 1.2s both;
}
.brands-image-container ul {
display: flex;
  justify-content: center;
  border-radius: 14px;
  padding: 0px;
  align-content: center;
  gap: 20px;
}
.brands-image-container ul li {
  display: flex;
  flex-direction: row;
  background: #fdfdfd;
  align-items: center;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 4px #f2f2f2;
}
.brands-image-container ul li img {
  width: 95px;
}

/* Responsive */
@media (max-width: 768px) {
  .webdev-expert-section .section-title {
    font-size: 26px;
  }
   .webdev-expert-section .badge {
    padding: 8px 18px;
    font-size: 13px;
  }
}








/* Additional responsive equal height fixes */
@media (min-width: 768px) {
    .services-grid {
        align-items: stretch !important;
    }
    
    .services-grid .col-md-6,
    .services-grid .col-lg-4 {
        display: flex !important;
    }
    
    .service-card {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    
    .service-card-content {
        display: flex !important;
        flex-direction: column !important;
        flex-grow: 1 !important;
    }
    
    /* Ensure proper spacing within service cards */
    .service-card-content > .mb-4:first-child {
        flex-grow: 1 !important;
    }
    
    .service-features {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        flex-grow: 1 !important;
    }
    
    .service-tech {
        margin-top: auto !important;
    }
}
