/* Root Variables */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e293b;
    --accent-color: #3b82f6;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-hover: 0 15px 35px rgba(31, 38, 135, 0.2);
    max-width: 100vw;
    overflow-x: hidden;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Glass Morphism Effects */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-glass);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand .logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 10px 15px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.glass-dropdown {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: var(--shadow-glass);
    padding: 10px;
    margin-top: 5px;
}

.glass-dropdown .dropdown-item {
    color: var(--text-primary);
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.glass-dropdown .dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    transform: translateX(5px);
}

.logo{
    width: 30px;
}

/* Modern Animated Hamburger Menu */
.modern-hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    z-index: 1000;
}

.modern-hamburger::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-hamburger:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.modern-hamburger:hover::before {
    opacity: 1;
}

.hamburger-inner {
    position: relative;
    width: 24px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

.hamburger-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-hamburger:hover .hamburger-line::before {
    opacity: 1;
}

/* Hamburger Animation States */
.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: linear-gradient(90deg, #ff6b9d, var(--accent-color));
}

.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.modern-hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: linear-gradient(90deg, #ff6b9d, var(--accent-color));
}

/* Hover animations for hamburger lines */
.modern-hamburger:hover .hamburger-line:nth-child(1) {
    transform: translateY(-1px);
    width: 80%;
}

.modern-hamburger:hover .hamburger-line:nth-child(2) {
    width: 60%;
}

.modern-hamburger:hover .hamburger-line:nth-child(3) {
    transform: translateY(1px);
    width: 90%;
}

/* Active state animations */
.modern-hamburger[aria-expanded="true"]:hover .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg) scale(1.1);
}

.modern-hamburger[aria-expanded="true"]:hover .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) scale(1.1);
}

/* Menu open state enhancements */
.modern-hamburger.menu-open {
    background: rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.4);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.modern-hamburger.menu-open::before {
    opacity: 1;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.6), transparent);
}

/* Enhanced line animations for menu open state */
.modern-hamburger.menu-open .hamburger-line:nth-child(1) {
    background: linear-gradient(90deg, #ff6b9d, var(--accent-color));
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

.modern-hamburger.menu-open .hamburger-line:nth-child(3) {
    background: linear-gradient(90deg, #ff6b9d, var(--accent-color));
    box-shadow: 0 0 10px rgba(255, 107, 157, 0.5);
}

/* Pulse animation for the button */
@keyframes hamburgerPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
}

.modern-hamburger:focus {
    outline: none;
    animation: hamburgerPulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modern-hamburger {
        display: flex;
        width: 45px;
        height: 45px;
    }
    
    .hamburger-inner {
        width: 20px;
        height: 16px;
    }
}
/* Modern Hero Content */
.hero-content-modern {
    position: relative;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    perspective: 1200px;
}

/* Modern Title Section */
.modern-title-section {
    margin-bottom: 2.5rem;
    transform: rotateY(-8deg) rotateX(3deg);
    /* animation: titleFloat 8s ease-in-out infinite; */
    position: relative;
    z-index: 10;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 25px;
    padding: 8px 16px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 4px;
}

.modern-hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.title-line-1 {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #ff6b9d 0%, var(--accent-color) 50%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 4s ease-in-out infinite reverse;
}

.title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: underlineExpand 2s ease-out 1s forwards;
}

.modern-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-top: 1rem;
    opacity: 0;
    animation: subtitleAppear 1s ease-out 1.5s forwards;
}

/* Modern Description */
.modern-description {
    margin-bottom: 2.5rem;
    transform: rotateY(-6deg) rotateX(2deg);
    /* animation: descriptionFloat 7s ease-in-out infinite; */
    position: relative;
    z-index: 8;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: textAppear 1s ease-out 2s forwards;
}

.description-highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    opacity: 0;
    animation: highlightAppear 0.5s ease-out forwards;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
}

.highlight-item:nth-child(1) { animation-delay: 2.5s; }
.highlight-item:nth-child(2) { animation-delay: 2.7s; }
.highlight-item:nth-child(3) { animation-delay: 2.9s; }

.highlight-item:hover {
    background: rgba(37, 99, 235, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
}

.highlight-icon {
    font-size: 1.1rem;
    animation: iconBounce 2s ease-in-out infinite;
}

/* Modern Action Buttons */
.modern-action-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    transform: rotateY(-4deg) rotateX(2deg);
    /* animation: buttonsFloat 6s ease-in-out infinite; */
    position: relative;
    z-index: 6;
}

.modern-btn {
    position: relative;
    padding: 15px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.primary-modern-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.btn-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.primary-modern-btn:hover .btn-background {
    opacity: 1;
}

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

.primary-modern-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

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

.btn-border-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), #ff6b9d, var(--primary-color));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    animation: borderRotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

.secondary-modern-btn:hover .btn-border-effect {
    opacity: 1;
}

.secondary-modern-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

/* Modern Stats Dashboard */
.modern-stats-dashboard {
    display: flex;
    gap: 1.5rem;
    transform: rotateY(-2deg) rotateX(1deg);
    animation: statsFloat 9s ease-in-out infinite;
    position: relative;
    z-index: 4;
}

.stat-modern-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.stat-modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--primary-color);
}

.stat-modern-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    animation: statIconFloat 3s ease-in-out infinite;
}

.stat-modern-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-modern-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-modern-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-modern-card:hover .stat-modern-glow {
    opacity: 1;
}

/* Floating Elements */
.modern-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.float-modern-element {
    position: absolute;
    font-size: 2.2rem;
    opacity: 0;
    animation: modernElementFloat 12s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.float-modern-element.element-1 { top: 15%; left: 5%; animation-delay: 0s; }
.float-modern-element.element-2 { top: 25%; right: 10%; animation-delay: 2s; }
.float-modern-element.element-3 { top: 55%; left: 15%; animation-delay: 4s; }
.float-modern-element.element-4 { top: 65%; right: 5%; animation-delay: 6s; }
.float-modern-element.element-5 { top: 40%; left: 8%; animation-delay: 8s; }
.float-modern-element.element-6 { top: 75%; right: 20%; animation-delay: 10s; }

/* Background Depth Elements */
.modern-depth-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.depth-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
    border-radius: 50%;
    animation: depthFloat 15s ease-in-out infinite;
}

.depth-element.depth-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.depth-element.depth-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 3s;
}

.depth-element.depth-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    left: 60%;
    animation-delay: 6s;
}

.depth-element.depth-4 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 20%;
    animation-delay: 9s;
}

/* Animations */
@keyframes titleFloat {
    0%, 100% { transform: rotateY(-8deg) rotateX(3deg) translateY(0px); }
    50% { transform: rotateY(-8deg) rotateX(3deg) translateY(-12px); }
}

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

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

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

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

@keyframes descriptionFloat {
    0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-6deg) rotateX(2deg) translateY(-8px); }
}

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

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

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

@keyframes buttonsFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

@keyframes statsFloat {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0px); }
    50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-6px); }
}

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

@keyframes modernElementFloat {
    0% { 
        opacity: 0; 
        transform: translateY(50px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(30px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-30px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-50px) rotate(360deg) scale(0.5); 
    }
}

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

/* Modern Card Animations */
@keyframes serviceCardFloat {
    0%, 100% { transform: rotateY(-5deg) rotateX(3deg) translateY(0px); }
    50% { transform: rotateY(-5deg) rotateX(3deg) translateY(-8px); }
}

@keyframes featureCardFloat {
    0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-6px); }
}

@keyframes ctaFloat {
    0%, 100% { transform: rotateY(-2deg) rotateX(1deg) translateY(0px); }
    50% { transform: rotateY(-2deg) rotateX(1deg) translateY(-4px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes featureIconFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-8px) scale(1.1) rotate(5deg); }
}

@keyframes ctaIconFloat {
    0%, 100% { transform: translateY(0px) scale(1) rotate(0deg); }
    50% { transform: translateY(-10px) scale(1.15) rotate(-5deg); }
}

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

