/* Custom CSS for CodeIgniter India Website */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary-color: #dc3545;
    --primary-dark: #bb2d3b;
    --primary-light: #e85d75;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    
    /* Gray palette */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Red accent palette */
    --red-50: #fef2f2;
    --red-100: #fee2e2;
    --red-200: #fecaca;
    --red-300: #fca5a5;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --red-900: #7f1d1d;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Typography */
    --font-family-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-very-slow: 1s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Red glow shadows */
    --shadow-red-sm: 0 1px 2px 0 rgba(239, 68, 68, 0.1);
    --shadow-red-md: 0 4px 6px -1px rgba(239, 68, 68, 0.2), 0 2px 4px -1px rgba(239, 68, 68, 0.1);
    --shadow-red-lg: 0 10px 15px -3px rgba(239, 68, 68, 0.3), 0 4px 6px -2px rgba(239, 68, 68, 0.15);
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Z-index levels */
    --z-background: -10;
    --z-content: 1;
    --z-dropdown: 1000;
    --z-header: 1030;
    --z-modal: 1040;
    --z-loading: 1050;
    --z-progress: 1060;
}

/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--gray-600);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Global heading and text adjustments for better readability */
h1 {
    font-size: clamp(1.875rem, 5vw, 2.75rem) !important;
    line-height: 1.2 !important;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem) !important;
    line-height: 1.3 !important;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.875rem) !important;
    line-height: 1.4 !important;
}

h4 {
    font-size: clamp(1rem, 2vw, 1rem) !important;
    line-height: 1.4 !important;
}

h5 {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    line-height: 1.5 !important;
}

h6 {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem) !important;
    line-height: 1.5 !important;
}

p {
    font-size: clamp(0.875rem, 2vw, 1rem) !important;
    line-height: 1.6 !important;
}

.main-content {
    position: relative;
    z-index: var(--z-content);

}

/* ===== CUSTOM ANIMATIONS ===== */
@keyframes shimmer-elegant {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes red-shimmer {
    0% { transform: translateX(-100%); opacity: 0.3; }
    50% { opacity: 0.7; }
    100% { transform: translateX(100%); opacity: 0.3; }
}

@keyframes grid-slide-x {
    0% { background-position: 0 0; }
    100% { background-position: 20px 0; }
}

@keyframes fade-in-smooth {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes red-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
}

@keyframes red-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.2); }
    50% { box-shadow: 0 0 20px rgba(239, 68, 68, 0.4), 0 0 30px rgba(239, 68, 68, 0.1); }
}

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

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

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

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

@keyframes float-particle {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    25% { transform: translateY(-15px) translateX(5px); }
    50% { transform: translateY(-10px) translateX(-5px); }
    75% { transform: translateY(-20px) translateX(3px); }
}

@keyframes float-particle-slow {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-8px) translateX(3px); }
}

@keyframes drift-rotate {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(10px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes drift-rotate-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(180deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes breathing-slow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.02); opacity: 0.6; }
}

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

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

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

@keyframes wave-motion-reverse {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

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

@keyframes loading-bounce-1 {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes loading-bounce-2 {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes loading-bounce-3 {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* ===== PROGRESS INDICATOR ===== */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(229, 231, 235, 0.8);
    backdrop-filter: blur(8px);
    z-index: var(--z-progress);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--gray-700), var(--red-500), var(--gray-900));
    width: 0%;
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}

.progress-bar::before {
    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-elegant 2s infinite;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5), transparent);
    animation: red-shimmer 3s infinite;
}

/* ===== SECTION INDICATOR ===== */
.section-indicator {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: var(--z-progress);
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--gray-700);
    font-size: 0.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
}

.section-indicator.show {
    opacity: 1;
    transform: translateY(0);
    animation: fade-in-smooth 0.5s ease;
}

.section-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(156, 163, 175, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.section-indicator:hover::before {
    opacity: 1;
}

.section-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 68, 68, 0.1);
    animation: red-glow 3s ease-in-out infinite;
}

.indicator-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    border-radius: 50%;
    animation: red-pulse 2s infinite;
    box-shadow: var(--shadow-red-sm);
}

.indicator-micro-dot {
    width: 4px;
    height: 4px;
    background: var(--red-300);
    border-radius: 50%;
    animation: soft-float 3s ease-in-out infinite;
}

.indicator-text {
    font-weight: 500;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-loading);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: all var(--transition-very-slow);
    overflow: hidden;
}

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

.loading-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50), #ffffff, rgba(239, 68, 68, 0.05));
}

.loading-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 25px 25px, var(--gray-700) 2px, transparent 2px),
        radial-gradient(circle at 75px 75px, var(--red-500) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px;
}

.loading-float-1 {
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--gray-200);
    transform: rotate(45deg);
    animation: soft-float 4s ease-in-out infinite;
    opacity: 0.3;
}

.loading-float-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.15);
    border-radius: 50%;
    animation: breathing 3s ease-in-out infinite;
    opacity: 0.4;
    box-shadow: var(--shadow-red-lg);
}

.loading-float-3 {
    position: absolute;
    top: 10rem;
    right: 10rem;
    width: 2rem;
    height: 2rem;
    background: rgba(239, 68, 68, 0.2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: float-large 5s ease-in-out infinite;
    opacity: 0.2;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.loading-spinner-container {
    position: relative;
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
}

.loading-spinner-outer {
    width: 4rem;
    height: 4rem;
    border: 2px solid var(--gray-200);
    border-radius: 50%;
}

.loading-spinner-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    height: 4rem;
    border: 2px solid transparent;
    border-top-color: var(--red-500);
    border-radius: 50%;
    animation: loading-spin 1s linear infinite;
    box-shadow: var(--shadow-red-lg);
}

.loading-spinner-pulse {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: red-pulse 2s infinite;
}

.loading-title {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.loading-subtitle {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
}

.loading-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.loading-dot-1 {
    background: var(--gray-400);
    animation: loading-bounce-1 1.4s ease-in-out infinite both;
}

.loading-dot-2 {
    background: var(--red-400);
    animation: loading-bounce-2 1.4s ease-in-out 0.16s infinite both;
}

.loading-dot-3 {
    background: var(--gray-400);
    animation: loading-bounce-3 1.4s ease-in-out 0.32s infinite both;
}

/* ===== ADVANCED BACKGROUND TEXTURE ===== */
.advanced-background-texture {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-background);
    pointer-events: none;
    overflow: hidden;
}

.bg-gradient-base {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.4), #ffffff, rgba(239, 68, 68, 0.05));
}

.bg-noise-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
}

.bg-geometric-patterns {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
}

.bg-primary-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(107, 114, 128, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(107, 114, 128, 0.8) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-secondary-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(156, 163, 175, 0.6) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
}

.bg-diagonal-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    background-image: linear-gradient(rgba(239, 68, 68, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
}

.bg-radial-dots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(circle at 30px 30px, var(--gray-700) 2px, transparent 2px),
        radial-gradient(circle at 90px 90px, var(--red-500) 1.5px, transparent 1.5px),
        radial-gradient(circle at 60px 120px, var(--gray-400) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px, 240px 240px;
}

.bg-floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Large geometric shapes */
.bg-particle-large-1 {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 8rem;
    height: 8rem;
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    animation: float-large 8s ease-in-out infinite;
    opacity: 0.2;
    box-shadow: var(--shadow-red-sm);
}

.bg-particle-large-2 {
    position: absolute;
    top: 70%;
    right: 20%;
    width: 6rem;
    height: 6rem;
    background: rgba(239, 68, 68, 0.15);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: breathing 6s ease-in-out infinite;
    opacity: 0.25;
    box-shadow: var(--shadow-red-md);
}

.bg-particle-large-3 {
    position: absolute;
    top: 40%;
    right: 10%;
    width: 7rem;
    height: 7rem;
    border: 2px solid rgba(239, 68, 68, 0.35);
    transform: rotate(45deg);
    animation: soft-float 7s ease-in-out infinite;
    opacity: 0.15;
    box-shadow: var(--shadow-red-sm);
}

/* Medium particles */
.bg-particle-medium-1 {
    position: absolute;
    top: 40%;
    left: 60%;
    width: 4rem;
    height: 4rem;
    background: rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    transform: rotate(12deg);
    animation: drift-rotate 10s linear infinite;
    opacity: 0.3;
    box-shadow: var(--shadow-red-sm);
}

.bg-particle-medium-2 {
    position: absolute;
    bottom: 40%;
    left: 25%;
    width: 5rem;
    height: 5rem;
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: 50%;
    animation: pulse-grid 8s ease-in-out infinite;
    opacity: 0.25;
}

.bg-particle-medium-3 {
    position: absolute;
    top: 75%;
    right: 33%;
    width: 3rem;
    height: 3rem;
    background: rgba(239, 68, 68, 0.15);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    animation: float-particle 9s ease-in-out infinite;
    opacity: 0.2;
    box-shadow: var(--shadow-red-sm);
}

/* Small particles */
.bg-particle-small-1 {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    animation: float-particle-slow 6s ease-in-out infinite;
    opacity: 0.4;
}

.bg-particle-small-2 {
    position: absolute;
    bottom: 20%;
    left: 16.67%;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(239, 68, 68, 0.25);
    transform: rotate(45deg);
    animation: drift-rotate-slow 8s linear infinite;
    opacity: 0.3;
}

.bg-particle-small-3 {
    position: absolute;
    top: 60%;
    left: 60%;
    width: 1rem;
    height: 1rem;
    background: rgba(239, 68, 68, 0.25);
    animation: breathing-slow 7s ease-in-out infinite;
    opacity: 0.35;
}

.bg-particle-small-4 {
    position: absolute;
    bottom: 40%;
    right: 40%;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-lg);
    animation: gradient-shift 10s ease-in-out infinite;
    opacity: 0.25;
    box-shadow: var(--shadow-red-sm);
}

/* Micro particles */
.bg-particle-micro-1 {
    position: absolute;
    top: 16.67%;
    left: 66.67%;
    width: 0.75rem;
    height: 0.75rem;
    background: rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    animation: soft-float 5s ease-in-out infinite;
    opacity: 0.5;
}