@keyframes cardGlow {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes featureCardGlow {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.1; transform: translate(-50%, -50%) scale(1.15); }
}

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

@keyframes serviceParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(20px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-20px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) rotate(360deg) scale(0.5); 
    }
}

@keyframes featureParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(40px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(25px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-25px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-40px) rotate(360deg) scale(0.5); 
    }
}

@keyframes ctaParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(50px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(30px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-30px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-50px) rotate(360deg) scale(0.5); 
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.05;
    z-index: -1;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
}

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

.subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 600px;
}

/* Buttons */
.glass-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.glass-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.glass-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.glass-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* Enhanced Hero Section */
.hero-bg-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 25%, #2d1b69 50%, #0f0f23 100%);
    opacity: 0.03;
    z-index: -1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.03; }
    50% { opacity: 0.08; }
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.shape {
    position: absolute;
    border: 1px solid var(--primary-color);
    opacity: 0.1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    border-radius: 50%;
    animation: rotateShape 20s linear infinite;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 70%;
    right: 10%;
    transform: rotate(45deg);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-3 {
    width: 0;
    height: 0;
    top: 30%;
    left: 80%;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid var(--primary-color);
    opacity: 0.05;
    animation: pulseShape 12s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 2%;
    border-radius: 20px;
    animation: morphShape 18s ease-in-out infinite;
}

.shape-5 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 30%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: var(--primary-color);
    opacity: 0.08;
    animation: rotateShape 25s linear infinite reverse;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes pulseShape {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.15; transform: scale(1.2); }
}

@keyframes morphShape {
    0%, 100% { border-radius: 20px; transform: rotate(0deg); }
    33% { border-radius: 50%; transform: rotate(120deg); }
    66% { border-radius: 5px; transform: rotate(240deg); }
}

/* Particle System */
.particle-system {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; animation-delay: 3s; }
.particle:nth-child(5) { left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { left: 70%; animation-delay: 5s; }
.particle:nth-child(7) { left: 80%; animation-delay: 6s; }
.particle:nth-child(8) { left: 90%; animation-delay: 7s; }

@keyframes particleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(100vh) scale(0);
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }
    100% { 
        opacity: 0; 
        transform: translateY(0) scale(0);
    }
}

/* Enhanced Title Effects */
.text-gradient-enhanced {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.glitch-text {
    position: relative;
    animation: glitchEffect 4s infinite;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    animation: glitchBefore 3s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitchAfter 2s infinite;
    color: #00ffff;
    z-index: -1;
}

@keyframes glitchEffect {
    0%, 90%, 100% { transform: translate(0); }
    20% { transform: translate(-1px, 1px); }
    40% { transform: translate(-1px, -1px); }
    60% { transform: translate(1px, 1px); }
    80% { transform: translate(1px, -1px); }
}

@keyframes glitchBefore {
    0%, 95%, 100% { transform: translate(0); }
    10% { transform: translate(-2px, 0); opacity: 1; }
    20% { transform: translate(2px, 0); opacity: 0; }
}

@keyframes glitchAfter {
    0%, 95%, 100% { transform: translate(0); }
    10% { transform: translate(2px, 0); opacity: 1; }
    20% { transform: translate(-2px, 0); opacity: 0; }
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    transform: translate(-50%, -50%);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

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

.typing-animation {
    position: relative;
    overflow: hidden;
}

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

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

/* Futuristic Buttons */
.futuristic-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    overflow: hidden;
    color: white;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.futuristic-btn .btn-content {
    position: relative;
    z-index: 2;
}

.futuristic-btn .btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.futuristic-btn:hover .btn-glow {
    transform: translateX(100%);
}

.futuristic-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 99, 235, 0.5);
}

.holographic-btn {
    position: relative;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 13px 28px;
    border-radius: 50px;
    overflow: hidden;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.holographic-btn .btn-border-animation {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), #ff6b9d, var(--primary-color));
    border-radius: 50px;
    z-index: -1;
    opacity: 0;
    animation: borderRotate 3s linear infinite;
    transition: opacity 0.3s ease;
}

.holographic-btn:hover .btn-border-animation {
    opacity: 1;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Code Workspace Hero Visual */
.hero-code-workspace {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* 3D Code Editor */
.code-editor-container {
    position: relative;
    width: 400px;
    height: 300px;
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 15px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: rotateY(-15deg) rotateX(5deg);
    animation: editorFloat 6s ease-in-out infinite;
    z-index: 10;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: linear-gradient(90deg, #2d3748, #4a5568);
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-tabs {
    display: flex;
    gap: 8px;
}

.tab {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 0.8rem;
    color: #a0aec0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.editor-controls {
    display: flex;
    gap: 6px;
}

.control-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e53e3e;
}

.control-btn:nth-child(2) { background: #d69e2e; }
.control-btn:nth-child(3) { background: #38a169; }

.editor-body {
    display: flex;
    height: calc(100% - 50px);
    font-family: 'Fira Code', 'Monaco', 'Consolas', monospace;
    font-size: 0.85rem;
    line-height: 1.4;
}

.line-numbers {
    padding: 15px 10px;
    background: rgba(0, 0, 0, 0.3);
    color: #718096;
    text-align: right;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    user-select: none;
}

.line-numbers span {
    display: block;
    margin-bottom: 2px;
}

.code-content {
    flex: 1;
    padding: 15px;
    color: #e2e8f0;
    overflow: hidden;
}

.code-line {
    margin-bottom: 2px;
    opacity: 0;
    animation: codeAppear 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }
.code-line:nth-child(9) { animation-delay: 0.9s; }
.code-line:nth-child(10) { animation-delay: 1.0s; }
.code-line:nth-child(11) { animation-delay: 1.1s; }
.code-line:nth-child(12) { animation-delay: 1.2s; }
.code-line:nth-child(13) { animation-delay: 1.3s; }
.code-line:nth-child(14) { animation-delay: 1.4s; }
.code-line:nth-child(15) { animation-delay: 1.5s; }

.keyword { color: #ff6b6b; font-weight: 600; }
.class-name { color: #4ecdc4; font-weight: 600; }
.property { color: #45b7d1; }
.string { color: #feca57; }
.method { color: #ff9ff3; }
.comment { color: #8395a7; font-style: italic; }
.variable { color: #54a0ff; }
.tag { color: #ff9ff3; }

.typing-line {
    position: relative;
}

.typing-line::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
    margin-left: 2px;
}

/* Floating Code Snippets */
.floating-code-snippets {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
}

.code-snippet {
    position: absolute;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    color: #e2e8f0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transform: scale(0.8);
    opacity: 0;
    animation: snippetFloat 8s ease-in-out infinite;
}

.snippet-header {
    font-size: 0.7rem;
    color: #a0aec0;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.snippet-content {
    line-height: 1.3;
}

.snippet-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.snippet-2 {
    top: 60%;
    left: 5%;
    animation-delay: 2s;
}

.snippet-3 {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
}

/* Terminal Output */
.terminal-output {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) rotateY(-10deg) rotateX(5deg);
    width: 350px;
    height: 180px;
    background: linear-gradient(145deg, #0f0f23, #1a1a3e);
    border-radius: 12px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 8;
    animation: terminalFloat 7s ease-in-out infinite;
}

.terminal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    background: linear-gradient(90deg, #2d3748, #4a5568);
    border-radius: 12px 12px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.terminal-title {
    font-size: 0.8rem;
    color: #e2e8f0;
    font-weight: 600;
}

.terminal-controls {
    display: flex;
    gap: 4px;
}

.terminal-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53e3e;
}

.terminal-btn:nth-child(2) { background: #d69e2e; }
.terminal-btn:nth-child(3) { background: #38a169; }

.terminal-body {
    padding: 12px;
    font-family: 'Fira Code', monospace;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #e2e8f0;
    height: calc(100% - 35px);
    overflow: hidden;
}

.terminal-line {
    margin-bottom: 4px;
    opacity: 0;
    animation: terminalAppear 0.3s ease forwards;
}

.terminal-line:nth-child(1) { animation-delay: 0.5s; }
.terminal-line:nth-child(2) { animation-delay: 0.8s; }
.terminal-line:nth-child(3) { animation-delay: 1.1s; }
.terminal-line:nth-child(4) { animation-delay: 1.4s; }
.terminal-line:nth-child(5) { animation-delay: 1.7s; }
.terminal-line:nth-child(6) { animation-delay: 2.0s; }
.terminal-line:nth-child(7) { animation-delay: 2.3s; }

.prompt { color: #38a169; font-weight: 600; }
.command { color: #e2e8f0; }
.output { color: #a0aec0; }

.typing-text::after {
    content: '|';
    color: var(--primary-color);
    animation: blink 1s infinite;
}

/* Code Particles */
.code-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    color: var(--primary-color);
    font-family: 'Fira Code', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    opacity: 0;
    animation: particleFloat 10s linear infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 30%; right: 15%; animation-delay: 1s; }
.particle:nth-child(3) { top: 50%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 70%; right: 10%; animation-delay: 3s; }
.particle:nth-child(5) { top: 40%; left: 5%; animation-delay: 4s; }
.particle:nth-child(6) { top: 60%; right: 25%; animation-delay: 5s; }
.particle:nth-child(7) { top: 80%; left: 15%; animation-delay: 6s; }
.particle:nth-child(8) { top: 25%; right: 5%; animation-delay: 7s; }

/* Animations */
@keyframes editorFloat {
    0%, 100% { transform: rotateY(-15deg) rotateX(5deg) translateY(0px); }
    50% { transform: rotateY(-15deg) rotateX(5deg) translateY(-10px); }
}

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

@keyframes snippetFloat {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0.8) translateY(20px) rotate(0deg); 
    }
    20%, 80% { 
        opacity: 1; 
        transform: scale(1) translateY(0px) rotate(2deg); 
    }
    50% { 
        transform: scale(1.05) translateY(-10px) rotate(-2deg); 
    }
}

@keyframes terminalFloat {
    0%, 100% { transform: translateX(-50%) rotateY(-10deg) rotateX(5deg) translateY(0px); }
    50% { transform: translateX(-50%) rotateY(-10deg) rotateX(5deg) translateY(-5px); }
}

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

@keyframes particleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(100px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(80px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-80px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-100px) rotate(360deg) scale(0.5); 
    }
}

/* Enhanced Visual Elements */
.hero-visual-enhanced {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-orb {
    position: absolute;
    width: 200px;
    height: 200px;
    z-index: 5;
}

.orb-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: orbPulse 2s ease-in-out infinite;
    box-shadow: 0 0 40px var(--primary-color);
}

.orb-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation: ringRotate 10s linear infinite;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation: ringRotate 15s linear infinite reverse;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation: ringRotate 20s linear infinite;
}

@keyframes orbPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.float-element-enhanced {
    position: absolute;
    z-index: 3;
}

.icon-container {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.element-trail {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translate(-50%, -50%);
    opacity: 0.5;
    animation: trailFlow 3s linear infinite;
}

@keyframes trailFlow {
    0% { width: 0; opacity: 0; }
    50% { width: 80px; opacity: 1; }
    100% { width: 0; opacity: 0; }
}

.float-element-enhanced.element-1 {
    top: 15%;
    left: 5%;
    animation: enhancedFloat1 8s ease-in-out infinite;
}

.float-element-enhanced.element-2 {
    top: 5%;
    right: 15%;
    animation: enhancedFloat2 10s ease-in-out infinite;
}

.float-element-enhanced.element-3 {
    bottom: 25%;
    left: 10%;
    animation: enhancedFloat3 12s ease-in-out infinite;
}

.float-element-enhanced.element-4 {
    bottom: 15%;
    right: 5%;
    animation: enhancedFloat4 9s ease-in-out infinite;
}

.float-element-enhanced.element-5 {
    top: 45%;
    left: -5%;
    animation: enhancedFloat5 11s ease-in-out infinite;
}

.float-element-enhanced.element-6 {
    top: 55%;
    right: -5%;
    animation: enhancedFloat6 13s ease-in-out infinite;
}

@keyframes enhancedFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -15px) rotate(90deg); }
    50% { transform: translate(10px, -30px) rotate(180deg); }
    75% { transform: translate(-10px, -15px) rotate(270deg); }
}

@keyframes enhancedFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, 20px) rotate(90deg); }
    50% { transform: translate(-30px, 10px) rotate(180deg); }
    75% { transform: translate(-15px, -10px) rotate(270deg); }
}

@keyframes enhancedFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(25px, 15px) rotate(120deg); }
    66% { transform: translate(-15px, 25px) rotate(240deg); }
}

@keyframes enhancedFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, -25px) rotate(180deg); }
    75% { transform: translate(15px, -10px) rotate(270deg); }
}

@keyframes enhancedFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -20px) rotate(180deg); }
}

@keyframes enhancedFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-40px, 20px) rotate(180deg); }
}