.bg-particle-micro-2 {
    position: absolute;
    bottom: 16.67%;
    right: 16.67%;
    width: 0.5rem;
    height: 0.5rem;
    background: rgba(239, 68, 68, 0.5);
    animation: float-particle 7s ease-in-out infinite;
    opacity: 0.6;
    box-shadow: var(--shadow-red-sm);
}

.bg-particle-micro-3 {
    position: absolute;
    top: 80%;
    left: 80%;
    width: 1.25rem;
    height: 1.25rem;
    border: 1px solid rgba(239, 68, 68, 0.3);
    transform: rotate(45deg);
    animation: breathing 6s ease-in-out infinite;
    opacity: 0.4;
}

.bg-particle-micro-4 {
    position: absolute;
    bottom: 75%;
    left: 20%;
    width: 1rem;
    height: 1rem;
    background: rgba(239, 68, 68, 0.25);
    animation: drift-rotate 9s linear infinite;
    opacity: 0.35;
    box-shadow: var(--shadow-red-sm);
}

/* Layered gradient overlays */
.bg-gradient-overlay-1 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.05), transparent);
    animation: wave-motion 15s ease-in-out infinite;
}

.bg-gradient-overlay-2 {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(239, 68, 68, 0.05), transparent, rgba(239, 68, 68, 0.05));
    animation: wave-motion-reverse 20s ease-in-out infinite;
}

/* Interactive glow effects */
.bg-interactive-glow {
    position: absolute;
    width: 24rem;
    height: 24rem;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.15), transparent);
    border-radius: 50%;
    filter: blur(48px);
    transition: all var(--transition-very-slow);
    opacity: 0.7;
}

.bg-interactive-glow-secondary {
    position: absolute;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1), transparent);
    border-radius: 50%;
    filter: blur(32px);
    transition: all 1.5s ease;
    opacity: 0.5;
}

/* Texture stripes */
.bg-texture-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(239, 68, 68, 0.3) 2px,
        rgba(239, 68, 68, 0.3) 4px
    );
}

/* Enhanced mesh gradient */
.bg-mesh-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        radial-gradient(ellipse at top left, rgba(239, 68, 68, 0.2), transparent 70%),
        radial-gradient(ellipse at top right, rgba(156, 163, 175, 0.2), transparent 70%),
        radial-gradient(ellipse at bottom left, rgba(209, 213, 219, 0.2), transparent 70%),
        radial-gradient(ellipse at bottom right, rgba(239, 68, 68, 0.15), transparent 70%);
}

/* Animated accent lines */
.bg-accent-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.2), transparent);
}

.bg-accent-line-1 {
    top: 25%;
    left: 0;
    width: 100%;
    height: 1px;
    animation: wave-motion 12s ease-in-out infinite;
}

.bg-accent-line-2 {
    bottom: 33.33%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.15), transparent);
    animation: wave-motion-reverse 14s ease-in-out infinite;
}

.bg-accent-line-3 {
    top: 0;
    left: 33.33%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.2), transparent);
    animation: soft-float 10s ease-in-out infinite;
}

.bg-accent-line-4 {
    top: 0;
    right: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(239, 68, 68, 0.15), transparent);
    animation: breathing 8s ease-in-out infinite;
}

/* ===== STATUS INDICATOR ===== */
.status-indicator {
    position: fixed;
    top: 5rem;
    left: 1rem;
    z-index: var(--z-progress);
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    color: var(--gray-700);
    font-size: 0.75rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(239, 68, 68, 0.2);
    overflow: hidden;
    opacity: 0;
    transform: translateX(-20px);
    transition: all var(--transition-normal);
}

.status-indicator.show {
    opacity: 1;
    transform: translateX(0);
}

.status-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(156, 163, 175, 0.05));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.status-indicator:hover::before {
    opacity: 1;
}

.status-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(239, 68, 68, 0.1);
    animation: red-glow 4s ease-in-out infinite;
}

.status-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--red-500);
    border-radius: 50%;
    animation: red-pulse 2s infinite;
    box-shadow: var(--shadow-red-sm);
}

.status-micro-dot {
    width: 4px;
    height: 4px;
    background: var(--red-300);
    border-radius: 50%;
    animation: soft-float 3s ease-in-out infinite;
}



/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767.98px) {
    .main-content {
        padding-top: 70px;
    }
    
    .section-indicator {
        top: 1rem;
        right: 1rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.625rem;
    }
    
    .status-indicator {
        top: 4rem;
        left: 0.5rem;
        padding: 0.375rem 0.5rem;
        font-size: 0.625rem;
    }
    
    .indicator-dot,
    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .indicator-micro-dot,
    .status-micro-dot {
        width: 3px;
        height: 3px;
    }
    
    .loading-title {
        font-size: 1rem;
    }
    
    .loading-subtitle {
        font-size: 0.75rem;
    }
    
    .loading-spinner-container {
        width: 3rem;
        height: 3rem;
    }
    
    .loading-spinner-outer,
    .loading-spinner-inner {
        width: 3rem;
        height: 3rem;
    }
    
    .loading-spinner-pulse {
        top: 0.375rem;
        left: 0.375rem;
        width: 2.25rem;
        height: 2.25rem;
    }
    
    /* Hide some background particles on mobile for performance */
    .bg-particle-medium-2,
    .bg-particle-medium-3,
    .bg-particle-small-3,
    .bg-particle-small-4,
    .bg-particle-micro-3,
    .bg-particle-micro-4 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .logo-text {
        font-size: 1.125rem;
    }
    
    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .logo-icon span {
        font-size: 0.75rem;
    }
    
    /* Further optimize background for small screens */
    .bg-particle-large-2,
    .bg-particle-large-3,
    .bg-particle-medium-1 {
        display: none;
    }
    
    .bg-gradient-overlay-1,
    .bg-gradient-overlay-2 {
        display: none;
    }
}

/* ===== UTILITY CLASSES ===== */
.container-wide {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 576px) {
    .container-wide {
        padding: 0 1.5rem;
    }
}

@media (min-width: 768px) {
    .container-wide {
        padding: 0 2rem;
    }
}

@media (min-width: 992px) {
    .container-wide {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1200px) {
    .container-wide {
        padding: 0 3rem;
    }
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50), #ffffff, rgba(239, 68, 68, 0.01));
}

.hero-bg-secondary {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(225deg, rgb(239 68 68 / 1%), transparent)
}

/* Hero Geometric Shapes */
.hero-shape {
    position: absolute;
    border-radius: var(--radius-3xl);
    transition: all var(--transition-slow);
    cursor: pointer;
}

.hero-shape-1 {
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
    background: rgba(239, 68, 68, 0.05);
    transform: rotate(12deg);
    animation: float-large 8s ease-in-out infinite;
    box-shadow: var(--shadow-red-lg);
}

.hero-shape-1:hover {
    transform: rotate(45deg) scale(1.1);
    box-shadow: var(--shadow-red-xl);
}

.hero-shape-2 {
    top: 10rem;
    right: 8rem;
    width: 6rem;
    height: 6rem;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 50%;
    animation: float-large-reverse 6s ease-in-out infinite;
    border: 2px solid rgba(239, 68, 68, 0.3);
    box-shadow: var(--shadow-red-md);
}

.hero-shape-2:hover {
    transform: scale(1.25);
    box-shadow: var(--shadow-red-lg);
}

.hero-shape-3 {
    bottom: 8rem;
    left: 10rem;
    width: 5rem;
    height: 5rem;
    background: rgba(239, 68, 68, 0.01);
    transform: rotate(-12deg);
    animation: soft-float 7s ease-in-out infinite;
    border: 1px solid rgba(239, 68, 68, 0.35);
    box-shadow: var(--shadow-red-sm);
}

.hero-shape-3:hover {
    transform: rotate(12deg) scale(1.05);
    box-shadow: var(--shadow-red-md);
}

.hero-shape-4 {
    bottom: 5rem;
    right: 5rem;
    width: 7rem;
    height: 7rem;
    background: rgba(239, 68, 68, 0.01);
    border-radius: 50%;
    animation: breathing 5s ease-in-out infinite;
    border: 2px solid rgba(239, 68, 68, 0.25);
    box-shadow: var(--shadow-red-md);
}

.hero-shape-4:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-red-lg);
}

/* Hero Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    transition: opacity var(--transition-slow);
    background-image: 
        linear-gradient(rgba(107, 114, 128, 0.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239, 68, 68, 0.6) 1px, transparent 1px),
        linear-gradient(45deg, rgba(156, 163, 175, 0.4) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 30px 30px;
}

.hero-grid-pattern:hover {
    opacity: 0.07;
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
}

/* Large particles */
.hero-particle-large-1 {
    top: 25%;
    left: 25%;
    width: 12px;
    height: 12px;
    background: rgba(239, 68, 68, 0.5);
    animation: float-particle 6s ease-in-out infinite;
    opacity: 0.6;
    box-shadow: var(--shadow-red-sm);
}

.hero-particle-large-2 {
    top: 33.33%;
    right: 25%;
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.6);
    animation: float-particle-slow 8s ease-in-out infinite;
    opacity: 0.7;
}

.hero-particle-large-3 {
    bottom: 25%;
    left: 33.33%;
    width: 16px;
    height: 16px;
    background: rgba(239, 68, 68, 0.4);
    animation: drift-rotate 10s linear infinite;
    opacity: 0.5;
    box-shadow: var(--shadow-red-sm);
}

.hero-particle-large-4 {
    bottom: 33.33%;
    right: 33.33%;
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.6);
    animation: drift-rotate-slow 12s linear infinite;
    opacity: 0.6;
}

/* Medium particles */
.hero-particle-medium-1 {
    top: 40%;
    left: 60%;
    width: 12px;
    height: 12px;
    background: rgba(239, 68, 68, 0.45);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: breathing 8s ease-in-out infinite;
    opacity: 0.45;
    box-shadow: var(--shadow-red-sm);
}

.hero-particle-medium-2 {
    bottom: 40%;
    right: 40%;
    width: 8px;
    height: 8px;
    background: rgba(239, 68, 68, 0.55);
    animation: soft-float 6s ease-in-out infinite;
    opacity: 0.55;
}

.hero-particle-medium-3 {
    top: 75%;
    left: 20%;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(239, 68, 68, 0.4);
    transform: rotate(45deg);
    animation: pulse-grid 9s ease-in-out infinite;
    opacity: 0.4;
}