/* Data Visualization */
.data-visualization {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.data-stream {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
    animation: dataFlow 4s linear infinite;
}

.stream-1 {
    top: 30%;
    left: 0;
    width: 300px;
    animation-delay: 0s;
}

.stream-2 {
    top: 50%;
    right: 0;
    width: 250px;
    animation-delay: 1s;
    animation-direction: reverse;
}

.stream-3 {
    bottom: 30%;
    left: 50%;
    width: 200px;
    animation-delay: 2s;
}

@keyframes dataFlow {
    0% { opacity: 0; transform: translateX(-100%); }
    50% { opacity: 0.6; }
    100% { opacity: 0; transform: translateX(100%); }
}

.holographic-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Responsive Design for Enhanced Hero */
@media (max-width: 768px) {
    .text-gradient-enhanced {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
        text-align: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-visual-enhanced {
        height: 400px;
        margin-top: 2rem;
    }
    
    .central-orb {
        width: 150px;
        height: 150px;
    }
    
    .orb-core {
        width: 40px;
        height: 40px;
    }
    
    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 150px; height: 150px; }
    
    .icon-container {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .geometric-shapes .shape {
        opacity: 0.05;
    }
    
    .particle-system {
        display: none;
    }
    
    /* Code Workspace Responsive */
    .hero-code-workspace {
        display: none;
    }
    
    .code-editor-container {
        width: 300px;
        height: 220px;
        transform: rotateY(-10deg) rotateX(3deg);
    }
    
    .editor-body {
        font-size: 0.7rem;
    }
    
    .line-numbers {
        padding: 10px 8px;
    }
    
    .code-content {
        padding: 10px;
    }
    
    .code-snippet {
        font-size: 0.65rem;
        padding: 8px;
    }
    
    .terminal-output {
        width: 280px;
        height: 140px;
        transform: translateX(-50%) rotateY(-8deg) rotateX(3deg);
    }
    
    .terminal-body {
        font-size: 0.65rem;
        padding: 8px;
    }
    
    .particle {
        font-size: 1rem;
    }
    
    /* Modern Content Responsive */
    .hero-content-modern {
        height: auto;
        margin: 2rem 0;
    }
    
    .modern-title-section {
        transform: rotateY(-3deg) rotateX(1deg);
        margin-bottom: 2rem;
    }
    
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .modern-subtitle {
        font-size: 1.2rem;
    }
    
    .modern-description {
        transform: rotateY(-2deg) rotateX(1deg);
        margin-bottom: 2rem;
    }
    
    .description-text {
        font-size: 1rem;
    }
    
    .description-highlights {
        gap: 1rem;
    }
    
    .highlight-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .modern-action-buttons {
        flex-direction: column;
        gap: 1rem;
        transform: rotateY(-1deg) rotateX(1deg);
        margin-bottom: 2rem;
    }
    
    .modern-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .modern-stats-dashboard {
        flex-direction: column;
        gap: 1rem;
        transform: rotateY(-1deg) rotateX(1deg);
    }
    
    .stat-modern-card {
        padding: 1rem;
    }
    
    .stat-modern-number {
        font-size: 1.8rem;
    }
    
    .stat-modern-icon {
        font-size: 2rem;
    }
    
    .float-modern-element {
        font-size: 1.4rem;
    }
    
    /* Modern Cards Responsive */
    .service-card-modern .service-card-inner {
        transform: rotateY(-3deg) rotateX(2deg);
        padding: 2rem;
    }
    
    .service-card-modern:hover .service-card-inner {
        transform: rotateY(-5deg) rotateX(3deg) translateY(-5px);
    }
    
    .icon-3d {
        font-size: 2.5rem;
    }
    
    .service-title-modern {
        font-size: 1.2rem;
    }
    
    .feature-card-modern .feature-card-inner {
        transform: rotateY(-2deg) rotateX(1deg);
        padding: 2rem;
    }
    
    .feature-card-modern:hover .feature-card-inner {
        transform: rotateY(-3deg) rotateX(2deg) translateY(-5px);
    }
    
    .feature-icon-modern .icon-3d {
        font-size: 3rem;
    }
    
    .feature-title-modern {
        font-size: 1.3rem;
    }
    
    .cta-content-modern .cta-card-inner {
        transform: rotateY(-1deg) rotateX(1deg);
        padding: 2rem;
    }
    
    .cta-content-modern:hover .cta-card-inner {
        transform: rotateY(-2deg) rotateX(1deg) translateY(-3px);
    }
    
    .cta-title-modern {
        font-size: 2rem;
    }
    
    .cta-icon-modern .icon-3d {
        font-size: 3.5rem;
    }
    
    .service-card-particles .particle,
    .feature-card-particles .particle,
    .cta-card-particles .particle {
        font-size: 1rem;
    }
}

/* Sections */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Process Steps */
.process-step-modern {
    position: relative;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.process-step-inner {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: rotateY(-4deg) rotateX(2deg);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        0 0 0 1px rgba(255, 255, 255, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.process-step-modern:hover .process-step-inner {
    transform: rotateY(-6deg) rotateX(3deg) translateY(-8px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(37, 99, 235, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.step-icon-modern {
    position: relative;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.step-icon-modern .icon-3d {
    font-size: 2rem;
    animation: iconFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.25));
    position: relative;
    z-index: 2;
}

.step-icon-modern .icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37,99,235,0.22) 0%, rgba(255,255,255,0.0) 70%);
    transform: translate(-50%, -50%);
    animation: iconGlow 3.2s ease-in-out infinite;
}

.step-number-modern {
    font-weight: 700;
    color: var(--text-secondary);
    opacity: 0.9;
}

.step-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.15rem;
    margin: 0.25rem 0 0.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-desc-modern {
    color: var(--text-secondary);
    line-height: 1.7;
}

.process-step-glow {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(1200px 200px at 20% -20%, rgba(37,99,235,0.10), transparent 60%),
                radial-gradient(1000px 180px at 120% 0%, rgba(118,75,162,0.10), transparent 60%);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 768px) {
    .process-step-inner {
        transform: none;
        padding: 1.5rem;
    }
    .process-step-modern:hover .process-step-inner {
        transform: translateY(-4px);
    }
}

/* Modern Service Cards */
.service-card-modern {
    position: relative;
    height: 100%;
    /* perspective: 1000px; */
    transform-style: preserve-3d;
    animation: serviceCardFloat 8s ease-in-out infinite;
}

.service-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-5deg) rotateX(3deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.service-card-modern:hover .service-card-inner {
    transform: rotateY(-8deg) rotateX(5deg) translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.service-icon-modern {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-3d {
    font-size: 3rem;
    animation: iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: iconGlow 3s ease-in-out infinite;
    z-index: 1;
}

.service-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-desc-modern {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-link-modern {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    margin: 4px;
}

.service-link-modern:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    background: rgba(37, 99, 235, 0.2);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

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

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

.service-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: cardGlow 6s ease-in-out infinite;
    z-index: 1;
}

.service-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.service-card-particles .particle {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: serviceParticleFloat 10s linear infinite;
}

.service-card-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.service-card-particles .particle:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

/* Modern Feature Cards */
.feature-card-modern {
    position: relative;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: featureCardFloat 9s ease-in-out infinite;
}

.feature-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-3deg) rotateX(2deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.feature-card-modern:hover .feature-card-inner {
    transform: rotateY(-5deg) rotateX(3deg) translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(245, 87, 108, 0.2);
}

.feature-icon-modern {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-modern .icon-3d {
    font-size: 3.5rem;
    animation: featureIconFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.3));
}

.feature-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-desc-modern {
    color: var(--text-secondary);
    line-height: 1.7;
}

.feature-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: featureCardGlow 7s ease-in-out infinite;
    z-index: 1;
}

.feature-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.feature-card-particles .particle {
    position: absolute;
    font-size: 1.3rem;
    opacity: 0;
    animation: featureParticleFloat 12s linear infinite;
}

.feature-card-particles .particle:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.feature-card-particles .particle:nth-child(2) {
    top: 75%;
    right: 10%;
    animation-delay: 6s;
}

/* Modern CTA Section */
.cta-content-modern {
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    animation: ctaFloat 10s ease-in-out infinite;
}

.cta-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-2deg) rotateX(1deg);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.cta-content-modern:hover .cta-card-inner {
    transform: rotateY(-4deg) rotateX(2deg) translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.cta-icon-modern {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-modern .icon-3d {
    font-size: 4rem;
    animation: ctaIconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.cta-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #ff6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description-modern {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn-modern {
    position: relative;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.primary-cta-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.cta-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ctaGlow 8s ease-in-out infinite;
    z-index: 1;
}

.cta-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.cta-card-particles .particle {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0;
    animation: ctaParticleFloat 15s linear infinite;
}

.cta-card-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-card-particles .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.cta-card-particles .particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 10s;
}

/* Modern Content Cards */
.content-card-modern {
    position: relative;
    height: 100%;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: contentCardFloat 7s ease-in-out infinite;
}

.content-card-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-4deg) rotateX(2deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.content-card-modern:hover .content-card-inner {
    transform: rotateY(-6deg) rotateX(3deg) translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.content-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-icon-modern .icon-3d {
    font-size: 2.5rem;
    animation: contentIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.content-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content-text-modern {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: contentCardGlow 6s ease-in-out infinite;
    z-index: 1;
}

.content-card-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.content-card-particles .particle {
    position: absolute;
    font-size: 1.1rem;
    opacity: 0;
    animation: contentParticleFloat 11s linear infinite;
}

.content-card-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.content-card-particles .particle:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

/* Content Card Animations */
@keyframes contentCardFloat {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-6px); }
}

@keyframes contentIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-4px) scale(1.05); }
}

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

@keyframes contentParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(20px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-20px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) rotate(360deg) scale(0.5); 
    }
}

/* Modern Contact Form */
.contact-form-modern {
    position: relative;
    animation: contactFormFloat 8s ease-in-out infinite;
}