/* Micro particles */
.hero-particle-micro-1 {
    top: 16.67%;
    right: 16.67%;
    width: 4px;
    height: 4px;
    background: rgba(239, 68, 68, 0.7);
    animation: float-particle 5s ease-in-out infinite;
    opacity: 0.8;
    box-shadow: var(--shadow-red-sm);
}

.hero-particle-micro-2 {
    bottom: 16.67%;
    left: 25%;
    width: 6px;
    height: 6px;
    background: rgba(239, 68, 68, 0.6);
    animation: drift-rotate 7s linear infinite;
    opacity: 0.7;
}

.hero-particle-micro-3 {
    top: 83.33%;
    right: 75%;
    width: 8px;
    height: 8px;
    border: 1px solid rgba(239, 68, 68, 0.5);
    animation: breathing-slow 6s ease-in-out infinite;
    opacity: 0.5;
}

/* Hero Texture Overlay */
.hero-texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.01;
    mix-blend-mode: overlay;
    animation: gradient-shift 15s ease-in-out infinite;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ef4444' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-size: 60px 60px;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 0rem 0;
}

.hero-content-inner {
    text-align: center;
    max-width: 80rem;
    position: relative;
}

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

.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    position: relative;
    display: inline-block;
}

.hero-highlight-text {
    background: linear-gradient(135deg, var(--gray-700), var(--gray-800), var(--gray-900));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all var(--transition-slow);
    transform-origin: center;
}

.hero-highlight-underline {
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--red-500), var(--red-600));
    border-radius: var(--radius-xl);
    animation: red-glow 3s ease-in-out infinite;
    box-shadow: var(--shadow-red-lg);
}

.hero-subtitle-text {
    color: var(--gray-800);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-description-highlight {
    color: var(--gray-800);
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.hero-stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.hero-stat-card:hover::before {
    opacity: 1;
}

.hero-stat-icon {
    width: 3rem;
    height: 3rem;
    background: var(--gray-800);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.hero-stat-icon-secondary {
    background: var(--gray-700);
}

.hero-stat-icon-tertiary {
    background: var(--gray-600);
}

.hero-stat-card:hover .hero-stat-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

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

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero-stat-percent,
.hero-stat-suffix {
    font-size: 1.25rem;
}

.hero-stat-label {
    color: var(--gray-600);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

@media (min-width: 640px) {
    .hero-cta {
        flex-direction: row;
    }
}

.hero-btn-primary {
    background: var(--gray-900) !important;
    color: white !important;
    border: none !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 2rem !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.hero-btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-800);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.hero-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    color: white !important;
}

.hero-btn-primary:hover .hero-btn-bg {
    opacity: 1;
}

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

.hero-btn-primary:hover .hero-btn-icon {
    animation: red-pulse 1s infinite;
}

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

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(16px);
    color: var(--gray-700) !important;
    border: 1px solid var(--gray-300) !important;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 1rem 2rem !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    min-width: 200px;
    justify-content: center;
}

.hero-btn-secondary:hover {
    background: var(--gray-50) !important;
    border-color: var(--gray-400) !important;
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl);
    color: var(--gray-900) !important;
}

.hero-btn-secondary:hover .hero-btn-icon {
    transform: rotate(12deg);
}

/* Dynamic Word Animation */
@keyframes word-fade-in {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes word-fade-out {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(0.95);
    }
}

.hero-highlight-text.typing {
    animation: word-fade-in 0.5s ease;
}

.hero-highlight-text.removing {
    animation: word-fade-out 0.5s ease;
}

/* Counter Animation */
@keyframes counter-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stat-number.counting {
    animation: counter-up 0.5s ease;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 3rem 0;
        min-height: 90vh;
    }
    
    .hero-content {
        min-height: 90vh;
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .hero-stat-card {
        padding: 1rem;
    }
    
    .hero-stat-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .hero-stat-icon i {
        font-size: 1.25rem;
    }
    
    .hero-stat-number {
        font-size: 1.75rem;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 1.5rem !important;
        font-size: 1rem;
    }
    
    /* Hide some background elements on mobile */
    .hero-shape-3,
    .hero-shape-4,
    .hero-particle-medium-2,
    .hero-particle-medium-3,
    .hero-particle-micro-2,
    .hero-particle-micro-3 {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-heading {
        margin-bottom: 2rem;
    }
    
    .hero-highlight-underline {
        bottom: -0.25rem;
        height: 3px;
    }
    
    /* Further optimize for small screens */
    .hero-shape-2,
    .hero-particle-large-3,
    .hero-particle-large-4,
    .hero-particle-medium-1 {
        display: none;
    }
}

/* High performance mode for low-end devices */
@media (max-width: 480px) {
    .hero-particles,
    .hero-texture-overlay,
    .hero-grid-pattern {
        display: none;
    }
    
    .hero-background {
        background: linear-gradient(135deg, var(--gray-50), #ffffff);
    }
}

/* Animation helper classes */
.animate-float {
    animation: soft-float 3s ease-in-out infinite;
}

.animate-pulse-red {
    animation: red-pulse 2s infinite;
}

.animate-glow-red {
    animation: red-glow 3s ease-in-out infinite;
}

.animate-breathing {
    animation: breathing 4s ease-in-out infinite;
}

.animate-drift-rotate {
    animation: drift-rotate 8s linear infinite;
}

/* ===== WHY CHOOSE US SECTION ===== */
.why-choose-us-section {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

/* Why Choose Us Background */
.why-choose-us-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.why-choose-us-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50), #ffffff, rgba(229, 231, 235, 0.5));
}

.why-choose-us-float-1 {
    position: absolute;
    top: 2.5rem;
    left: 25%;
    width: 6rem;
    height: 6rem;
    background: rgba(156, 163, 175, 0.15);
    border-radius: 50%;
    filter: blur(32px);
    animation: soft-float 8s ease-in-out infinite;
}

.why-choose-us-float-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 25%;
    width: 5rem;
    height: 5rem;
    background: rgba(209, 213, 219, 0.12);
    border-radius: 50%;
    filter: blur(24px);
    animation: soft-float 6s ease-in-out infinite;
    animation-delay: 2s;
}

.why-choose-us-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        linear-gradient(45deg, var(--gray-700) 1px, transparent 1px),
        linear-gradient(-45deg, var(--gray-700) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Why Choose Us Header */
.why-choose-us-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease;
}

.why-choose-us-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us-title-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.why-choose-us-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.why-choose-us-subtitle {
    display: block;
    color: var(--gray-800);
}

.why-choose-us-underline-container {
    display: flex;
    justify-content: center;
}

.why-choose-us-underline {
    width: 4rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-600), var(--gray-800));
    border-radius: var(--radius-xl);
}

.why-choose-us-description {
    font-size: clamp(0.95rem, 2.5vw, 1.125rem);
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

/* Why Choose Us Content */
.why-choose-us-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .why-choose-us-content {
        /*grid-template-columns: 1fr 2fr;*/
        width: 100%;
    display: grid;
    }
}

/* Stats Section */
.why-choose-us-stats-section {
    opacity: 0;
    transform: translateY(24px);
    transition: all 1s ease 0.2s;
}

.why-choose-us-stats-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us-stats-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .why-choose-us-stats-header {
        text-align:center;
    }
}

.why-choose-us-stats-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.why-choose-us-stats-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.why-choose-us-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* Stat Cards */
.why-choose-us-stat-card {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: scale(1);
}

.why-choose-us-stat-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.why-choose-us-stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.why-choose-us-stat-card:hover .why-choose-us-stat-bg {
    background: #ffffff;
    border-color: var(--gray-300);
    box-shadow: var(--shadow-lg);
}

.why-choose-us-stat-content {
    position: relative;
    z-index: 10;
    padding: 1rem;
    text-align: center;
}

.why-choose-us-stat-icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.why-choose-us-stat-card:hover .why-choose-us-stat-icon {
    background: var(--gray-800);
}

.why-choose-us-stat-icon i {
    color: white;
    font-size: 1rem;
}

.why-choose-us-stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    transition: color var(--transition-normal);
}

.why-choose-us-stat-card:hover .why-choose-us-stat-number {
    color: var(--gray-800);
}

.why-choose-us-stat-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
    transition: color var(--transition-normal);
}

.why-choose-us-stat-card:hover .why-choose-us-stat-label {
    color: var(--gray-700);
}

.why-choose-us-stat-description {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all var(--transition-normal);
    margin-top: 0;
}

.why-choose-us-stat-card.active .why-choose-us-stat-description,
.why-choose-us-stat-card:hover .why-choose-us-stat-description {
    max-height: 4rem;
    opacity: 1;
    margin-top: 0.5rem;
}

.why-choose-us-stat-description p {
    font-size: 0.75rem !important;
    color: var(--gray-500);
    line-height: 1.4;
    border-top: 1px solid var(--gray-200);
    padding-top: 0.5rem;
    margin: 0;
}

/* Features Section */
.why-choose-us-features-section {
    opacity: 0;
    transform: translateY(24px);
    transition: all 1s ease 0.4s;
}

.why-choose-us-features-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us-features-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .why-choose-us-features-header {
        text-align: center;
    }
}

.why-choose-us-features-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.why-choose-us-features-subtitle {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.why-choose-us-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .why-choose-us-features-grid {
        grid-template-columns: repeat(2, 1fr);

    }
}

/* Feature Cards */
.why-choose-us-feature-card {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(0);
}

.why-choose-us-feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-choose-us-feature-card.expanded {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    z-index: 20;
}

/* .why-choose-us-feature-bg {
    background: #ffffff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    height: 100%;
    transition: all var(--transition-normal);
} */

.why-choose-us-feature-card:hover .why-choose-us-feature-bg {
    border-color: var(--gray-300);
    background: rgba(249, 250, 251, 0.5);
}

/* Feature Header */
.why-choose-us-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.why-choose-us-feature-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.why-choose-us-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-icon {
    background: var(--gray-200);
    border-color: var(--gray-300);
}

.why-choose-us-feature-icon i {
    color: var(--gray-700);
    font-size: 1.25rem;
    transition: color var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-icon i {
    color: var(--gray-800);
}

.why-choose-us-feature-text {
    flex: 1;
}

.why-choose-us-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    transition: color var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-title {
    color: var(--gray-800);
}

.why-choose-us-feature-line {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-choose-us-feature-line-main {
    width: 1.5rem;
    height: 2px;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-line-main {
    width: 2rem;
}

.why-choose-us-feature-line-dot {
    width: 4px;
    height: 2px;
    background: var(--gray-400);
    border-radius: var(--radius-xl);
}

.why-choose-us-feature-expand {
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: #ffffff;
    transition: all var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-expand {
    border-color: var(--gray-300);
    background: var(--gray-50);
}

.why-choose-us-feature-card.expanded .why-choose-us-feature-expand {
    background: var(--gray-900);
    border-color: var(--gray-900);
    transform: rotate(180deg);
}

.why-choose-us-feature-expand i {
    font-size: 0.75rem;
    color: var(--gray-600);
    transition: all var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-expand i {
    color: var(--gray-800);
}

.why-choose-us-feature-card.expanded .why-choose-us-feature-expand i {
    color: white;
}

/* Feature Description */
.why-choose-us-feature-description {
    font-size: 0.8rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-description {
    color: var(--gray-700);
}

/* Feature Details */
.why-choose-us-feature-details {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s ease;
}

.why-choose-us-feature-card.expanded .why-choose-us-feature-details {
    max-height: 16rem;
    opacity: 1;
}

.why-choose-us-feature-details-content {
    border-top: 1px solid var(--gray-100);
    padding-top: 1rem;
}

.why-choose-us-feature-details-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.why-choose-us-feature-details-list {
    display: grid;
    gap: 0.5rem;
}

.why-choose-us-feature-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-fast);
}

.why-choose-us-feature-detail-item:hover {
    background: var(--gray-100);
    border-color: var(--gray-200);
}

.why-choose-us-feature-detail-check {
    width: 1rem;
    height: 1rem;
    background: var(--gray-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.why-choose-us-feature-detail-check i {
    color: white;
    font-size: 0.625rem;
}

.why-choose-us-feature-detail-item span {
    font-size: 0.75rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Feature Accent */
.why-choose-us-feature-accent {
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-200), var(--gray-400), var(--gray-200));
    border-radius: var(--radius-xl);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.why-choose-us-feature-card.expanded .why-choose-us-feature-accent {
    transform: scaleX(1);
}

.why-choose-us-feature-card:hover .why-choose-us-feature-accent {
    transform: scaleX(0.5);
}

/* Why Choose Us CTA */
.why-choose-us-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(24px);
    transition: all 1s ease 0.6s;
}

.why-choose-us-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-900);
    color: white !important;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-choose-us-cta-button:hover {
    background: var(--gray-800);
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px) scale(1.02);
    color: white !important;
}

.why-choose-us-cta-button i {
    transition: transform var(--transition-normal);
}

.why-choose-us-cta-button:hover i {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .why-choose-us-section {
        padding: 3rem 0;
    }
    
    .why-choose-us-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .why-choose-us-description {
        font-size: 1rem;
    }
    
    .why-choose-us-content {
        gap: 1.5rem;
    }
    
    .why-choose-us-stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .why-choose-us-features-grid {
        gap: 1rem;
    }
    
    .why-choose-us-feature-bg {
        padding: 1rem;
    }
    
    .why-choose-us-feature-title {
        font-size: 1rem;
    }
    
    .why-choose-us-feature-description {
        font-size: 0.8rem;
    }
    
    .why-choose-us-cta {
        margin-top: 2rem;
    }
    
    .why-choose-us-cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .why-choose-us-stats-header,
    .why-choose-us-features-header {
        text-align: center;
    }
    
    .why-choose-us-stat-content {
        padding: 0.75rem;
    }
    
    .why-choose-us-stat-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .why-choose-us-stat-icon i {
        font-size: 0.875rem;
    }
    
    .why-choose-us-stat-number {
        font-size: 1.125rem;
    }
    
    .why-choose-us-stat-label {
        font-size: 0.6875rem;
    }
    
    .why-choose-us-feature-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .why-choose-us-feature-icon i {
        font-size: 1rem;
    }
    
    /* Hide some background elements on small screens */
    .why-choose-us-float-2 {
        display: none;
    }
}

/* ===== EXCELLENCE CARDS DESIGN (Reference Screenshot Style) ===== */

/* Update features grid to match reference design */
.why-choose-us-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 100%;
}

/* Excellence Card Styling */
.excellence-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.excellence-card:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.excellence-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0;
}

.excellence-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #f3f4f6;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.excellence-card-icon i {
    font-size: 1.25rem;
    color: #374151;
}

.excellence-card-content-wrapper {
    flex: 1;
}

.excellence-card-title-section {
    margin-bottom: 1rem;
}

.excellence-card-title {
    font-size: 1rem !important;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.excellence-card-underline {
    width: 2rem;
    height: 2px;
    background: #374151;
    border-radius: 1px;
}

.excellence-card-description {
    font-size: 0.875rem !important;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.excellence-card-toggle {
    width: 2rem;
    height: 2rem;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #ccc;
}

.excellence-card-toggle i {
        font-size: 1rem;
    color: #ccc;
    transition: transform 0.3s ease;
    margin-top: 5px;
}

.excellence-card-toggle:hover {
    background: #374151;
    transform: scale(1.05);
}

/* Expanded Card Features */
.excellence-card-features {
    margin-top: .5rem;
    padding-top: .5rem;
    border-top: 1px solid #f3f4f6;
    display: none;
}

.excellence-card.expanded .excellence-card-features {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.excellence-card-features-title {
    font-size: 0.75rem !important;
    font-weight: 600;
    color: #1f2937;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.excellence-card-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.excellence-card-feature-item {
    display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: #374151;
  line-height: 1.3;
}

.excellence-card-feature-item i {
    font-size: 0.875rem;
    color: #10b981;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.excellence-card-feature-item:last-child {
    margin-bottom: 0;
}

/* CTA Button */
.excellence-cta {
    text-align: center;
    margin-top: 3rem;
}

.excellence-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #1f2937;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.excellence-cta-button:hover {
    background: #374151;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

.excellence-cta-button i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.excellence-cta-button:hover i {
    transform: translateX(2px);
}

/* Animation for expand/collapse */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Excellence Cards */
@media (max-width: 768px) {
    .why-choose-us-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .excellence-card {
        padding: 1.25rem;
    }
    
    .excellence-card-header {
        gap: 0.75rem;
    }
    
    .excellence-card-icon {
        width: 2rem;
        height: 2rem;
    }
    
    .excellence-card-icon i {
        font-size: 1rem;
    }
    
    .excellence-card-title {
        font-size: 1rem;
    }
    
    .excellence-card-toggle {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .excellence-card-toggle i {
        font-size: 0.875rem;
    }
    
    .excellence-cta {
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .excellence-card {
        padding: 1rem;
    }
    
    .excellence-card-description {
        font-size: 0.8rem;
    }
    
    .excellence-card-feature-item {
        font-size: 0.8rem;
    }
    
    .excellence-cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* ===== SERVICES SECTION ===== */
.services-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

/* Services Background */
.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.services-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff, rgba(248, 250, 252, 0.8));
}

.services-float-1 {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 8rem;
    height: 8rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 50%;
    filter: blur(40px);
    animation: soft-float 12s ease-in-out infinite;
}

.services-float-2 {
    position: absolute;
    top: 60%;
    right: 15%;
    width: 6rem;
    height: 6rem;
    background: rgba(239, 68, 68, 0.06);
    border-radius: 50%;
    filter: blur(32px);
    animation: soft-float 8s ease-in-out infinite;
    animation-delay: 3s;
}

.services-float-3 {
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 10rem;
    height: 10rem;
    background: rgba(107, 114, 128, 0.05);
    border-radius: 50%;
    filter: blur(48px);
    animation: soft-float 15s ease-in-out infinite;
    animation-delay: 6s;
}

.services-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.015;
    background-image: 
        linear-gradient(45deg, var(--gray-600) 1px, transparent 1px),
        linear-gradient(-45deg, var(--gray-600) 1px, transparent 1px);
    background-size: 80px 80px;
}

.services-accent-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.services-accent-line-1 {
    position: absolute;
    top: 0;
    left: 25%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.1), transparent);
}

.services-accent-line-2 {
    position: absolute;
    top: 0;
    right: 30%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(239, 68, 68, 0.08), transparent);
}

.services-accent-line-3 {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(107, 114, 128, 0.06), transparent);
}

/* Services Header */
.services-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease;
}

.services-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-title-container {
    position: relative;
    margin-bottom: 2rem;
}

.services-title {
    font-size: clamp(1.875rem, 5vw, 2.75rem);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.services-subtitle {
    display: block;
    color: #3b82f6;
    font-weight: 400;
}

.services-underline-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.services-underline {
    width: 5rem;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    border-radius: var(--radius-xl);
}

.services-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: var(--gray-600);
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 10;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Cards */
.services-card {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    box-shadow: rgba(14, 165, 233, 0.15) 0px 20px 40px;
    border-radius: 20px;
}

.services-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.services-card[data-gradient="blue"]:hover {
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.services-card[data-gradient="red"]:hover {
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15);
}

.services-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.services-card:hover .services-card-bg {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.5);
}

.services-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-2xl);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    filter: blur(20px);
}

.services-card[data-gradient="blue"] .services-card-glow {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.services-card[data-gradient="red"] .services-card-glow {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.services-card:hover .services-card-glow {
    opacity: 0.15;
}

/* Service Card Header */
.services-card-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 1.75rem 0;
    margin-bottom: 1.5rem;
}

.services-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
}

.services-card-icon.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.services-card-icon.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

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

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

.services-card-complexity {
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid;
    transition: all var(--transition-normal);
}

.services-card-complexity.blue-theme {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.2);
}