.contact-form-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-3deg) rotateX(1deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.contact-form-modern:hover .contact-form-inner {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-5px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-icon-modern {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon-modern .icon-3d {
    font-size: 2.5rem;
    animation: contactIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.contact-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-text-modern {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border: none;
    border-radius: 15px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    box-shadow: 
        0 8px 25px rgba(37, 99, 235, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.contact-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(37, 99, 235, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.contact-btn-modern .btn-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.contact-btn-modern .btn-icon {
    font-size: 1.2rem;
    animation: contactBtnIconFloat 3s ease-in-out infinite;
}

.contact-btn-modern .btn-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 15px;
    z-index: 1;
}

.contact-btn-modern .btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.contact-btn-modern:hover .btn-shine {
    transform: rotate(45deg) translateX(100%);
}

.contact-form-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: contactFormGlow 7s ease-in-out infinite;
    z-index: 1;
}

.contact-form-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.contact-form-particles .particle {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0;
    animation: contactParticleFloat 12s linear infinite;
}

.contact-form-particles .particle:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.contact-form-particles .particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

.contact-form-particles .particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 8s;
}

/* Contact Form Animations */
@keyframes contactFormFloat {
    0%, 100% { transform: rotateY(-3deg) rotateX(1deg) translateY(0px); }
    50% { transform: rotateY(-3deg) rotateX(1deg) translateY(-4px); }
}

@keyframes contactIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

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

@keyframes contactParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(20px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-20px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) rotate(360deg) scale(0.5); 
    }
}

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

/* Modern Portfolio Items */
.portfolio-item-modern {
    position: relative;
    perspective: 1000px;
    transform-style: preserve-3d;
    animation: portfolioItemFloat 8s ease-in-out infinite;
    margin-bottom: 2rem;
}

.portfolio-item-inner {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotateY(-3deg) rotateX(2deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.portfolio-item-modern:hover .portfolio-item-inner {
    transform: rotateY(-5deg) rotateX(3deg) translateY(-8px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.portfolio-icon-modern {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-icon-modern .icon-3d {
    font-size: 2.2rem;
    animation: portfolioIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.portfolio-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-desc-modern {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.portfolio-tech-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tech-tag-modern {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 20px;
    padding: 0.3rem 0.8rem;
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.portfolio-metrics-modern {
    color: var(--text-secondary);
}

.metric-icon {
    margin-right: 0.3rem;
    font-size: 0.9rem;
}

.portfolio-item-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: portfolioItemGlow 6s ease-in-out infinite;
    z-index: 1;
}

.portfolio-item-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.portfolio-item-particles .particle {
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    animation: portfolioParticleFloat 10s linear infinite;
}

.portfolio-item-particles .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.portfolio-item-particles .particle:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 5s;
}

/* Portfolio Animations */
@keyframes portfolioItemFloat {
    0%, 100% { transform: rotateY(-3deg) rotateX(2deg) translateY(0px); }
    50% { transform: rotateY(-3deg) rotateX(2deg) translateY(-5px); }
}

@keyframes portfolioIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

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

@keyframes portfolioParticleFloat {
    0% { 
        opacity: 0; 
        transform: translateY(30px) rotate(0deg) scale(0.5); 
    }
    10% { 
        opacity: 1; 
        transform: translateY(20px) rotate(36deg) scale(1); 
    }
    90% { 
        opacity: 1; 
        transform: translateY(-20px) rotate(324deg) scale(1); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(-30px) rotate(360deg) scale(0.5); 
    }
}

/* Modern Testimonial Elements */
.testimonial-icon-modern {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-icon-modern .icon-3d {
    font-size: 2rem;
    animation: testimonialIconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    z-index: 2;
    position: relative;
}

.testimonial-name-modern {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonial-title-modern {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Testimonial Animations */
@keyframes testimonialIconFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

/* Service Cards */
.service-card {
    padding: 2.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.service-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Feature Cards */
.feature-card {
    padding: 2.5rem;
    text-align: center;
    height: 100%;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-secondary);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(245, 87, 108, 0.4);
}

.feature-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 80px 0;
}

.cta-content {
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.glass-footer {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 3rem 0 2rem;
    margin-top: 5rem;
}

.footer-brand .brand-name {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.brand-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

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

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glass);
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.footer-contact {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 41, 59, 0.2), transparent);
    margin: 2rem 0 1rem;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-card {
    padding: 3rem;
    margin-bottom: 2rem;
}

.content-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.content-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Process Steps */
.process-step {
    padding: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.step-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-desc {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Form */
.contact-form {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-control {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--text-primary);
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

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

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.portfolio-item {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.portfolio-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.portfolio-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.portfolio-desc {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.portfolio-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .glass-btn,
    .glass-btn-outline {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .service-card,
    .feature-card,
    .content-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .cta-content {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s ease forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 0.8s ease forwards;
}

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

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

/* Loading animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(37, 99, 235, 0.3);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

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

/* Utility Classes */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.bg-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.border-glass {
    border: 1px solid var(--glass-border);
}

.shadow-glass {
    box-shadow: var(--shadow-glass);
}

.rounded-glass {
    border-radius: 20px;
}

/* Modern Hero Visual Styles */
.hero-visual-modern {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Services Grid Visual */
.services-grid-visual {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    z-index: 3;
}

.service-node {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.service-node::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-node:hover::before {
    opacity: 1;
}

.service-node:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
}

.node-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-node:hover .node-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.node-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.service-node:hover .node-label {
    opacity: 1;
    color: var(--primary-color);
}

.node-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-node:hover .node-glow {
    transform: translate(-50%, -50%) scale(1.2);
}

/* Specific node positioning and colors */
.service-node.web-dev {
    grid-column: 1;
    grid-row: 1;
}

.service-node.ai-solutions {
    grid-column: 2;
    grid-row: 1;
}

.service-node.saas-dev {
    grid-column: 3;
    grid-row: 1;
}

.service-node.crm-systems {
    grid-column: 1;
    grid-row: 2;
}

.service-node.digital-marketing {
    grid-column: 2;
    grid-row: 2;
}

.service-node.chatbots {
    grid-column: 3;
    grid-row: 2;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.connections-svg {
    width: 100%;
    height: 100%;
}

.connection-path {
    stroke-dasharray: 5, 5;
    animation: dashFlow 3s linear infinite;
}

.path-1 {
    animation-delay: 0s;
}

.path-2 {
    animation-delay: 1s;
}

.path-3 {
    animation-delay: 2s;
}

.path-4 {
    animation-delay: 1.5s;
}

@keyframes dashFlow {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.3;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        stroke-dashoffset: -20;
        opacity: 0.3;
    }
}

/* Central Hub */
.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    text-align: center;
}

.hub-core {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

.hub-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    animation: hubPulse 2s ease-in-out infinite;
}

@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        box-shadow: 0 12px 40px rgba(37, 99, 235, 0.6);
    }
}

.hub-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hub-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.hub-ring.ring-1 {
    width: 80px;
    height: 80px;
    animation: ringRotate 8s linear infinite;
}

.hub-ring.ring-2 {
    width: 100px;
    height: 100px;
    animation: ringRotate 12s linear infinite reverse;
}

.hub-ring.ring-3 {
    width: 120px;
    height: 120px;
    animation: ringRotate 16s linear infinite;
}

.hub-label {
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.9;
}

/* Floating Data Points */
.data-points {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.data-point {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.data-point:hover {
    transform: scale(1.1);
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.data-value {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.data-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
    font-weight: 500;
}

.data-point.point-1 {
    top: 10%;
    left: 5%;
    animation: floatData1 6s ease-in-out infinite;
}

.data-point.point-2 {
    top: 15%;
    right: 8%;
    animation: floatData2 8s ease-in-out infinite;
}

.data-point.point-3 {
    bottom: 10%;
    left: 10%;
    animation: floatData3 7s ease-in-out infinite;
}

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

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

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

/* Modern Grid Background */
.modern-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line.vertical {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line.horizontal.line-1 {
    top: 25%;
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line.horizontal.line-2 {
    top: 50%;
    animation: gridPulse 4s ease-in-out infinite 1s;
}

.grid-line.horizontal.line-3 {
    top: 75%;
    animation: gridPulse 4s ease-in-out infinite 2s;
}

.grid-line.vertical.line-1 {
    left: 25%;
    animation: gridPulse 4s ease-in-out infinite 0.5s;
}

.grid-line.vertical.line-2 {
    left: 50%;
    animation: gridPulse 4s ease-in-out infinite 1.5s;
}

.grid-line.vertical.line-3 {
    left: 75%;
    animation: gridPulse 4s ease-in-out infinite 2.5s;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Responsive Design for Modern Hero */
@media (max-width: 992px) {
    .services-grid-visual {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .service-node.web-dev {
        grid-column: 1;
        grid-row: 1;
    }
    
    .service-node.ai-solutions {
        grid-column: 2;
        grid-row: 1;
    }
    
    .service-node.saas-dev {
        grid-column: 1;
        grid-row: 2;
    }
    
    .service-node.crm-systems {
        grid-column: 2;
        grid-row: 2;
    }
    
    .service-node.digital-marketing {
        grid-column: 1;
        grid-row: 3;
    }
    
    .service-node.chatbots {
        grid-column: 2;
        grid-row: 3;
    }
    
    .hub-core {
        width: 80px;
        height: 80px;
    }
    
    .hub-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .hub-ring.ring-1 { width: 70px; height: 70px; }
    .hub-ring.ring-2 { width: 85px; height: 85px; }
    .hub-ring.ring-3 { width: 100px; height: 100px; }
}

@media (max-width: 768px) {
    .hero-visual-modern {
        height: 500px;
    }
    
    .services-grid-visual {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .service-node {
        padding: 1rem;
    }
    
    .service-node.web-dev { grid-row: 1; }
    .service-node.ai-solutions { grid-row: 2; }
    .service-node.saas-dev { grid-row: 3; }
    .service-node.crm-systems { grid-row: 4; }
    .service-node.digital-marketing { grid-row: 5; }
    .service-node.chatbots { grid-row: 6; }
    
    .node-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .node-label {
        font-size: 0.8rem;
    }
    
    .central-hub {
        display: none;
    }
    
    .connection-lines {
        display: none;
    }
    
    .data-points {
        display: none;
    }
    
    .modern-grid {
        opacity: 0.05;
    }
}

@media (max-width: 576px) {
    .hero-visual-modern {
        height: 400px;
    }
    
    .services-grid-visual {
        gap: 0.8rem;
        padding: 0.8rem;
    }
    
    .service-node {
        padding: 0.8rem;
        border-radius: 15px;
    }
    
    .node-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .node-label {
        font-size: 0.75rem;
    }
}

/* Animation Enhancements */
.service-node {
    animation: nodeEntrance 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
}

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

@keyframes nodeEntrance {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover Effects for Better Interactivity */
.service-node:hover {
    animation: nodeHover 0.3s ease-out forwards;
}

@keyframes nodeHover {
    0% { transform: translateY(-10px) scale(1.05); }
    50% { transform: translateY(-15px) scale(1.08); }
    100% { transform: translateY(-10px) scale(1.05); }
}

/* Clean Hero Visual Styles */
.hero-visual-clean {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.illustration-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Device Mockup */
.device-mockup {
    position: relative;
    width: 300px;
    height: 200px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    padding: 20px;
    z-index: 3;
    transition: all 0.3s ease;
}

.device-mockup:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.2);
}

.screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 15px;
    position: relative;
    overflow: hidden;
}

.screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: screenGlow 3s ease-in-out infinite;
}

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

.screen-content {
    position: relative;
    z-index: 2;
}

.code-lines {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: codeTyping 2s ease-in-out infinite;
}

.code-line.short {
    width: 60%;
    animation-delay: 0.5s;
}

.code-line.medium {
    width: 80%;
    animation-delay: 1s;
}

@keyframes codeTyping {
    0%, 50% { width: 0; opacity: 0; }
    100% { opacity: 1; }
}

/* Floating Icons */
.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.float-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.float-icon:hover {
    transform: scale(1.1);
    background: var(--primary-color);
    color: white;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.3);
}

.icon-1 {
    top: 20%;
    left: 10%;
    animation: floatGentle1 4s ease-in-out infinite;
}

.icon-2 {
    top: 15%;
    right: 15%;
    animation: floatGentle2 5s ease-in-out infinite;
}

.icon-3 {
    bottom: 25%;
    left: 15%;
    animation: floatGentle3 6s ease-in-out infinite;
}

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

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

@keyframes floatGentle3 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
}

/* Success Badges */
.success-badges {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 12px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.badge-number {
    display: block;
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.badge-text {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
    font-weight: 500;
}

.badge-1 {
    top: 60%;
    right: 5%;
}

.badge-2 {
    bottom: 15%;
    right: 25%;
}

/* Background Shapes */
.bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
}

.shape-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 10%;
    right: 10%;
    animation: rotateShape 20s linear infinite;
}

.shape-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--primary-color);
    bottom: 20%;
    left: 5%;
    animation: floatShape 15s ease-in-out infinite;
}

.shape-square {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 10px;
    top: 70%;
    left: 70%;
    animation: morphShape 12s ease-in-out infinite;
}

@keyframes rotateShape {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

@keyframes morphShape {
    0%, 100% { border-radius: 10px; transform: rotate(0deg); }
    50% { border-radius: 50%; transform: rotate(180deg); }
}

/* Responsive Design for Clean Hero */
@media (max-width: 992px) {
    .device-mockup {
        width: 250px;
        height: 160px;
        padding: 15px;
    }
    
    .float-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .badge {
        padding: 10px 15px;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .hero-visual-clean {
        height: 400px;
        margin-top: 2rem;
    }
    
    .device-mockup {
        width: 200px;
        height: 130px;
        padding: 12px;
    }
    
    .float-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .icon-1 {
        top: 15%;
        left: 5%;
    }
    
    .icon-2 {
        top: 10%;
        right: 10%;
    }
    
    .icon-3 {
        bottom: 20%;
        left: 10%;
    }
    
    .badge {
        padding: 8px 12px;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .bg-shapes {
        opacity: 0.05;
    }
    
    .shape-circle {
        width: 80px;
        height: 80px;
    }
    
    .shape-triangle {
        border-left-width: 25px;
        border-right-width: 25px;
        border-bottom-width: 45px;
    }
    
    .shape-square {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .hero-visual-clean {
        height: 350px;
    }
    
    .device-mockup {
        width: 180px;
        height: 120px;
        padding: 10px;
    }
    
    .screen {
        padding: 10px;
    }
    
    .code-line {
        height: 3px;
        margin-bottom: 6px;
    }
    
    .float-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .badge {
        padding: 6px 10px;
    }
    
    .badge-number {
        font-size: 0.9rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
}

/* Hover Effects and Interactions */
.illustration-container:hover .device-mockup {
    transform: translateY(-5px) scale(1.01);
}

.illustration-container:hover .float-icon {
    animation-play-state: paused;
}

.illustration-container:hover .bg-shapes {
    opacity: 0.15;
}

/* Loading Animation */
.hero-visual-clean {
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}/
* Simple Hero Visual Styles */
.hero-visual-simple {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.simple-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Gradient Sphere */
.gradient-sphere {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #ff6b9d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: sphereFloat 6s ease-in-out infinite;
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.sphere-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.6;
    animation: glowPulse 3s ease-in-out infinite;
}

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

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Minimal Dots */
.minimal-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.7;
}

.dot-1 {
    top: 20%;
    left: 30%;
    animation: dotFloat1 4s ease-in-out infinite;
}

.dot-2 {
    top: 30%;
    right: 25%;
    animation: dotFloat2 5s ease-in-out infinite;
}

.dot-3 {
    bottom: 30%;
    left: 20%;
    animation: dotFloat3 6s ease-in-out infinite;
}

.dot-4 {
    bottom: 20%;
    right: 30%;
    animation: dotFloat4 4.5s ease-in-out infinite;
}

.dot-5 {
    top: 50%;
    left: 10%;
    animation: dotFloat5 5.5s ease-in-out infinite;
}

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

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

@keyframes dotFloat3 {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes dotFloat4 {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-8px); opacity: 1; }
}

@keyframes dotFloat5 {
    0%, 100% { transform: translateY(0px); opacity: 0.7; }
    50% { transform: translateY(-18px); opacity: 1; }
}

/* Simple Connecting Lines */
.connecting-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.3;
}

.line-1 {
    width: 150px;
    height: 1px;
    top: 40%;
    left: 10%;
    transform: rotate(25deg);
    animation: lineGlow1 4s ease-in-out infinite;
}

.line-2 {
    width: 120px;
    height: 1px;
    bottom: 35%;
    right: 15%;
    transform: rotate(-30deg);
    animation: lineGlow2 5s ease-in-out infinite;
}

@keyframes lineGlow1 {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes lineGlow2 {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Responsive Design for Simple Hero */
@media (max-width: 992px) {
    .simple-illustration {
        width: 350px;
        height: 350px;
    }
    
    .gradient-sphere {
        width: 160px;
        height: 160px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 768px) {
    .hero-visual-simple {
        height: 400px;
        margin-top: 2rem;
    }
    
    .simple-illustration {
        width: 280px;
        height: 280px;
    }
    
    .gradient-sphere {
        width: 120px;
        height: 120px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .line-1,
    .line-2 {
        width: 80px;
    }
}

@media (max-width: 576px) {
    .hero-visual-simple {
        height: 300px;
    }
    
    .simple-illustration {
        width: 220px;
        height: 220px;
    }
    
    .gradient-sphere {
        width: 100px;
        height: 100px;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .connecting-lines {
        display: none;
    }
}

/* Hover Effects */
.hero-visual-simple:hover .gradient-sphere {
    animation-play-state: paused;
    transform: scale(1.05);
}

.hero-visual-simple:hover .dot {
    background: var(--accent-color);
    transform: scale(1.2);
}/* Dash
board Hero Visual */
.hero-dashboard {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.dashboard-container {
    width: 100%;
    max-width: 450px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
}

/* Dashboard Header */
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.header-dots {
    display: flex;
    gap: 8px;
}

.header-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.header-dots .dot.red { background: #ff5f57; }
.header-dots .dot.yellow { background: #ffbd2e; }
.header-dots .dot.green { background: #28ca42; }

.header-title {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

/* Dashboard Content */
.dashboard-content {
    padding: 25px;
    background: #fafbfc;
}

/* Analytics Cards */
.analytics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.analytics-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.card-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.card-value {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    line-height: 1;
}

.card-label {
    font-size: 12px;
    color: #718096;
    margin-top: 2px;
}

/* Chart Container */
.chart-container {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
    justify-content: space-between;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary-color), var(--accent-color));
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: barGrow 1.5s ease-out;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
    transform: scaleY(1.1);
}

@keyframes barGrow {
    from { height: 0; }
}

/* Service Status */
.service-status {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.status-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
    color: #4a5568;
}

.status-item:not(:last-child) {
    border-bottom: 1px solid #e2e8f0;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #48bb78;
    animation: statusPulse 2s ease-in-out infinite;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .dashboard-container {
        max-width: 400px;
    }
    
    .dashboard-content {
        padding: 20px;
    }
    
    .analytics-card {
        padding: 15px;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .card-value {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-dashboard {
        height: 500px;
        padding: 1rem;
    }
    
    .dashboard-container {
        max-width: 350px;
    }
    
    .analytics-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .dashboard-content {
        padding: 15px;
    }
    
    .chart-bars {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-dashboard {
        height: 450px;
    }
    
    .dashboard-container {
        max-width: 300px;
    }
    
    .dashboard-header {
        padding: 15px;
    }
    
    .header-title {
        font-size: 12px;
    }
    
    .analytics-card {
        padding: 12px;
        gap: 10px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .card-value {
        font-size: 16px;
    }
    
    .card-label {
        font-size: 11px;
    }
}

/* Loading Animation */
.dashboard-container {
    animation: dashboardSlideIn 0.8s ease-out;
}

@keyframes dashboardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
/
* Modern Hero Section Styles */
.hero-bg-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    animation: meshFloat 20s ease-in-out infinite;
}

@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -30px) rotate(1deg); }
    66% { transform: translate(20px, -20px) rotate(-1deg); }
}

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    top: 60%;
    right: -5%;
    animation-delay: 5s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(30px, -20px); }
    50% { transform: translate(-20px, -40px); }
    75% { transform: translate(-30px, 20px); }
}

.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite;
}

.grid-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 30s linear infinite reverse;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.particle-system-modern {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle-modern {
    position: absolute;
    width: 3px;
    height: 3px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0;
    animation: particleModern 12s linear infinite;
}

.particle-modern:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle-modern:nth-child(2) { left: 25%; animation-delay: 2s; }
.particle-modern:nth-child(3) { left: 40%; animation-delay: 4s; }
.particle-modern:nth-child(4) { left: 60%; animation-delay: 6s; }
.particle-modern:nth-child(5) { left: 75%; animation-delay: 8s; }
.particle-modern:nth-child(6) { left: 90%; animation-delay: 10s; }

@keyframes particleModern {
    0% { 
        opacity: 0; 
        transform: translateY(100vh) scale(0) rotate(0deg);
    }
    10% { 
        opacity: 1;
        transform: translateY(90vh) scale(1) rotate(45deg);
    }
    90% { 
        opacity: 1;
        transform: translateY(10vh) scale(1) rotate(315deg);
    }
    100% { 
        opacity: 0; 
        transform: translateY(0) scale(0) rotate(360deg);
    }
}

/* Modern Hero Content */
.hero-content-modern {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1rem;
}

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

.hero-title-modern {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    position: relative;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: var(--text-primary);
    font-weight: 700;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
}

.text-gradient-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-accent {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

.hero-description-modern {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* Modern Buttons */
.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    color: white;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: var(--text-primary);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-icon {
    transform: translateX(2px);
}

/* Modern Stats */
.hero-stats-modern {
    margin-top: 3rem;
}

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

.stat-modern {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.stat-modern:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-number-modern {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Modern Visual Elements */
.hero-visual-modern {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-sphere {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    z-index: 5;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #6366f1 0%, #8b5cf6 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: spherePulse 3s ease-in-out infinite;
    box-shadow: 
        0 0 40px rgba(99, 102, 241, 0.5),
        0 0 80px rgba(139, 92, 246, 0.3);
}

.sphere-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 120px;
    height: 120px;
    animation: ringRotate 15s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 160px;
    height: 160px;
    animation: ringRotate 20s linear infinite reverse;
    border-color: rgba(139, 92, 246, 0.2);
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation: ringRotate 25s linear infinite;
    border-color: rgba(6, 182, 212, 0.2);
    border-style: dotted;
}

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

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Tech Icons */
.tech-icons-modern {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6366f1;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 3;
}

.tech-icon:hover {
    transform: scale(1.1);
    background: rgba(99, 102, 241, 0.1);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.3);
}

.icon-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-icon:hover .icon-glow {
    opacity: 1;
}

.icon-1 {
    top: 10%;
    left: 15%;
    animation: techFloat1 8s ease-in-out infinite;
}

.icon-2 {
    top: 5%;
    right: 20%;
    animation: techFloat2 10s ease-in-out infinite;
}

.icon-3 {
    bottom: 30%;
    left: 5%;
    animation: techFloat3 12s ease-in-out infinite;
}

.icon-4 {
    bottom: 10%;
    right: 15%;
    animation: techFloat4 9s ease-in-out infinite;
}

.icon-5 {
    top: 50%;
    left: -5%;
    animation: techFloat5 11s ease-in-out infinite;
}

.icon-6 {
    top: 40%;
    right: -5%;
    animation: techFloat6 13s ease-in-out infinite;
}

@keyframes techFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(5deg); }
    50% { transform: translate(5px, -20px) rotate(-3deg); }
    75% { transform: translate(-10px, -10px) rotate(2deg); }
}

@keyframes techFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-10px, 15px) rotate(-5deg); }
    50% { transform: translate(-20px, 5px) rotate(3deg); }
    75% { transform: translate(-10px, -5px) rotate(-2deg); }
}

@keyframes techFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, 10px) rotate(4deg); }
    66% { transform: translate(-10px, 20px) rotate(-4deg); }
}

@keyframes techFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-15px, -5px) rotate(3deg); }
    50% { transform: translate(-5px, -15px) rotate(-3deg); }
    75% { transform: translate(10px, -5px) rotate(2deg); }
}

@keyframes techFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -15px) rotate(6deg); }
}

@keyframes techFloat6 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 15px) rotate(-6deg); }
}

/* Data Flow */
.data-flow-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flow-svg {
    width: 100%;
    height: 100%;
}

.flow-path {
    stroke-dasharray: 5, 10;
    stroke-dashoffset: 0;
    animation: flowAnimation 8s linear infinite;
}

.path-1 {
    animation-delay: 0s;
}

.path-2 {
    animation-delay: 2s;
}

.path-3 {
    animation-delay: 4s;
}

@keyframes flowAnimation {
    0% { stroke-dashoffset: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { stroke-dashoffset: -100; opacity: 0; }
}

/* Responsive Design for Modern Hero */
@media (max-width: 1200px) {
    .hero-title-modern {
        font-size: 4rem;
    }
}

@media (max-width: 992px) {
    .hero-title-modern {
        font-size: 3.5rem;
    }
    
    .hero-visual-modern {
        height: 500px;
        margin-top: 3rem;
    }
    
    .main-sphere {
        width: 180px;
        height: 180px;
    }
    
    .sphere-core {
        width: 70px;
        height: 70px;
    }
    
    .ring-1 { width: 110px; height: 110px; }
    .ring-2 { width: 140px; height: 140px; }
    .ring-3 { width: 180px; height: 180px; }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.8rem;
    }
    
    .hero-description-modern {
        font-size: 1.1rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-visual-modern {
        height: 400px;
    }
    
    .main-sphere {
        width: 150px;
        height: 150px;
    }
    
    .sphere-core {
        width: 60px;
        height: 60px;
    }
    
    .ring-1 { width: 90px; height: 90px; }
    .ring-2 { width: 120px; height: 120px; }
    .ring-3 { width: 150px; height: 150px; }
    
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .floating-orbs {
        display: none;
    }
    
    .particle-system-modern {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .btn-modern {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .hero-visual-modern {
        height: 300px;
    }
    
    .main-sphere {
        width: 120px;
        height: 120px;
    }
    
    .sphere-core {
        width: 50px;
        height: 50px;
    }
    
    .ring-1 { width: 70px; height: 70px; }
    .ring-2 { width: 90px; height: 90px; }
    .ring-3 { width: 120px; height: 120px; }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Modern Hero Section Styles */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    z-index: -2;
}

.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatDot 15s ease-in-out infinite;
}

.dot-1 { top: 20%; left: 10%; animation-delay: 0s; }
.dot-2 { top: 60%; left: 80%; animation-delay: 3s; }
.dot-3 { top: 80%; left: 20%; animation-delay: 6s; }
.dot-4 { top: 30%; left: 70%; animation-delay: 9s; }
.dot-5 { top: 50%; left: 50%; animation-delay: 12s; }

@keyframes floatDot {
    0%, 100% { transform: translateY(0px); opacity: 0.1; }
    50% { transform: translateY(-20px); opacity: 0.3; }
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Modern Title Styling */
.primary-text {
    color: var(--text-primary);
    font-weight: 800;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Key Benefits */
.key-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Modern Buttons */
.modern-btn {
    background: var(--primary-color);
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

.modern-btn:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
    color: white;
}

.modern-btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.modern-btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

/* Modern Dashboard Mockup */
.hero-visual-modern {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-mockup {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    width: 400px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.mockup-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mockup-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.mockup-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mockup-content {
    padding: 24px;
    background: white;
}

.metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.progress-section {
    margin-top: 20px;
}

.progress-item {
    margin-bottom: 16px;
}

.progress-item span {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0%; }
}

/* Floating Tech Icons */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.tech-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: techIconFloat 6s ease-in-out infinite;
}

.tech-icon.icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.tech-icon.icon-2 {
    top: 15%;
    right: 10%;
    animation-delay: 1.5s;
}

.tech-icon.icon-3 {
    bottom: 25%;
    left: 0%;
    animation-delay: 3s;
}

.tech-icon.icon-4 {
    bottom: 10%;
    right: 5%;
    animation-delay: 4.5s;
}

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

/* Enhanced Stats Section */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

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

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Mobile Responsiveness for Modern Hero */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
    
    .key-benefits {
        gap: 0.6rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .modern-btn,
    .modern-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .dashboard-mockup {
        width: 320px;
        margin-top: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .tech-icons {
        display: none;
    }
    
    .hero-visual-modern {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .dashboard-mockup {
        width: 280px;
    }
    
    .mockup-content {
        padding: 16px;
    }
    
    .metric-card {
        padding: 12px;
        gap: 12px;
    }
    
    .metric-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

/* Modern Components Responsive */
@media (max-width: 768px) {
    .content-card-modern .content-card-inner {
        padding: 1.5rem;
        transform: rotateY(-2deg) rotateX(1deg);
    }
    
    .content-card-modern:hover .content-card-inner {
        transform: rotateY(-3deg) rotateX(2deg) translateY(-5px);
    }
    
    .content-icon-modern {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .content-icon-modern .icon-3d {
        font-size: 2rem;
    }
    
    .content-title-modern {
        font-size: 1.5rem;
    }
    
    .contact-form-modern .contact-form-inner {
        padding: 1.5rem;
        transform: rotateY(-2deg) rotateX(1deg);
    }
    
    .contact-form-modern:hover .contact-form-inner {
        transform: rotateY(-3deg) rotateX(2deg) translateY(-3px);
    }
    
    .contact-icon-modern {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .contact-icon-modern .icon-3d {
        font-size: 2rem;
    }
    
    .contact-title-modern {
        font-size: 1.5rem;
    }
    
    .contact-btn-modern {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .portfolio-item-modern .portfolio-item-inner {
        padding: 1.5rem;
        transform: rotateY(-2deg) rotateX(1deg);
    }
    
    .portfolio-item-modern:hover .portfolio-item-inner {
        transform: rotateY(-3deg) rotateX(2deg) translateY(-5px);
    }
    
    .portfolio-icon-modern {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .portfolio-icon-modern .icon-3d {
        font-size: 1.8rem;
    }
    
    .portfolio-title-modern {
        font-size: 1.2rem;
    }
    
    .tech-tag-modern {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .metric-icon {
        font-size: 0.8rem;
    }
    
    .testimonial-icon-modern {
        width: 50px;
        height: 50px;
        margin-bottom: 0.8rem;
    }
    
    .testimonial-icon-modern .icon-3d {
        font-size: 1.6rem;
    }
    
    .service-card-modern .service-card-inner,
    .feature-card-modern .feature-card-inner,
    .cta-content-modern .cta-card-inner {
        padding: 1.5rem;
        transform: rotateY(-2deg) rotateX(1deg);
    }
    
    .service-card-modern:hover .service-card-inner,
    .feature-card-modern:hover .feature-card-inner,
    .cta-content-modern:hover .cta-card-inner {
        transform: rotateY(-3deg) rotateX(2deg) translateY(-5px);
    }
    
    .service-icon-modern,
    .feature-icon-modern,
    .cta-icon-modern {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .service-icon-modern .icon-3d,
    .feature-icon-modern .icon-3d,
    .cta-icon-modern .icon-3d {
        font-size: 1.8rem;
    }
    
    .service-title-modern,
    .feature-title-modern,
    .cta-title-modern {
        font-size: 1.2rem;
    }
    
    .service-desc-modern,
    .feature-desc-modern,
    .cta-description-modern {
        font-size: 0.9rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .particle {
        font-size: 0.8rem !important;
    }
}