.services-card-complexity.red-theme {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.services-card:hover .services-card-complexity {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

/* Service Card Content */
.services-card-content {
    position: relative;
    z-index: 10;
    padding: 0 1.75rem 1.75rem;
}

.services-card-subtitle {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.services-card-title {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-normal);
}

.services-card:hover .services-card-title {
    color: var(--gray-800);
}

.services-card-description {
    font-size: 0.8rem !important;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color var(--transition-normal);
}

.services-card:hover .services-card-description {
    color: var(--gray-700);
}

/* Service Card Features */
.services-card-features {
    margin-bottom: 1.5rem;
}

.services-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    transition: all var(--transition-normal);
}

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

.services-feature-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 0.375rem;
    flex-shrink: 0;
}

.services-feature-dot.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.services-feature-dot.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.services-feature-item span {
    font-size: 0.8rem;
    color: var(--gray-700);
    font-weight: 500;
    line-height: 1.4;
}

/* Service Card Tech */
.services-card-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.services-tech-tag {
    padding: 0.25rem 0.5rem;
    background: rgba(107, 114, 128, 0.1);
    color: var(--gray-600);
    font-size: 0.75rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(107, 114, 128, 0.15);
    backdrop-filter: blur(8px);
    transition: all var(--transition-normal);
    font-weight: 500;
}

.services-tech-tag:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-1px);
}

/* Service Card Sparkles */
.services-card-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 15;
}

.services-sparkle {
    position: absolute;
    opacity: 0;
    transition: all var(--transition-normal);
}

.services-sparkle-1 {
    top: 1rem;
    right: 1rem;
    font-size: 1rem;
    color: #3b82f6;
}

.services-sparkle-2 {
    bottom: 1rem;
    left: 1rem;
    font-size: 0.75rem;
    color: #ef4444;
}

.services-card:hover .services-sparkle {
    opacity: 1;
    animation: sparkle-twinkle 2s ease-in-out infinite;
}

.services-card:hover .services-sparkle-2 {
    animation-delay: 0.5s;
}

/* Services CTA */
.services-cta {
    position: relative;
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    overflow: hidden;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease;
}

.services-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-900), #1e40af, #dc2626);
}

.services-cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.services-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: float-particle 6s ease-in-out infinite;
}

.services-particle.blue-particle {
    background: #3b82f6;
}

.services-particle.red-particle {
    background: #ef4444;
}

.services-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.services-cta-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff;
}

.services-cta-description {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 40rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.services-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .services-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.services-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.services-cta-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white !important;
    box-shadow: var(--shadow-xl);
}

.services-cta-primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    color: white !important;
}

.services-cta-secondary {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.services-cta-secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px) scale(1.05);
    color: white !important;
}

.services-cta-button i {
    transition: transform var(--transition-normal);
}

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

/* Gradient Classes */
.blue-gradient {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
}

.red-gradient {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.blue-theme {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-color: rgba(59, 130, 246, 0.2);
}

.red-theme {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

/* Animation Keyframes */
@keyframes sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes float-particle {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-10px) translateX(5px); }
    50% { transform: translateY(-20px) translateX(-5px); }
    75% { transform: translateY(-15px) translateX(10px); }
}

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

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .services-section {
        padding: 4rem 0;
    }
    
    .services-header {
        margin-bottom: 3rem;
    }
    
    .services-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .services-card-header {
        padding: 1.5rem 1.5rem 0;
        margin-bottom: 1rem;
    }
    
    .services-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .services-card-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .services-card-icon i {
        font-size: 1rem;
    }
    
    .services-card-title {
        font-size: 1.125rem;
    }
    
    .services-card-description {
        font-size: 0.8rem;
    }
    
    .services-cta {
        padding: 2rem 1.5rem;
    }
    
    .services-cta-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
    }
    
    .services-cta-description {
        font-size: 0.875rem;
    }
    
    .services-cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .services-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .services-card-complexity {
        align-self: flex-end;
    }
    
    .services-tech-tag {
        font-size: 0.6875rem;
        padding: 0.1875rem 0.375rem;
    }
    
    /* Hide some background elements on small screens */
    .services-float-3 {
        display: none;
    }
    
    .services-accent-line-2,
    .services-accent-line-3 {
        display: none;
    }
}

/* ===== ECOMMERCE SECTION ===== */
.ecommerce-section {
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
}

/* E-Commerce Background */
.ecommerce-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.ecommerce-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--gray-50), #ffffff, rgba(239, 68, 68, 0.03));
}

.ecommerce-float-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(239, 68, 68, 0.08);
    border-radius: 50%;
    filter: blur(60px);
    animation: soft-float 20s ease-in-out infinite;
}

.ecommerce-float-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20rem;
    height: 20rem;
    background: rgba(239, 68, 68, 0.06);
    border-radius: 50%;
    filter: blur(48px);
    animation: breathing 16s ease-in-out infinite;
}

.ecommerce-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.02;
    background-image: 
        radial-gradient(circle at 25% 25%, #ef4444 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--gray-600) 1px, transparent 1px);
    background-size: 80px 80px, 60px 60px;
}

/* E-Commerce Header */
.ecommerce-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    opacity: 1;
    transform: translateY(32px);
    transition: all 1s ease;
}

.ecommerce-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ecommerce-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-full);
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.ecommerce-badge:hover {
    background: rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.3);
}

.ecommerce-badge i {
    font-size: 1rem;
}

.ecommerce-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.ecommerce-title-accent {
    position: relative;
    background: linear-gradient(135deg, #ef4444, #dc2626, #b91c1c);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.ecommerce-title-accent::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f87171, #ef4444, #dc2626);
    border-radius: var(--radius-full);
}

.ecommerce-description {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: var(--gray-600);
    max-width: 64rem;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 300;
}

/* E-Commerce Features Grid */
.ecommerce-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .ecommerce-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* E-Commerce Feature Cards */
.ecommerce-feature-card {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.ecommerce-feature-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.ecommerce-feature-card.expanded {
    transform: translateY(-4px) scale(1.02);
    z-index: 20;
}

.ecommerce-feature-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-bg,
.ecommerce-feature-card.expanded .ecommerce-feature-bg {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: var(--shadow-xl);
}

.ecommerce-feature-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-image: radial-gradient(circle at 50% 50%, #ef4444 1px, transparent 1px);
    background-size: 20px 20px;
    transition: opacity var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-pattern,
.ecommerce-feature-card.expanded .ecommerce-feature-pattern {
    opacity: 0.02;
}

/* Feature Card Header */
.ecommerce-feature-header {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 0;
    margin-bottom: 1rem;
}

.ecommerce-feature-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.ecommerce-feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
    transition: all var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-icon {
    transform: scale(1.1) rotate(3deg);
}

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

.ecommerce-feature-title-container {
    flex: 1;
}

.ecommerce-feature-title {
    font-size: 1rem !important;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    transition: color var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-title {
    color: #dc2626;
}

.ecommerce-feature-underline {
    width: 2rem;
    height: 2px;
    background: #ef4444;
    border-radius: var(--radius-full);
    transition: width var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-underline {
    width: 3rem;
}

.ecommerce-feature-toggle {
    width: 1.5rem;
    height: 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-toggle {
    border-color: #f87171;
}

.ecommerce-feature-card.expanded .ecommerce-feature-toggle {
    border-color: #ef4444;
    background: #ef4444;
    transform: rotate(45deg);
}

.ecommerce-feature-toggle-dot {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-toggle-dot {
    background: #f87171;
}

.ecommerce-feature-card.expanded .ecommerce-feature-toggle-dot {
    background: white;
}

/* Feature Card Content */
.ecommerce-feature-description {
    position: relative;
    z-index: 10;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.8rem !important;
    color: var(--gray-600);
    line-height: 1.6;
    transition: color var(--transition-normal);
}

.ecommerce-feature-card:hover .ecommerce-feature-description {
    color: var(--gray-700);
}

/* Feature Benefits */
.ecommerce-feature-benefits {
    position: relative;
    z-index: 10;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease;
    padding: 0 1.5rem 1.5rem;
}

.ecommerce-feature-card.expanded .ecommerce-feature-benefits {
    max-height: 24rem;
    opacity: 1;
}

.ecommerce-benefits-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.ecommerce-benefits-header i {
    color: #ef4444;
    font-size: 1rem;
}

.ecommerce-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ecommerce-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    opacity: 0;
    transform: translateY(10px);
    animation: slideInUp 0.5s ease forwards;
}

.ecommerce-benefit-item:nth-child(1) { animation-delay: 0.1s; }
.ecommerce-benefit-item:nth-child(2) { animation-delay: 0.2s; }
.ecommerce-benefit-item:nth-child(3) { animation-delay: 0.3s; }
.ecommerce-benefit-item:nth-child(4) { animation-delay: 0.4s; }

.ecommerce-benefit-item:hover {
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

.ecommerce-benefit-item i {
    color: #ef4444;
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.ecommerce-benefit-item span {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.4;
}

/* Feature Accent */
.ecommerce-feature-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f87171, #ef4444, #dc2626);
    border-radius: var(--radius-xl);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.ecommerce-feature-card.expanded .ecommerce-feature-accent {
    transform: scaleX(1);
}

.ecommerce-feature-card:hover .ecommerce-feature-accent {
    transform: scaleX(0.75);
}

/* E-Commerce Technologies */
.ecommerce-technologies {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease 0.4s;
}

.ecommerce-technologies.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.ecommerce-tech-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.ecommerce-tech-description {
    font-size: clamp(1rem, 3vw, 1.125rem);
    color: var(--gray-600);
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.ecommerce-tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .ecommerce-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .ecommerce-tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Technology Cards */
.ecommerce-tech-card {
    position: relative;
    cursor: pointer;
    transition: all var(--transition-normal);
    transform: translateY(0);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.ecommerce-tech-card:hover {
    transform: translateY(-4px) scale(1.05);
}

.ecommerce-tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.ecommerce-tech-card:hover .ecommerce-tech-bg {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(239, 68, 68, 0.2);
    box-shadow: var(--shadow-lg);
}

.ecommerce-tech-card.featured .ecommerce-tech-bg {
    border-color: rgba(239, 68, 68, 0.2);
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(255, 255, 255, 0.95));
}

.ecommerce-tech-pulse {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: red-pulse 2s infinite;
    box-shadow: 0 0 4px rgba(239, 68, 68, 0.5);
}

.ecommerce-tech-card:not(.featured) .ecommerce-tech-pulse {
    display: none;
}

.ecommerce-tech-icon {
    position: relative;
    z-index: 10;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.25rem auto 0.75rem;
    transition: all var(--transition-normal);
}

.ecommerce-tech-card.featured .ecommerce-tech-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

.ecommerce-tech-card:not(.featured) .ecommerce-tech-icon {
    background: var(--gray-100);
}

.ecommerce-tech-card:hover .ecommerce-tech-icon {
    transform: scale(1.1) rotate(6deg);
}

.ecommerce-tech-card:not(.featured):hover .ecommerce-tech-icon {
    background: rgba(239, 68, 68, 0.1);
}

.ecommerce-tech-icon i {
    font-size: 1.75rem;
    transition: color var(--transition-normal);
}

.ecommerce-tech-card.featured .ecommerce-tech-icon i {
    color: white;
}

.ecommerce-tech-card:not(.featured) .ecommerce-tech-icon i {
    color: var(--gray-600);
}

.ecommerce-tech-card:not(.featured):hover .ecommerce-tech-icon i {
    color: #ef4444;
}

.ecommerce-tech-name {
    position: relative;
    z-index: 10;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    text-align: center;
    transition: color var(--transition-normal);
}

.ecommerce-tech-card:hover .ecommerce-tech-name {
    color: #dc2626;
}

.ecommerce-tech-category {
    position: relative;
    z-index: 10;
    font-size: 0.75rem !important;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    text-align: center;
    transition: color var(--transition-normal);
}

.ecommerce-tech-card:hover .ecommerce-tech-category {
    color: var(--gray-600);
}

.ecommerce-tech-desc {
    position: relative;
    z-index: 10;
    font-size: 0.75rem !important;
    color: var(--gray-600);
    line-height: 1.4;
    text-align: center;
    padding: 0 0.75rem 1.25rem;
    transition: color var(--transition-normal);
}

.ecommerce-tech-card:hover .ecommerce-tech-desc {
    color: var(--gray-700);
}

/* E-Commerce CTA */
.ecommerce-cta {
    position: relative;
    border-radius: var(--radius-3xl);
    padding: 2rem;
    overflow: hidden;
    max-width: 64rem;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(32px);
    transition: all 1s ease 0.6s;
}

.ecommerce-cta.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.ecommerce-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    transition: all var(--transition-normal);
}

.ecommerce-cta:hover .ecommerce-cta-bg {
    background: rgba(255, 255, 255, 0.98);
}

.ecommerce-cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    background-image: radial-gradient(circle at 50% 50%, #ef4444 1px, transparent 1px);
    background-size: 30px 30px;
    transition: opacity var(--transition-normal);
}

.ecommerce-cta:hover .ecommerce-cta-pattern {
    opacity: 0.02;
}

.ecommerce-cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.ecommerce-cta-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 24px rgba(239, 68, 68, 0.3);
    transition: all var(--transition-normal);
}

.ecommerce-cta:hover .ecommerce-cta-icon {
    transform: scale(1.1) rotate(6deg);
}

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

.ecommerce-cta-title {
    font-size: clamp(1.3rem, 3.5vw, 1.6rem) !important;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.ecommerce-cta-description {
    font-size: 0.85rem !important;
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 32rem;
    margin: 0 auto 2rem;
}

.ecommerce-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .ecommerce-cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.ecommerce-cta-primary,
.ecommerce-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.ecommerce-cta-primary {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white !important;
    box-shadow: var(--shadow-xl);
}

.ecommerce-cta-primary:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.3);
    color: white !important;
}

.ecommerce-cta-secondary {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    color: var(--gray-700) !important;
    border: 2px solid var(--gray-300);
}

.ecommerce-cta-secondary:hover {
    background: var(--gray-50);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-2px) scale(1.05);
    color: var(--gray-700) !important;
}

.ecommerce-cta-primary i:last-child,
.ecommerce-cta-secondary i:last-child {
    transition: transform var(--transition-normal);
}

.ecommerce-cta-primary:hover i:last-child,
.ecommerce-cta-secondary:hover i:last-child {
    transform: translateX(4px);
}

/* Animation Keyframes */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
    .ecommerce-section {
        padding: 4rem 0;
    }
    
    .ecommerce-header {
        margin-bottom: 3rem;
    }
    
    .ecommerce-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .ecommerce-description {
        font-size: 1rem;
    }
    
    .ecommerce-features-grid {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }
    
    .ecommerce-feature-header {
        padding: 1.25rem 1.25rem 0;
    }
    
    .ecommerce-feature-description {
        padding: 0 1.25rem;
    }
    
    .ecommerce-feature-benefits {
        padding: 0 1.25rem 1.25rem;
    }
    
    .ecommerce-feature-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .ecommerce-feature-icon i {
        font-size: 1rem;
    }
    
    .ecommerce-feature-title {
        font-size: 1rem;
    }
    
    .ecommerce-tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .ecommerce-tech-icon {
        width: 3rem;
        height: 3rem;
    }
    
    .ecommerce-tech-icon i {
        font-size: 1.5rem;
    }
    
    .ecommerce-cta {
        padding: 1.5rem;
    }
    
    .ecommerce-cta-icon {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .ecommerce-cta-icon i {
        font-size: 1.75rem;
    }
    
    .ecommerce-cta-primary,
    .ecommerce-cta-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .ecommerce-feature-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .ecommerce-tech-grid {
        grid-template-columns: 1fr;
    }
    
    /* Hide some background elements on small screens */
    .ecommerce-float-2 {
        display: none;
    }
}

/* Text utilities */
.text-gradient-red {
    background: linear-gradient(135deg, var(--red-600), var(--red-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Custom button variants */
.btn-gradient-red {
    background: linear-gradient(135deg, var(--red-600), var(--red-500));
    border: none;
    color: white;
    transition: all var(--transition-normal);
}

.btn-gradient-red:hover {
    background: linear-gradient(135deg, var(--red-700), var(--red-600));
    transform: translateY(-1px);
    box-shadow: var(--shadow-red-lg);
}

/* Loading state utilities */
.loading {
    opacity: 0.6;
    pointer-events: none;
    cursor: wait;
}

.loaded {
    opacity: 1;
    pointer-events: auto;
    cursor: default;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--red-500);
    outline-offset: 2px;
    transition: outline-color var(--transition-fast);
}

/* ===== INDUSTRIES SECTION ===== */

.industries-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Industry Cards */
.industry-card {
    perspective: 1000px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.industry-card-bg {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.industry-card:hover .industry-card-bg {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Elements */
.industry-float-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
    transition: transform 0.5s ease;
}

.industry-float-1 {
    width: 48px;
    height: 48px;
    top: -24px;
    right: -24px;
    filter: blur(8px);
}

.industry-float-2 {
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    filter: blur(6px);
}

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

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

/* Icon Container */
.industry-icon-container {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

/* Content */
.industry-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 10;
}

.industry-title {
    font-size: 1rem !important;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
    line-height: 1.3;
}

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

.industry-description {
    font-size: 0.7rem !important;
    color: #374151;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1.4;
    margin-bottom: 0;
}

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

.industry-details-label {
    font-size: 0.8rem !important;
    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;
}

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

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

.industry-bullet {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    transition: transform 0.2s ease;
}

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

/* Shine Effect */
.industry-shine {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 1s ease-out;
}

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

/* Bottom Accent */
.industry-bottom-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    border-radius: 0 0 16px 16px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* Industry-specific gradients */
.b2b-gradient {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.b2c-gradient {
    background: linear-gradient(135deg, #e0f2fe, #b3e5fc);
}

.d2c-gradient {
    background: linear-gradient(135deg, #bae6fd, #7dd3fc);
}

.marketplace-gradient {
    background: linear-gradient(135deg, #cffafe, #a7f3d0);
}

.healthcare-gradient {
    background: linear-gradient(135deg, #e9d5ff, #d8b4fe);
}

.education-gradient {
    background: linear-gradient(135deg, #fce7f3, #f9a8d4);
}

.food-gradient {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.media-gradient {
    background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}

/* Animation keyframes for Industries */
@keyframes industryFloatUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes industryBounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(50px);
    }
    50% {
        opacity: 1;
        transform: scale(1.05) translateY(-10px);
    }
    70% {
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive design for Industries */
@media (max-width: 768px) {
    .industry-card-bg {
        padding: 1.25rem;
    }
    
    .industry-title {
        font-size: 0.9rem;
    }
    
    .industry-description {
        font-size: 0.7rem;
    }
    
    .industry-solution-item {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .industries-section {
        padding: 3rem 0;
    }
    
    .industry-card-bg {
        padding: 1rem;
    }
}

/* ===== EXPERTISE SECTION ===== */

.expertise-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 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(239, 68, 68, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styling */
.expertise-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1s ease forwards;
}

.expertise-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    color: #374151;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Content Area */
.expertise-content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.3s;
}

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

.expertise-divider {
    width: 48px;
    height: 2px;
    background: #111827;
    border-radius: 2px;
}

.expertise-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.expertise-sidebar-card {
    perspective: 1000px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.expertise-sidebar-card-bg {
    position: relative;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.expertise-sidebar-card:hover .expertise-sidebar-card-bg {
    transform: scale(1.02);
    background: #f9fafb;
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.expertise-sidebar-card.active .expertise-sidebar-card-bg {
    background: #111827;
    color: white;
    border-color: #111827;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.expertise-sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    transition: all 0.3s ease;
}

.expertise-sidebar-card:hover .expertise-sidebar-icon {
    background: #e5e7eb;
}

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

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

.expertise-sidebar-card.active .expertise-sidebar-icon i {
    color: white;
}

.expertise-sidebar-title {
    font-size: 0.8rem;
    font-weight: 500;
    color: #374151;
    transition: color 0.3s ease;
}

.expertise-sidebar-card.active .expertise-sidebar-title {
    color: white;
}

.expertise-sidebar-indicator {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-sidebar-card.active .expertise-sidebar-indicator {
    opacity: 1;
}

.expertise-sidebar-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.expertise-sidebar-overlay {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(90deg, transparent, rgba(17, 24, 39, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-sidebar-card:hover .expertise-sidebar-overlay {
    opacity: 1;
}

.expertise-sidebar-card.active .expertise-sidebar-overlay {
    opacity: 0;
}

/* Content Area */
.expertise-content-area {
    position: relative;
    height: 100%;
}

.expertise-content-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(16px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.expertise-content-card.active {
    opacity: 1 !important;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}



.expertise-content-bg {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(229, 231, 235, 0.5);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.expertise-content-badge {
    background: #f9fafb;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.expertise-content-badge-text {
    color: #6b7280;
}

.expertise-content-title {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.expertise-content-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 0;
}

/* 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: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(8px);
    animation: slideInLeft 0.5s ease forwards;
}

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

.expertise-feature-icon {
    color: #6b7280;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.expertise-feature-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

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

.expertise-stat-badge {
    padding: 0.5rem 1rem;
    background: #111827;
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
}

/* Decorative Elements */
.expertise-deco-1 {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 12px;
    height: 12px;
    background: #e5e7eb;
    border-radius: 50%;
}

.expertise-deco-2 {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
}

.expertise-pattern-overlay {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    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;
}

/* Animation Keyframes for Expertise */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(16px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive Design for Expertise */
@media (max-width: 992px) {
    .expertise-sidebar-sticky {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }
    
    .expertise-sidebar-cards {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        gap: 1rem;
    }
    
    .expertise-sidebar-card {
        flex-shrink: 0;
        min-width: 200px;
    }
    
    .expertise-content-card {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }
    
    .expertise-content-card.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .expertise-content-title {
        font-size: 1.75rem;
    }
    
    .expertise-content-description {
        font-size: 1rem;
    }
    
    .expertise-content-bg {
        padding: 1.5rem;
    }
    
    .expertise-sidebar-card-bg {
        padding: 0.75rem;
    }
}

@media (max-width: 576px) {
    .expertise-section {
        padding: 3rem 0;
    }
    
    .expertise-content-bg {
        padding: 1.25rem;
    }
    
    .expertise-sidebar-cards {
        flex-direction: column;
    }
    
    .expertise-sidebar-card {
        min-width: auto;
    }
}

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

.process-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 146, 60, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(239, 68, 68, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styling */
.process-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1s ease forwards;
}

.process-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
}

.process-badge-text {
    color: rgba(255, 255, 255, 0.9);
}

.process-badge:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

/* Timeline */
.process-timeline-line {
    position: absolute;
    top: 3rem;
    left: 0;
    right: 0;
    height: 1px;
    background: #fb923c;
    z-index: 0;
}

.process-steps-container {
    position: relative;
    z-index: 10;
}

/* Process Steps */
.process-step {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
}

.process-step-circle {
    width: 24px;
    height: 24px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 2px solid #fb923c;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.process-step:hover .process-step-circle {
    background: rgba(251, 146, 60, 0.1);
    transform: scale(1.1);
}

.process-step-circle.active {
    background: #fb923c;
    border-color: #fb923c;
    color: white;
    box-shadow: 0 0 20px rgba(251, 146, 60, 0.3);
}

.process-step-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: #fb923c;
}

.process-step-circle.active .process-step-number {
    color: white;
}

.process-step-title {
    font-size: 0.875rem !important;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    margin-bottom: 0;
}

.process-step:hover .process-step-title,
.process-step.active .process-step-title {
    color: white;
}

/* Process Details Container */
.process-details-container {
    position: relative;
    min-height: 530px;
}

.process-details {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(32px);
    transition: all 0.5s ease;
    pointer-events: none;
}

.process-details.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.process-details-bg {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.process-details-icon {
    width: 32px;
    height: 32px;
    background: #fb923c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-details-number {
    font-size: 0.875rem;
    font-weight: 700;
}

.process-details-title {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: #fb923c;
    margin-bottom: 0;
}

.process-details-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0;
    max-width: 48rem;
}

/* Process Detail Items */
.process-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.6s ease forwards;
}

.process-detail-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.process-detail-item:nth-child(1) { animation-delay: 0.1s; }
.process-detail-item:nth-child(2) { animation-delay: 0.2s; }
.process-detail-item:nth-child(3) { animation-delay: 0.3s; }
.process-detail-item:nth-child(4) { animation-delay: 0.4s; }

.process-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.process-detail-item:hover .process-detail-icon {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.1);
}

.process-detail-icon i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}

.process-detail-content {
    flex: 1;
}

.process-detail-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.process-detail-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Navigation Controls */
.process-navigation {
    margin-top: 2rem;
}

.process-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-nav-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
}

.process-nav-btn:disabled {
    border-color: rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
    cursor: not-allowed;
}

.process-nav-btn i {
    font-size: 1rem;
}

/* Step Indicators */
.process-indicators {
    gap: 0.25rem;
}

.process-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.process-indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.process-indicator.active {
    background: #fb923c;
    width: 24px;
    border-radius: 12px;
}

/* Animation Keyframes for Process */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design for Process */
@media (max-width: 992px) {
    .process-timeline-line {
        display: none;
    }
    
    .process-steps-container {
        justify-content: center;
    }
    
    .process-step {
        margin-bottom: 1rem;
    }
    
    .process-details-container {
        min-height: auto;
    }
    
    .process-details {
        position: relative;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }
    
    .process-details.active {
        display: block;
    }
}

@media (max-width: 768px) {
    .process-details-bg {
        padding: 1.5rem;
    }
    
    .process-details-title {
        font-size: 1.25rem;
    }
    
    .process-detail-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .process-detail-icon {
        align-self: center;
    }
    
    .process-nav-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .process-section {
        padding: 3rem 0;
    }
    
    .process-details-bg {
        padding: 1.25rem;
    }
    
    .process-step-title {
        font-size: 0.75rem;
    }
    
    .process-navigation {
        flex-direction: column;
        align-items: center;
    }
}

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

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

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(239, 68, 68, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Header Styling */
.testimonials-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1s ease forwards;
}

/* Testimonial Cards */
.testimonial-card {
    perspective: 1000px;
    transition: all 0.5s ease;
    cursor: pointer;
}

.testimonial-card-bg {
    position: relative;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover .testimonial-card-bg {
    border-color: #d1d5db;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* Background Pattern */
.testimonial-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    opacity: 0.05;
    overflow: hidden;
    background: linear-gradient(135deg, #111827, #6b7280);
    border-radius: 50%;
    transform: translate(32px, -32px);
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-pattern {
    transform: translate(32px, -32px) scale(1.1);
}

/* Industry Badge */
.testimonial-industry-badge {
    background: #f3f4f6;
    border-radius: 50px;
    position: relative;
    z-index: 10;
}

.testimonial-industry-dot {
    width: 8px;
    height: 8px;
    background: #6b7280;
    border-radius: 50%;
}

.testimonial-industry-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Icon */
.testimonial-icon {
    width: 48px;
    height: 48px;
    background: #e84004;
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.testimonial-card:hover .testimonial-icon {
    background: #faad39;
    transform: scale(1.05);
}

.testimonial-icon i {
    font-size: 1.5rem;
}

/* Content */
.testimonial-title {
    font-size: 1.125rem !important;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    position: relative;
    z-index: 10;
}

.testimonial-card:hover .testimonial-title {
    color: #374151;
}

.testimonial-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
    position: relative;
    z-index: 10;
    font-size: 0.9rem !important;
}

/* Metrics */
.testimonial-metrics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.testimonial-metric {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.testimonial-metric:hover {
    transform: translateX(4px);
}

.testimonial-metric-label {
    font-size: 0.875rem;
    color: #1a1a1a;
}

.testimonial-metric-value {
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: .875rem;
}

.testimonial-check {
    color: #10b981;
    font-size: 0.75rem;
}

/* Hover Effect Line */
.testimonial-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e5e7eb, #9ca3af, #6b7280);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-hover-line {
    transform: scaleX(1);
}

/* Results Summary */
.testimonials-summary {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.testimonials-summary-bg {
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.testimonials-summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

.testimonials-summary-description {
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Statistics */
.testimonials-stats {
    margin-top: 2rem;
}

.testimonials-stat {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.testimonials-stat:hover {
    transform: translateY(-4px);
}

.testimonials-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.testimonials-stat:hover .testimonials-stat-number {
    color: #ef4444;
    transform: scale(1.1);
}

.testimonials-stat-label {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.3;
}

/* Animation Keyframes for Testimonials */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes testimonialBounceIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

/* Responsive Design for Testimonials */
@media (max-width: 992px) {
    .testimonial-card-bg {
        padding: 1.5rem;
    }
    
    .testimonials-summary-bg {
        padding: 2rem 1.5rem;
    }
    
    .testimonials-stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card-bg {
        padding: 1.25rem;
    }
    
    .testimonial-title {
        font-size: 1.125rem;
    }
    
    .testimonials-summary-title {
        font-size: 1.25rem;
    }
    
    .testimonials-summary-bg {
        padding: 1.5rem 1rem;
    }
    
    .testimonials-stat {
        padding: 0.75rem;
    }
    
    .testimonials-stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .testimonial-metrics {
        gap: 0.75rem;
    }
    
    .testimonial-metric {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .testimonials-stats {
        margin-top: 1.5rem;
    }
}

/* Print styles */

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

.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-background-effects {
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(239, 68, 68, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.03) 0%, transparent 40%),
        linear-gradient(45deg, transparent 30%, rgba(239, 68, 68, 0.01) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Header Styling */
.faq-header {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1s ease forwards;
}

.faq-title {
    position: relative;
}

.faq-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 2px;
    animation: slideInLeft 1s ease 0.5s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.faq-subtitle {
    max-width: 600px;
  font-size: 1rem !important;
}

.faq-see-all-btn {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.8rem;
    padding: 0.9rem !important;
}

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

.faq-see-all-btn:hover {
    background: linear-gradient(135deg, #374151 0%, #1f2937 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-see-all-btn:hover::before {
    left: 100%;
}

/* FAQ Accordion */
.faq-accordion {
    position: relative;
    z-index: 10;
}

.faq-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 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:nth-child(7) { animation-delay: 0.7s; }

.faq-card {
    border: 1px solid #e5e7eb !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    border-color: #d1d5db !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.faq-card:hover::before {
    transform: scaleX(1);
}

/* Question Button */
.faq-question-btn {
    transition: all 0.3s ease;
    position: relative;
    padding: 0.8rem !important;
}

.faq-question-btn:hover {
    background: rgba(249, 250, 251, 0.8) !important;
}

.faq-question-btn:focus {
    outline: none;
    box-shadow: none;
}

.faq-question-btn[aria-expanded="true"] {
    background: rgba(249, 250, 251, 1) !important;
}

.faq-question-btn[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
    color: #ef4444 !important;
}

.faq-question {
    transition: color 0.3s ease;
    font-size: 1rem !important;
}

.faq-question-btn:hover .faq-question {
    color: #374151 !important;
}

/* FAQ Icon */
.faq-icon-wrapper {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(243, 244, 246, 0.8);
    transition: all 0.3s ease;
}

.faq-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.faq-question-btn:hover .faq-icon-wrapper {
    background: rgba(239, 68, 68, 0.1);
    transform: scale(1.1);
}

.faq-question-btn:hover .faq-icon {
    color: #ef4444 !important;
}

/* Answer Collapse */
.faq-answer-collapse {
    transition: all 0.3s ease;
}

.faq-answer {
    position: relative;
}

.faq-answer::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, #e5e7eb, #f3f4f6, #e5e7eb);
}

.faq-answer p {
    position: relative;
    z-index: 2;
    line-height: 1.7;
}

/* FAQ Animation Enhancements */
.faq-item.show .faq-card {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.faq-item.show .faq-card::before {
    transform: scaleX(1);
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .faq-title {
        font-size: 2rem !important;
    }
    
    .faq-subtitle {
        font-size: 1rem !important;
    }
    
    .faq-question {
        font-size: 1rem !important;
    }
    
    .faq-answer p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0 !important;
    }
    
    .faq-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .faq-subtitle {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
    
    .faq-question-btn {
        padding: 1.5rem !important;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem !important;
    }
    
    .faq-question {
        font-size: 1rem !important;
        padding-right: 2rem !important;
    }
    
    .faq-see-all-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.75rem !important;
    }
    
    .faq-question-btn {
        padding: 1.25rem !important;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem !important;
    }
    
    .faq-question {
        font-size: 0.95rem !important;
        padding-right: 1.5rem !important;
    }
    
    .faq-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .faq-icon {
        font-size: 1rem;
    }
}

/* Advanced Animations */
@keyframes slideInLeft {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

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

@keyframes faqGlow {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    }
    50% {
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.15);
    }
}

/* Hover State Enhancements */
.faq-card:hover {
    animation: faqPulse 2s ease-in-out infinite;
}

.faq-question-btn[aria-expanded="true"] + .faq-answer-collapse .faq-answer {
    animation: fadeInUp 0.4s ease forwards;
}

/* Focus States for Accessibility */
.faq-question-btn:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
    border-radius: 0.75rem;
}

/* Print Optimization */

/* ===== FOOTER SECTION ===== */

.footer-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #cffafe 100%);
    color: #111827;
    padding: 4rem 0 2rem;
    z-index: 10;
}

/* Background Effects */
.footer-background {
    top: 0;
    left: 0;
    z-index: 1;
}

/* .footer-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
} */

/* .footer-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 100%);
    opacity: 0.1;
} */

/* Floating Elements */
.footer-floating-elements {
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
}

.footer-float-1 {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    width: 5rem;
    height: 5rem;
    background: rgba(251, 146, 60, 0.3);
    border-radius: 50%;
    animation: footerFloat 6s ease-in-out infinite;
    opacity: 0.3;
}

.footer-float-2 {
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 4rem;
    height: 4rem;
    background: rgba(251, 146, 60, 0.4);
    border-radius: 50%;
    animation: footerFloat 8s ease-in-out infinite reverse;
    opacity: 0.4;
    animation-delay: 2s;
}

.footer-float-3 {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 3rem;
    height: 3rem;
    background: rgba(251, 146, 60, 0.2);
    border-radius: 50%;
    animation: footerFloat 10s ease-in-out infinite;
    opacity: 0.2;
    animation-delay: 4s;
}

/* Footer Content */
.footer-content {
    z-index: 10;
}

/* Header Section */
.footer-header {
    z-index: 10;
    opacity: 0;
    transform: translateY(32px);
    animation: fadeInUp 1s ease forwards;
}

.footer-header-decorations {
    top: 0;
    left: 0;
    pointer-events: none;
}

.footer-deco-1 {
    position: absolute;
    top: 2.5rem;
    left: 25%;
    width: 8rem;
    height: 8rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    filter: blur(20px);
    animation: footerFloat 8s ease-in-out infinite;
}

.footer-deco-2 {
    position: absolute;
    bottom: 2.5rem;
    right: 25%;
    width: 6rem;
    height: 6rem;
    background: rgba(239, 68, 68, 0.3);
    border-radius: 50%;
    filter: blur(16px);
    animation: footerFloat 12s ease-in-out infinite reverse;
}

.footer-deco-3 {
    position: absolute;
    top: 50%;
    left: 2.5rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(239, 68, 68, 0.2));
    border-radius: 50%;
    filter: blur(12px);
    animation: footerFloat 6s ease-in-out infinite;
}

/* Brand Container */
.footer-brand-container {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    z-index: 10;
}

.footer-brand-container:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

/* Logo */
.footer-logo-container {
    z-index: 10;
}

.footer-logo-glow {
    inset: 0;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    filter: blur(4px);
    transition: all 0.3s ease;
}

.footer-brand-container:hover .footer-logo-glow {
    filter: blur(8px);
}

.footer-logo {
    height: 3.5rem;
    width: auto;
    position: relative;
    z-index: 10;
    transition: transform 0.3s ease;
}

.footer-brand-container:hover .footer-logo {
    transform: scale(1.1);
}

/* Divider */
.footer-divider {
    z-index: 10;
}

.footer-divider-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, #3b82f6, transparent);
    opacity: 0.6;
}

.footer-divider-line-hover {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, transparent, #ef4444, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-brand-container:hover .footer-divider-line-hover {
    opacity: 1;
}

/* Brand Text */
.footer-brand-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    transition: color 0.3s ease;
}

.footer-brand-container:hover .footer-brand-title {
    color: #1d4ed8;
}

.footer-pulse-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.footer-brand-subtitle {
    color: #6b7280;
    font-weight: 500;
}

.footer-mini-dot {
    width: 0.25rem;
    height: 0.25rem;
    background: #3b82f6;
    border-radius: 50%;
    opacity: 0.6;
}

/* Heading Section */
.footer-heading-section {
    z-index: 10;
}

.footer-heading-bg {
    inset: -1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(239, 68, 68, 0.3) 50%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 2rem;
    filter: blur(20px);
    opacity: 0.6;
    animation: footerBreathing 4s ease-in-out infinite;
}

.footer-main-title {
    background: linear-gradient(135deg, #111827, #374151, #111827);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 10;
}

.footer-subtitle-container {
    max-width: 48rem;
    margin: 0 auto;
}

.footer-subtitle {
    line-height: 1.6;
}

.footer-description {
    line-height: 1.6;
}

/* Accent Line */
.footer-accent-divider {
    width: 8rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: footerPulseDivider 3s ease-in-out infinite;
}

/* Links Sections */
.footer-links-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.footer-section-icon {
    color: #3b82f6;
    font-size: 1rem;
}

.footer-section-title {
    font-weight: 600;
    color: #111827;
    font-size: 1.125rem;
}

.footer-tech-icon {
    width: 1rem;
    height: 1rem;
    border: 1px solid #f97316;
    border-radius: 0.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-tech-dot {
    width: 0.375rem;
    height: 0.375rem;
    background: #f97316;
    border-radius: 50%;
}

/* Footer Links */
.footer-links-list {
    margin: 0;
    padding: 0;
}

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

.footer-link {
    color: #6b7280;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.footer-link::before {
    content: '';
    width: 0.25rem;
    height: 0.25rem;
    background: #9ca3af;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.footer-link:hover {
    color: #111827;
    transform: translateX(4px);
}

.footer-link:hover::before {
    background: #f97316;
}

/* Contact Section */
.footer-contact-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.footer-contact-item {
    margin-bottom: 1rem;
}

.footer-contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    color: #f97316;
}

.footer-contact-item:hover .footer-contact-icon {
    background: rgba(251, 146, 60, 0.2);
    transform: scale(1.1);
}

.footer-contact-label {
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.footer-contact-value {
    color: #374151;
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Social Links */
.footer-social-section {
    border-color: #d1d5db !important;
}

.footer-social-links {
    gap: 0.75rem;
}

.footer-social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #f97316;
    color: white;
    transform: scale(1.1);
}

/* Bottom Bar */
.footer-bottom {
    border-color: #d1d5db !important;
    margin-top: 2rem;
}

.footer-copyright {
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-tagline {
    opacity: 0.8;
}

.footer-legal-links {
    gap: 1.5rem;
}

.footer-legal-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: #111827;
}

/* Animations */
@keyframes footerFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes footerBreathing {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .footer-section {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-main-title {
        font-size: 2rem !important;
    }
    
    .footer-subtitle {
        font-size: 1rem !important;
    }
    
    .footer-description {
        font-size: 0.95rem !important;
    }
    
    .footer-brand-container {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1rem;
    }
    
    .footer-main-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
    
    .footer-subtitle {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    .footer-description {
        font-size: 0.9rem !important;
    }
    
    .footer-brand-container {
        padding: 1rem !important;
    }
    
    .footer-logo {
        height: 2.5rem;
    }
    
    .footer-brand-title {
        font-size: 1.5rem;
    }
    
    .footer-legal-links {
        justify-content: center !important;
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-main-title {
        font-size: 1.75rem !important;
    }
    
    .footer-brand-container .d-flex {
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .footer-divider {
        display: none;
    }
    
    .footer-brand-text {
        text-align: center !important;
    }
    
    .footer-links-section {
        margin-bottom: 2rem;
    }
    
    .footer-social-links {
        justify-content: center;
    }
    
    .footer-legal-links {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
}

/* Print Styles */
@media print {
    .advanced-background-texture,
    .loading-screen,
    .progress-container,
    .section-indicator,
    .status-indicator {
        display: none !important;
    }
    
    .main-content {
        padding-top: 0 !important;
    }
    
    .navbar {
        position: static !important;
    }
}
