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

/* Global Link Reset */
a {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

a:hover,
a:focus,
a:active {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

:root {
    --primary-color: #38BDF8;
    --secondary-color: #1E293B;
    --accent-color: #0F172A;
    --text-primary: #1E293B;
    --text-secondary: #64748B;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #38BDF8;
    --secondary-color: #0EA5E9;
    --accent-color: #1E293B;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --bg-white: #0F172A;
    --bg-light: #1E293B;
    --glass-bg: rgba(30, 41, 59, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #ffffff; /* Changed to white permanently */
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Theme Toggle */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Sound Toggle */
.sound-toggle {
    position: fixed;
    top: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: var(--transition);
    color: var(--text-primary);
}

.sound-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.sound-toggle.muted {
    color: #94A3B8;
}

.sound-toggle::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.sound-toggle:hover::before {
    opacity: 1;
}

.toggle-icon {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-icon i {
    position: absolute;
    font-size: 18px;
    color: var(--text-primary);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#sunIcon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] #moonIcon {
    opacity: 0;
    transform: rotate(180deg);
}

[data-theme="dark"] #sunIcon {
    opacity: 1;
    transform: rotate(0deg);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform-origin: left;
    transform: scaleX(0);
    z-index: 10000;
    transition: transform 0.3s ease;
}

/* Typing Animation */
.typing-text {
    display: inline-block;
    min-height: 1.2em;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: var(--primary-color);
    font-weight: bold;
}

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

/* Floating Social Buttons */
.floating-social {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.social-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.social-btn.linkedin-btn:hover {
    background: #0077B5;
    color: white;
}

.social-btn.instagram-btn:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.whatsapp-btn:hover {
    background: #25D366;
    color: white;
}

.social-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

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

/* 3D Flip Cards */
.flip-card {
    perspective: 1000px;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.card-back {
    transform: rotateY(180deg);
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--text-primary);
}

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

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #00ffff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #ff00ff;
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(20% 0 30% 0); transform: translate(-2px, 2px); }
    50% { clip-path: inset(50% 0 20% 0); transform: translate(2px, -2px); }
    75% { clip-path: inset(10% 0 60% 0); transform: translate(-1px, 1px); }
}

@keyframes glitch-2 {
    0%, 100% { clip-path: inset(0 0 0 0); }
    25% { clip-path: inset(60% 0 10% 0); transform: translate(2px, -1px); }
    50% { clip-path: inset(20% 0 40% 0); transform: translate(-2px, 2px); }
    75% { clip-path: inset(30% 0 50% 0); transform: translate(1px, -2px); }
}

/* Rainbow Text Animation */
.rainbow-text {
    background: linear-gradient(to right, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbow 3s linear infinite;
}

@keyframes rainbow {
    to { background-position: 200% center; }
}

/* Neon Glow Effects */
.neon-glow {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color),
                 0 0 20px var(--primary-color),
                 0 0 30px var(--primary-color),
                 0 0 40px var(--primary-color);
    animation: neon-flicker 2s infinite alternate;
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Magnetic Card Effect */
.magnetic-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Morphing Cards */
.morphing-card {
    border-radius: 20px;
    transition: all 0.5s ease;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 20px; transform: scale(1) rotate(0deg); }
    25% { border-radius: 40px; transform: scale(1.02) rotate(1deg); }
    50% { border-radius: 15px; transform: scale(1.01) rotate(-1deg); }
    75% { border-radius: 30px; transform: scale(1.03) rotate(0.5deg); }
}

/* Floating Emoji */
.emoji-float {
    font-size: 3rem;
    display: inline-block;
    animation: float-emoji 3s ease-in-out infinite;
}

.emoji-float:nth-child(2) { animation-delay: 0.5s; }
.emoji-float:nth-child(3) { animation-delay: 1s; }
.emoji-float:nth-child(4) { animation-delay: 1.5s; }

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

/* Skills Showcase */
.skills-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-card {
background: var(--glass-bg);
backdrop-filter: blur(20px);
border: 1px solid var(--glass-border);
border-radius: 20px;
padding: 2rem;
text-align: center;
transition: var(--transition);
position: relative;
overflow: hidden;
}

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

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

.skill-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: var(--shadow-lg);
}

.skill-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--primary-color);
}

.skill-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: #1E293B;
}

/* Technical Skills Section Animations */
.skill-category {
opacity: 1 !important;
visibility: visible !important;
transform: translateY(0) !important;
transition: all 0.8s ease-out;
}

.skill-category.reveal {
opacity: 1;
transform: translateY(0);
}

.skill-item {
opacity: 1 !important;
visibility: visible !important;
transform: translateX(0) !important;
transition: all 0.6s ease-out;
}

.skill-item.reveal {
opacity: 1;
transform: translateX(0);
}

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

.skill-bar {
    width: 100%;
    height: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
}

.skill-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 5px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    overflow: hidden;
}

.skill-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
    animation: fillShine 3s infinite;
}

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

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    transition: all 0.4s ease-out;
}

.skill-info.reveal {
    opacity: 1;
    transform: translateY(0);
}

.skill-name {
    font-weight: 600;
    color: #FFFFFF;
    font-size: 0.95rem;
}

.skill-percentage {
    color: #38BDF8;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Card Hover Effects */
.skill-category {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(56, 189, 248, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.1), transparent);
    transition: left 0.5s ease;
}

.skill-category:hover::before {
    left: 100%;
}

.skill-category:hover {
    transform: translateY(-5px);
    border-color: rgba(56, 189, 248, 0.4);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.2);
}

.skill-category h3 {
    color: #38BDF8;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.skill-category h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 1px;
}

/* Fun Facts Section */
.fun-facts {
    padding: 100px 0;
    background: var(--bg-light);
}

.fun-facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.fact-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-lg);
}

.fact-icon {
    margin-bottom: 1rem;
}

.fact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Call to Action Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-white);
    color: var(--text-primary);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-section .btn-secondary {
    background: transparent;
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.cta-section .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Services Page - Professional Services Theme */
.services-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.service-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    color: var(--text-primary);
}

.service-badge i {
    color: var(--primary-color);
}

/* Main Services Section */
.main-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    animation: serviceCardFloat 6s ease-in-out infinite;
}

.service-item:nth-child(odd) {
    animation-delay: 0s;
}

.service-item:nth-child(even) {
    animation-delay: 3s;
}

@keyframes serviceCardFloat {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
        box-shadow: 
            0 10px 30px rgba(56, 189, 248, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }
    25% { 
        transform: translateY(-8px) rotateX(2deg) rotateY(1deg);
        box-shadow: 
            0 15px 40px rgba(56, 189, 248, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
    50% { 
        transform: translateY(-15px) rotateX(-1deg) rotateY(2deg);
        box-shadow: 
            0 20px 50px rgba(56, 189, 248, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
    75% { 
        transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
        box-shadow: 
            0 15px 40px rgba(56, 189, 248, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }
}

.service-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(56, 189, 248, 0.1),
        transparent,
        rgba(14, 165, 233, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
    z-index: 1;
}

.service-item:hover {
    transform: translateY(-25px) scale(1.08) rotateX(-5deg) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(56, 189, 248, 0.35),
        0 0 0 3px rgba(56, 189, 248, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
    animation: serviceCardAntiGravity 2s ease-in-out infinite;
}

@keyframes serviceCardAntiGravity {
    0%, 100% { 
        transform: translateY(-25px) scale(1.08) rotateX(-5deg) rotateY(5deg);
        box-shadow: 
            0 35px 70px rgba(56, 189, 248, 0.35),
            0 0 0 3px rgba(56, 189, 248, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.95);
    }
    50% { 
        transform: translateY(-35px) scale(1.1) rotateX(-8deg) rotateY(8deg);
        box-shadow: 
            0 45px 90px rgba(56, 189, 248, 0.45),
            0 0 0 4px rgba(56, 189, 248, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.98);
    }
}

.service-item:hover::before {
    opacity: 1;
    animation: serviceShimmer 1s ease;
}

@keyframes serviceShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.service-icon-bg {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(56, 189, 248, 0.3),
        inset 0 3px 6px rgba(255, 255, 255, 0.2);
    animation: serviceIconFloat 4s ease-in-out infinite;
    z-index: 2;
}

.service-icon-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-icon-bg i {
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    animation: serviceIconRotate 8s linear infinite;
}

@keyframes serviceIconFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 
            0 10px 30px rgba(56, 189, 248, 0.3),
            inset 0 3px 6px rgba(255, 255, 255, 0.2);
    }
    25% { 
        transform: translateY(-5px) scale(1.05);
        box-shadow: 
            0 15px 35px rgba(56, 189, 248, 0.4),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
    50% { 
        transform: translateY(-10px) scale(1.1);
        box-shadow: 
            0 20px 40px rgba(56, 189, 248, 0.5),
            inset 0 3px 10px rgba(255, 255, 255, 0.4);
    }
    75% { 
        transform: translateY(-5px) scale(1.05);
        box-shadow: 
            0 15px 35px rgba(56, 189, 248, 0.4),
            inset 0 3px 8px rgba(255, 255, 255, 0.3);
    }
}

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

.service-item:hover .service-icon-bg {
    transform: scale(1.3) rotate(720deg);
    box-shadow: 
        0 25px 50px rgba(56, 189, 248, 0.6),
        inset 0 5px 10px rgba(255, 255, 255, 0.4);
    animation: serviceIconGlow 1.5s ease-in-out infinite;
}

.service-item:hover .service-icon-bg::before {
    opacity: 1;
    animation: serviceIconShimmer 2s linear infinite;
}

.service-item:hover .service-icon-bg i {
    transform: scale(1.4);
    animation: serviceIconPulse 1s ease-in-out infinite;
}

@keyframes serviceIconGlow {
    0%, 100% { 
        box-shadow: 
            0 25px 50px rgba(56, 189, 248, 0.6),
            inset 0 5px 10px rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 35px 70px rgba(56, 189, 248, 0.8),
            inset 0 5px 15px rgba(255, 255, 255, 0.6);
    }
}

@keyframes serviceIconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes serviceIconPulse {
    0%, 100% { transform: scale(1.4); }
    50% { transform: scale(1.6); }
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-item p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* Pricing Plans Section */
.pricing-plans {
    padding: 100px 0;
    background: var(--bg-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.pricing-header h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.price {
    margin-bottom: 0.5rem;
}

.price .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    vertical-align: top;
}

.price .amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--text-primary);
}

.price .period {
    color: var(--text-secondary);
    font-size: 1rem;
}

.plan-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features i.fa-check {
    color: #10b981;
}

.pricing-features i.fa-times {
    color: #ef4444;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.process-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.1);
    cursor: pointer;
    animation: cardFloat 4s ease-in-out infinite;
}

.process-card:nth-child(odd) {
    animation-delay: 0s;
}

.process-card:nth-child(even) {
    animation-delay: 2s;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }
    50% { 
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(56, 189, 248, 0.15);
    }
}

.process-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.25);
    border-color: rgba(56, 189, 248, 0.3);
    animation: cardHover 2s ease-in-out infinite;
}

@keyframes cardHover {
    0%, 100% { 
        transform: translateY(-15px) scale(1.05);
        box-shadow: 0 15px 50px rgba(56, 189, 248, 0.25);
    }
    50% { 
        transform: translateY(-20px) scale(1.08);
        box-shadow: 0 20px 60px rgba(56, 189, 248, 0.35);
    }
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.step-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    transition: all 0.3s ease;
    animation: numberRotate 6s linear infinite;
}

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

.process-card:hover .step-number {
    transform: scale(1.2);
    box-shadow: 0 6px 25px rgba(56, 189, 248, 0.4);
    animation: numberGlow 1.5s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { 
        box-shadow: 0 6px 25px rgba(56, 189, 248, 0.4);
        transform: scale(1.2);
    }
    50% { 
        box-shadow: 0 10px 35px rgba(56, 189, 248, 0.6);
        transform: scale(1.3);
    }
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38BDF8;
    font-size: 1.3rem;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        box-shadow: 0 3px 10px rgba(56, 189, 248, 0.2);
    }
    50% { 
        transform: translateY(-3px) rotate(5deg);
        box-shadow: 0 6px 20px rgba(56, 189, 248, 0.3);
    }
}

.process-card:hover .step-icon {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
    animation: iconSpin 2s linear infinite;
}

@keyframes iconSpin {
    0% { transform: scale(1.1) rotate(0deg); }
    100% { transform: scale(1.1) rotate(360deg); }
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.step-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.process-card:hover .step-content h3 {
    color: #38BDF8;
    transform: translateY(-3px) scale(1.05);
}

.process-card:hover .step-content p {
    color: #475569;
    transform: translateY(-2px);
}

.step-bg-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: rgba(56, 189, 248, 0.03);
    opacity: 0.5;
    pointer-events: none;
    animation: bgIconFloat 5s ease-in-out infinite;
}

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

/* Process Flow */
.process-flow {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 1;
    pointer-events: none;
}

.flow-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(56, 189, 248, 0.3) 20%, 
        rgba(56, 189, 248, 0.3) 80%, 
        transparent 100%);
    transform: translateY(-50%);
}

.flow-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(56, 189, 248, 0.3);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transform: translateY(-50%);
}

.flow-arrow-1 {
    left: 32%;
}

.flow-arrow-2 {
    left: 52%;
}

.flow-arrow-3 {
    left: 72%;
}

/* Process CTA */
.process-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-lg:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
}

.btn-lg i {
    transition: all 0.3s ease;
}

.btn-lg:hover i {
    transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .flow-line {
        display: none;
    }
    
    .flow-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .process-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }
    
    .how-it-works {
        padding: 80px 0;
    }
    
    .btn-lg {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .step-header {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .process-card {
        padding: 1.5rem 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
}

/* Service Stats Section */
.service-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.service-stats .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-stats .stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.service-stats .stat-icon {
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.labs-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.lab-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.lab-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    color: var(--text-primary);
}

.lab-badge i {
    color: var(--primary-color);
}

.lab-status {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: blink 2s infinite;
}

.status-indicator.active {
    background: #10b981;
    box-shadow: 0 0 10px #10b981;
}

 /* Research Areas Section */
 .research-areas {
     padding: 100px 0;
     background: var(--bg-light);
 }

 .innovation-labs {
     padding: 100px 0;
     background: radial-gradient(1200px circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
                 radial-gradient(900px circle at 80% 10%, rgba(168, 85, 247, 0.14), transparent 60%),
                 linear-gradient(180deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.8) 100%);
     position: relative;
     overflow: hidden;
 }

 [data-theme="dark"] .innovation-labs {
     background: radial-gradient(1200px circle at 20% 20%, rgba(56, 189, 248, 0.18), transparent 55%),
                 radial-gradient(900px circle at 80% 10%, rgba(168, 85, 247, 0.14), transparent 60%),
                 linear-gradient(180deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%);
 }

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

 @media (max-width: 992px) {
     .innovation-grid {
         grid-template-columns: repeat(2, 1fr);
     }
 }

 @media (max-width: 600px) {
     .innovation-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
 }

 .innovation-card {
     position: relative;
     border-radius: 12px;
     padding: 2rem;
     background: rgba(255, 255, 255, 0.65);
     border: 1px solid rgba(56, 189, 248, 0.18);
     backdrop-filter: blur(16px);
     box-shadow: 0 12px 40px rgba(15, 23, 42, 0.12);
     transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
     overflow: hidden;
 }

 [data-theme="dark"] .innovation-card {
     background: rgba(30, 41, 59, 0.62);
     border: 1px solid rgba(255, 255, 255, 0.08);
     box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
 }

 .innovation-card::before {
     content: '';
     position: absolute;
     inset: 0;
     background: radial-gradient(600px circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(56, 189, 248, 0.22), transparent 45%);
     opacity: 0;
     transition: opacity 0.25s ease;
     pointer-events: none;
 }

 .innovation-card::after {
     content: '';
     position: absolute;
     inset: -1px;
     border-radius: 12px;
     padding: 1px;
     background: linear-gradient(135deg, rgba(56, 189, 248, 0.6), rgba(168, 85, 247, 0.45), rgba(14, 165, 233, 0.5));
     -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
     mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
     -webkit-mask-composite: xor;
     mask-composite: exclude;
     opacity: 0;
     transition: opacity 0.25s ease;
     pointer-events: none;
 }

 .innovation-card:hover {
     transform: translateY(-12px) scale(1.01);
     box-shadow: 0 22px 70px rgba(15, 23, 42, 0.22);
     border-color: rgba(56, 189, 248, 0.32);
 }

 .innovation-card:hover::before,
 .innovation-card:hover::after {
     opacity: 1;
 }

 .innovation-icon {
     width: 56px;
     height: 56px;
     border-radius: 14px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     box-shadow: 0 12px 30px rgba(2, 6, 23, 0.22);
     transition: transform 0.25s ease;
     margin-bottom: 1.25rem;
     margin-left: auto;
     margin-right: auto;
 }

 .innovation-card:hover .innovation-icon {
     transform: translateY(-2px) scale(1.12);
 }

 .innovation-icon i {
     transform: translateZ(0);
     transition: transform 0.25s ease;
 }

 .innovation-card:hover .innovation-icon i {
     transform: scale(1.06);
 }

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

 @keyframes innovation-tilt {
     0%, 100% { transform: rotate(0deg); }
     50% { transform: rotate(8deg); }
 }

 @keyframes innovation-pulse {
     0%, 100% { box-shadow: 0 12px 30px rgba(2, 6, 23, 0.22); }
     50% { box-shadow: 0 12px 36px rgba(56, 189, 248, 0.30); }
 }

 .innovation-icon {
     animation: innovation-float 3.2s ease-in-out infinite, innovation-pulse 3.2s ease-in-out infinite;
 }

 .icon-ai i { animation: innovation-tilt 2.8s ease-in-out infinite; }
 .icon-anim i { animation: innovation-tilt 2.2s ease-in-out infinite reverse; }
 .icon-speed i { animation: innovation-tilt 2.0s ease-in-out infinite; }

 @media (prefers-reduced-motion: reduce) {
     .innovation-icon,
     .icon-ai i,
     .icon-anim i,
     .icon-speed i {
         animation: none;
     }
 }

 .icon-iot { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
 .icon-ai { background: linear-gradient(135deg, #a855f7, #6366f1); }
 .icon-anim { background: linear-gradient(135deg, #22c55e, #38bdf8); }
 .icon-tools { background: linear-gradient(135deg, #f97316, #a855f7); }
 .icon-api { background: linear-gradient(135deg, #0ea5e9, #22c55e); }
 .icon-speed { background: linear-gradient(135deg, #f43f5e, #38bdf8); }

 .innovation-title {
     font-size: 1.35rem;
     font-weight: 600;
     margin-bottom: 0.75rem;
     color: var(--text-primary);
 }

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

 .innovation-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.6rem;
 }

 .innovation-card:hover .innovation-btn {
     filter: brightness(1.05);
 }

 .lab-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
 }

.lab-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.lab-header {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lab-icon-bg {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-gradient { background: linear-gradient(135deg, #667eea, #764ba2); }
.quantum-gradient { background: linear-gradient(135deg, #f093fb, #f5576c); }
.blockchain-gradient { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.arvr-gradient { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.security-gradient { background: linear-gradient(135deg, #fa709a, #fee140); }
.bio-gradient { background: linear-gradient(135deg, #30cfd0, #330867); }

.lab-status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.experimental { background: #fbbf24; color: #78350f; }
.theoretical { background: #a78bfa; color: #4c1d95; }
.production { background: #34d399; color: #064e3b; }
.prototype { background: #60a5fa; color: #1e3a8a; }
.secure { background: #f87171; color: #7f1d1d; }
.research { background: #34d399; color: #064e3b; }

.lab-content {
    padding: 2rem;
}

.lab-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lab-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.lab-equipment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.equipment-tag {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.research-points {
    list-style: none;
    margin-bottom: 2rem;
}

.research-points li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.research-points i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.lab-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.lab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

/* Equipment Showcase */
.equipment-showcase {
    padding: 100px 0;
    background: var(--bg-white);
}

.equipment-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.equipment-item {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.equipment-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(500px circle at 50% 10%, rgba(56, 189, 248, 0.18), transparent 50%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.equipment-item::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(168, 85, 247, 0.42), rgba(14, 165, 233, 0.55));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.equipment-item:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.22);
    border-color: rgba(56, 189, 248, 0.28);
}

.equipment-item:hover::before,
.equipment-item:hover::after {
    opacity: 1;
}

.equipment-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
    box-shadow: 0 14px 35px rgba(2, 6, 23, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    animation: equipment-float 3.4s ease-in-out infinite, equipment-pulse 3.4s ease-in-out infinite;
}

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

@keyframes equipment-pulse {
    0%, 100% { box-shadow: 0 14px 35px rgba(2, 6, 23, 0.18); }
    50% { box-shadow: 0 16px 45px rgba(56, 189, 248, 0.28); }
}

.equipment-item:hover .equipment-icon {
    transform: translateY(-2px) scale(1.08);
}

@media (prefers-reduced-motion: reduce) {
    .equipment-icon {
        animation: none;
    }
}

.equipment-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.25;
}

.equipment-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Research Results */
.research-results {
    padding: 100px 0;
    background: var(--bg-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.result-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(56, 189, 248, 0.12);
}

.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(650px circle at 50% 0%, rgba(56, 189, 248, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.result-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.55), rgba(168, 85, 247, 0.40), rgba(14, 165, 233, 0.55));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.result-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.18);
    border-color: rgba(56, 189, 248, 0.25);
}

.result-card:hover::before,
.result-card:hover::after {
    opacity: 1;
}

.result-card:hover h3 {
    color: var(--primary-color);
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

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

.result-category {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.breakthrough { background: #fef3c7; color: #92400e; }
.innovation { background: #dbeafe; color: #1e3a8a; }
.discovery { background: #d1fae5; color: #064e3b; }

.result-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.result-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.result-metrics {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.metric {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.result-card:hover .metric {
    border-color: rgba(56, 189, 248, 0.22);
}

.metric:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.30);
}

/* Lab Statistics */
.lab-statistics {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.lab-statistics .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lab-statistics .stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lab-statistics .stat-icon {
    opacity: 0.9;
}
.services-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.medical-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.medical-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-top: 2rem;
    color: var(--text-primary);
}

.medical-badge i {
    color: var(--primary-color);
}

/* Medical Services Section */
.medical-services {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.medical-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, #f0f8ff 100%);
}

.medical-icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-list i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Medical Process Section */
.medical-process {
    padding: 100px 0;
    background: var(--bg-white);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    flex-wrap: wrap;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: var(--bg-white);
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.process-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Medical Stats Section */
.medical-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-left: 50%;
    margin-left: calc(50% + 40px);
    width: calc(50% - 40px);
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(30px) scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-card p {
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .process-step {
        max-width: 300px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

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

/* Enhanced Developer Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.terminal-window {
    width: 90%;
    max-width: 900px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.terminal-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

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

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control.close {
    background: #ff5f56;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #27ca3f;
}

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.terminal-title {
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
}

.terminal-body {
    padding: 24px;
    min-height: 500px;
    position: relative;
    font-family: 'Courier New', monospace;
}

/* System Info Section */
.system-info {
    margin-bottom: 20px;
    padding: 16px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.info-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 12px;
}

.info-label {
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    color: #38BDF8;
    font-weight: bold;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #38BDF8;
    font-size: 14px;
}

.prompt {
    color: #38BDF8;
    margin-right: 8px;
    font-weight: bold;
}

.command {
    color: #FFFFFF;
    position: relative;
}

.cursor {
    color: #38BDF8;
    font-weight: bold;
    animation: blink 1s infinite;
}

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

.terminal-output {
    margin-bottom: 24px;
}

.output-line {
    color: #10b981;
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s forwards;
}

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

.progress-section {
    margin: 32px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-percent {
    color: #38BDF8;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    width: 0%;
    border-radius: 3px;
    transition: width 0.3s ease;
    box-shadow: 0 0 15px rgba(56, 189, 248, 0.7);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.6), transparent);
    animation: glow 2s infinite;
}

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

/* Network Activity Section */
.network-activity {
    margin: 24px 0;
    padding: 16px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
}

.network-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.network-title {
    color: #38BDF8;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-status {
    color: #10b981;
    font-size: 11px;
    font-weight: bold;
}

.network-bars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.network-bar {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bar-label {
    color: #94a3b8;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.network-bar .bar-fill {
    height: 3px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.upload .bar-fill {
    background: linear-gradient(90deg, #ef4444, #f87171);
}

.download .bar-fill {
    background: linear-gradient(90deg, #10b981, #34d399);
}

.bar-value {
    color: #38BDF8;
    font-size: 10px;
    font-weight: bold;
}

/* Security Scan Section */
.security-scan {
    margin: 24px 0;
    padding: 16px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.scan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.scan-title {
    color: #10b981;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scan-status {
    color: #10b981;
    font-size: 11px;
    font-weight: bold;
}

.scan-progress {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.scan-bar {
    width: 100%;
    height: 4px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.scan-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #34d399);
    width: 0%;
    border-radius: 2px;
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.7);
}

.scan-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scan-item {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0;
    transform: translateX(-10px);
    animation: scanItemAppear 0.5s forwards;
}

.scan-check {
    color: #10b981;
    font-weight: bold;
}

.scan-text {
    color: #94a3b8;
    font-size: 11px;
}

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

/* Performance Metrics Section */
.performance-metrics {
    margin: 24px 0;
    padding: 16px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.metrics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.metrics-title {
    color: #ef4444;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metrics-score {
    color: #ef4444;
    font-size: 11px;
    font-weight: bold;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(239, 68, 68, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.metric-icon {
    font-size: 16px;
}

.metric-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-name {
    color: #94a3b8;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-value {
    color: #ef4444;
    font-size: 11px;
    font-weight: bold;
}

/* Enhanced animations for new sections */
.network-activity, .security-scan, .performance-metrics {
    opacity: 0;
    transform: translateY(20px);
    animation: sectionAppear 0.8s forwards;
}

.network-activity {
    animation-delay: 1.5s;
}

.security-scan {
    animation-delay: 2s;
}

.performance-metrics {
    animation-delay: 2.5s;
}

@keyframes sectionAppear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.system-status {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.status-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-label {
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-bar {
    width: 100%;
    height: 4px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.status-fill {
    height: 100%;
    width: 0%;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.cpu-fill {
    background: linear-gradient(90deg, #ef4444, #f87171);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.ram-fill {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.gpu-fill {
    background: linear-gradient(90deg, #10b981, #34d399);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

.status-value {
    color: #38BDF8;
    font-size: 11px;
    font-weight: bold;
    text-align: right;
}

/* Loading Modules */
.loading-modules {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.module-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(56, 189, 248, 0.1);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.module-item.loading {
    opacity: 1;
    border-color: rgba(56, 189, 248, 0.3);
    background: rgba(56, 189, 248, 0.1);
}

.module-item.loaded {
    opacity: 1;
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.05);
}

.module-icon {
    font-size: 16px;
}

.module-name {
    flex: 1;
    color: #94a3b8;
    font-size: 12px;
}

.module-status {
    color: #38BDF8;
    font-size: 11px;
    font-weight: bold;
}

.module-item.loaded .module-status {
    color: #10b981;
}

/* Code Animation */
.code-animation {
    margin: 24px 0;
    font-size: 12px;
    color: #64748b;
}

.code-line {
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(10px);
    animation: codeAppear 0.5s forwards;
}

.code-line.keyword {
    color: #c084fc;
}

.code-line.function {
    color: #38BDF8;
}

.code-line.string {
    color: #10b981;
}

.code-line.comment {
    color: #64748b;
    font-style: italic;
}

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

/* Binary Background */
.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

.binary-line {
    position: absolute;
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    white-space: nowrap;
    animation: binaryFall 10s linear infinite;
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Matrix Rain Effect */
.matrix-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.3;
    pointer-events: none;
}

.matrix-column {
    position: absolute;
    top: -100%;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #10b981;
    white-space: nowrap;
    animation: matrixFall 8s linear infinite;
}

@keyframes matrixFall {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

/* Enhanced Floating Symbols */
.floating-symbols {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.symbol {
    position: absolute;
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    opacity: 0;
    animation: float 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

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

.symbol:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.symbol:nth-child(3) {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
}

.symbol:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.symbol:nth-child(5) {
    top: 10%;
    left: 40%;
    animation-delay: 4s;
}

.symbol:nth-child(6) {
    top: 70%;
    left: 70%;
    animation-delay: 5s;
}

.symbol:nth-child(7) {
    top: 45%;
    left: 15%;
    animation-delay: 1.5s;
}

.symbol:nth-child(8) {
    top: 25%;
    left: 85%;
    animation-delay: 2.5s;
}

.symbol:nth-child(9) {
    top: 55%;
    left: 45%;
    animation-delay: 3.5s;
}

.symbol:nth-child(10) {
    top: 35%;
    left: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(0) rotate(0deg);
    }
    25% {
        opacity: 0.4;
        transform: translateY(-15px) rotate(90deg);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-25px) rotate(180deg);
    }
    75% {
        opacity: 0.4;
        transform: translateY(-15px) rotate(270deg);
    }
}

/* Enhanced Welcome Message */
.welcome-message {
    text-align: center;
    margin-top: 32px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.welcome-message.show {
    opacity: 1;
    transform: scale(1);
}

.welcome-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.welcome-line {
    color: #38BDF8;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.ready-check {
    color: #10b981;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.system-stats-final {
    display: flex;
    gap: 16px;
    margin-top: 8px;
    font-size: 12px;
    color: #94a3b8;
}

.system-stats-final span {
    padding: 4px 8px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(56, 189, 248, 0.2);
}

/* Grid lines background */
.terminal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Preloader fade out */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-window {
        width: 95%;
        margin: 20px;
    }
    
    .terminal-body {
        padding: 16px;
        min-height: 400px;
    }
    
    .terminal-title {
        font-size: 12px;
    }
    
    .command, .terminal-line {
        font-size: 12px;
    }
    
    .system-status {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .loading-modules {
        grid-template-columns: 1fr;
    }
    
    .welcome-line {
        font-size: 16px;
    }
    
    .system-stats-final {
        flex-direction: column;
        gap: 8px;
    }
    
    .symbol {
        font-size: 12px;
    }
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
}

.terminal-window {
    width: 90%;
    max-width: 800px;
    background: rgba(15, 23, 42, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 100px rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.terminal-header {
    background: rgba(30, 41, 59, 0.8);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(56, 189, 248, 0.1);
}

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

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control.close {
    background: #ff5f56;
}

.control.minimize {
    background: #ffbd2e;
}

.control.maximize {
    background: #27ca3f;
}

.control:hover {
    transform: scale(1.2);
    box-shadow: 0 0 10px currentColor;
}

.terminal-title {
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    font-weight: 600;
}

.terminal-body {
    padding: 24px;
    min-height: 400px;
    position: relative;
    font-family: 'Courier New', monospace;
}

.terminal-line {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: #38BDF8;
    font-size: 14px;
}

.prompt {
    color: #38BDF8;
    margin-right: 8px;
    font-weight: bold;
}

.command {
    color: #FFFFFF;
    position: relative;
}

.cursor {
    color: #38BDF8;
    font-weight: bold;
    animation: blink 1s infinite;
}

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

.terminal-output {
    margin-bottom: 24px;
}

.output-line {
    color: #10b981;
    font-size: 13px;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s forwards;
}

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

.progress-section {
    margin: 32px 0;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-percent {
    color: #38BDF8;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    width: 0%;
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.5);
}

.progress-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.4), transparent);
    animation: glow 2s infinite;
}

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

.code-animation {
    margin: 24px 0;
    font-size: 12px;
    color: #64748b;
}

.code-line {
    margin-bottom: 6px;
    opacity: 0;
    transform: translateY(10px);
    animation: codeAppear 0.5s forwards;
}

.code-line.keyword {
    color: #c084fc;
}

.code-line.function {
    color: #38BDF8;
}

.code-line.string {
    color: #10b981;
}

.code-line.comment {
    color: #64748b;
    font-style: italic;
}

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

.binary-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

.binary-line {
    position: absolute;
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 10px;
    white-space: nowrap;
    animation: binaryFall 10s linear infinite;
}

@keyframes binaryFall {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

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

.symbol {
    position: absolute;
    color: #38BDF8;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    opacity: 0;
    animation: float 6s ease-in-out infinite;
}

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

.symbol:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.symbol:nth-child(3) {
    top: 30%;
    left: 60%;
    animation-delay: 2s;
}

.symbol:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.symbol:nth-child(5) {
    top: 10%;
    left: 40%;
    animation-delay: 4s;
}

.symbol:nth-child(6) {
    top: 70%;
    left: 70%;
    animation-delay: 5s;
}

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

.welcome-message {
    text-align: center;
    margin-top: 32px;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.welcome-message.show {
    opacity: 1;
    transform: scale(1);
}

.welcome-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.welcome-line {
    color: #38BDF8;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.ready-check {
    color: #10b981;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Grid lines background */
.terminal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

/* Preloader fade out */
.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .terminal-window {
        width: 95%;
        margin: 20px;
    }
    
    .terminal-body {
        padding: 16px;
        min-height: 300px;
    }
    
    .terminal-title {
        font-size: 12px;
    }
    
    .command, .terminal-line {
        font-size: 12px;
    }
    
    .welcome-line {
        font-size: 16px;
    }
    
    .symbol {
        font-size: 12px;
    }
}
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.logo-animation h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.progress-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: white;
    border-radius: 2px;
    animation: progress 2s ease-in-out infinite;
}

.loading-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

@keyframes progress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #38BDF8 50%, #667eea 75%, #764ba2 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.15; /* Increased opacity for better visibility */
}

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

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle:nth-child(2) {
    width: 6px;
    height: 6px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(3) {
    width: 3px;
    height: 3px;
    left: 35%;
    animation-delay: 4s;
    animation-duration: 30s;
}

.particle:nth-child(4) {
    width: 5px;
    height: 5px;
    left: 50%;
    animation-delay: 6s;
    animation-duration: 22s;
}

.particle:nth-child(5) {
    width: 4px;
    height: 4px;
    left: 65%;
    animation-delay: 8s;
    animation-duration: 28s;
}

.particle:nth-child(6) {
    width: 6px;
    height: 6px;
    left: 80%;
    animation-delay: 10s;
    animation-duration: 25s;
}

.particle:nth-child(7) {
    width: 3px;
    height: 3px;
    left: 90%;
    animation-delay: 12s;
    animation-duration: 20s;
}

.particle:nth-child(8) {
    width: 5px;
    height: 5px;
    left: 95%;
    animation-delay: 14s;
    animation-duration: 30s;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
    }
    100% {
        transform: translateY(-100px) translateX(100px);
    }
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.1;
    filter: blur(40px);
    animation: shapeFloat 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 40px;
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 20px 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    z-index: -1;
    border-radius: 0 0 20px 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 60px;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 80px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.25);
    font-weight: 600;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .nav-link {
    color: var(--text-primary);
    text-shadow: none;
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
    text-shadow: none;
}

.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.15);
    text-shadow: none;
}

.nav-work-with-me {
    display: flex;
    align-items: center;
    margin-left: 50px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 10px 30px;
    }
    
    .nav-logo {
        margin-right: 60px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-work-with-me {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 8px 20px;
    }
    
    .nav-logo {
        margin-right: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        text-align: center;
    }
    
    .nav-work-with-me {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    margin-right: 80px;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(56, 189, 248, 0.1);
    transform: translateY(-2px);
}

.nav-work-with-me {
    display: flex;
    align-items: center;
    margin-left: 50px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 15px 30px;
    }
    
    .nav-logo {
        margin-right: 60px;
    }
    
    .nav-menu {
        gap: 20px;
    }
    
    .nav-work-with-me {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .nav-logo {
        margin-right: auto;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        text-align: center;
    }
    
    .nav-work-with-me {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

.nav-logo h2 {
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

/* Logo Styles - Added for all pages */
.logo-img {
    height: 60px;
    width: 60px;
    margin-right: 15px;
    vertical-align: middle;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
}

.logo-img:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.5);
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(56, 189, 248, 0.8));
}

.nav-logo {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 0;
    padding-left: 0;
}

.nav-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.nav-logo:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.nav-logo:hover h2 {
    transform: translateX(5px);
    filter: brightness(1.3);
}

/* Responsive Design for Logo */
@media (max-width: 768px) {
    .logo-img {
        height: 45px;
        width: 45px;
        margin-right: 12px;
    }
    
    .nav-logo h2 {
        font-size: 1.2rem;
    }
    
    .nav-logo::before {
        width: 60px;
        height: 60px;
    }
    
    .nav-logo:hover::before {
        transform: translate(-50%, -50%) scale(1.3);
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
        width: 40px;
        margin-right: 10px;
    }
    
    .nav-logo h2 {
        font-size: 1.1rem;
    }
    
    .nav-logo::before {
        width: 50px;
        height: 50px;
    }
}

/* Footer Logo Styles - Added for all pages */
.footer-logo-img {
    height: 80px;
    width: 80px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(56, 189, 248, 0.3);
    cursor: pointer;
}

.footer-logo-img:hover {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(56, 189, 248, 0.8));
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.footer-logo:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.8);
}

.footer-logo:hover h3 {
    transform: translateY(-5px);
    filter: brightness(1.4);
    transition: all 0.3s ease;
}

.footer-logo:hover p {
    transform: translateY(-3px);
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Footer link styles */
.footer-email-link {
    color: #38BDF8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-email-link:hover {
    color: #0EA5E9;
    transform: translateY(-2px);
    display: inline-block;
}

.footer-phone-link {
    color: #38BDF8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-phone-link:hover {
    color: #0EA5E9;
    transform: translateY(-2px);
    display: inline-block;
}

.footer-whatsapp-link {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-whatsapp-link:hover {
    color: #128C7E;
    text-decoration: underline;
    transform: translateY(-2px);
    display: inline-block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.2rem;
}

/* Remove navbar underline completely */
.nav-link::after {
    display: none !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    display: none !important;
}

/* Ensure only navbar links have underline - prevent global conflicts */
.nav-menu .nav-link::after {
    display: none !important;
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    display: none !important;
}

/* Remove all pseudo-elements from non-navbar links */
a:not(.nav-link)::before,
a:not(.nav-link)::after {
    display: none !important;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

/* Enhanced Hero Section Styles */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
}

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

.hero-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: meshMove 20s linear infinite;
    z-index: 2;
}

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

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
}

.hero-particle:nth-child(1) { left: 10%; animation: particleFloat 15s linear infinite; }
.hero-particle:nth-child(2) { left: 25%; animation: particleFloat 18s linear infinite 2s; }
.hero-particle:nth-child(3) { left: 40%; animation: particleFloat 12s linear infinite 4s; }
.hero-particle:nth-child(4) { left: 60%; animation: particleFloat 20s linear infinite 1s; }
.hero-particle:nth-child(5) { left: 75%; animation: particleFloat 16s linear infinite 3s; }
.hero-particle:nth-child(6) { left: 90%; animation: particleFloat 14s linear infinite 5s; }

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

.hero-particles-network {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.network-line-1, .network-line-2, .network-line-3, .network-line-4,
.network-line-5, .network-line-6, .network-line-7, .network-line-8,
.network-line-9, .network-line-10, .network-line-11, .network-line-12 {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    animation: networkPulse 3s ease-in-out infinite;
}

.network-line-1 { width: 100px; top: 20%; left: 10%; animation-delay: 0s; }
.network-line-2 { width: 150px; top: 40%; left: 70%; animation-delay: 0.5s; }
.network-line-3 { width: 120px; top: 60%; left: 20%; animation-delay: 1s; }
.network-line-4 { width: 180px; top: 30%; left: 50%; animation-delay: 1.5s; }
.network-line-5 { width: 140px; top: 70%; left: 60%; animation-delay: 2s; }
.network-line-6 { width: 160px; top: 25%; left: 30%; animation-delay: 2.5s; }
.network-line-7 { width: 130px; top: 55%; left: 80%; animation-delay: 0.3s; }
.network-line-8 { width: 170px; top: 35%; left: 15%; animation-delay: 0.8s; }
.network-line-9 { width: 110px; top: 65%; left: 45%; animation-delay: 1.3s; }
.network-line-10 { width: 145px; top: 45%; left: 25%; animation-delay: 1.8s; }
.network-line-11 { width: 125px; top: 75%; left: 55%; animation-delay: 2.3s; }
.network-line-12 { width: 155px; top: 15%; left: 65%; animation-delay: 2.8s; }

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

.particle-1, .particle-2, .particle-3, .particle-4 {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #38BDF8;
    border-radius: 50%;
    box-shadow: 0 0 20px #38BDF8;
    animation: nodeGlow 2s ease-in-out infinite;
}

.particle-1 { top: 25%; left: 20%; animation-delay: 0s; }
.particle-2 { top: 45%; left: 60%; animation-delay: 0.5s; }
.particle-3 { top: 65%; left: 35%; animation-delay: 1s; }
.particle-4 { top: 35%; left: 75%; animation-delay: 1.5s; }

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

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.1);
    z-index: 5;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation: float 25s ease-in-out infinite 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 30%;
    animation: float 18s ease-in-out infinite 10s;
}

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

.rotating-ring {
    position: absolute;
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    z-index: 5;
}

.ring-1 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 60%;
    animation: rotate 15s linear infinite;
}

.ring-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 20%;
    animation: rotate 20s linear infinite reverse;
}

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

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 100vh;
}

.hero-content-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

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

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.availability-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.availability-badge span {
    color: #38BDF8;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
    white-space: nowrap;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
}

.typing-text {
    color: #FFFFFF !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-block !important;
}

.gradient-text {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: #38BDF8 !important;
    opacity: 1 !important;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 2.5rem;
    max-width: 500px;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.btn-primary {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #38BDF8;
    border: 2px solid #38BDF8;
}

.btn-secondary:hover {
    background: #38BDF8;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

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

.btn:hover .water-fill {
    left: 100%;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-video-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInRight 1s ease-out 0.8s forwards;
}

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

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #1e293b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border-radius: 20px;
    pointer-events: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(56, 189, 248, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.2rem;
}

.video-play-button:hover {
    background: #38BDF8;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .video-container {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .video-container {
        max-width: 300px;
    }
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-white);
}

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

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%);
    animation: gradientShift 10s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background: linear-gradient(135deg, #0F172A 0%, #1e293b 50%, #0F172A 100%); }
    50% { background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%); }
}

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

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.1);
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    left: 60%;
    animation-delay: 15s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    right: 20%;
    animation-delay: 7s;
}

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

.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(56, 189, 248, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.4);
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 85%; animation-delay: 7s; }
.particle:nth-child(10) { left: 90%; animation-delay: 9s; }
.particle:nth-child(11) { left: 95%; animation-delay: 11s; }
.particle:nth-child(12) { left: 15%; animation-delay: 13s; }

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

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(56, 189, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 189, 248, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.light-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
    filter: blur(60px);
    animation: glowPulse 8s ease-in-out infinite;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    display: flex;
    align-items: center;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.title-line {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.title-line.revealed {
    opacity: 1;
    transform: translateY(0);
}

.hero-subtitle {
    margin-bottom: 1.5rem;
}

.typing-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.static-text {
    color: var(--text-primary);
}

.typing-text {
    position: relative;
}

.cursor {
    animation: blink 1s infinite;
}

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

.hero-text {
    opacity: 1;
    visibility: visible;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
}

.magnetic-btn {
    position: relative;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 1;
    visibility: visible;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.tech-stack {
    margin-top: 2rem;
    opacity: 1;
    visibility: visible;
}

.tech-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-icons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 1;
    visibility: visible;
}

.tech-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.tech-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
    border-color: var(--primary-color);
}

.tech-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border: 1px solid var(--glass-border);
}

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

.floating-icon {
    animation: iconFloat 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1s; }
.floating-icon:nth-child(3) { animation-delay: 2s; }
.floating-icon:nth-child(4) { animation-delay: 3s; }
.floating-icon:nth-child(5) { animation-delay: 4s; }
.floating-icon:nth-child(6) { animation-delay: 5s; }

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

.hero-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
}

.image-glow-border {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    animation: borderRotate 8s linear infinite;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-white);
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    animation: imageZoom 8s ease-in-out infinite;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border-radius: 50%;
}

.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(56, 189, 248, 0.2);
}

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

.css-icon {
    top: 20%;
    right: -15%;
    animation: techFloat 8s ease-in-out infinite 2s;
}

.js-icon {
    bottom: 15%;
    left: -10%;
    animation: techFloat 8s ease-in-out infinite 4s;
}

.php-icon {
    bottom: 25%;
    right: -10%;
    animation: techFloat 8s ease-in-out infinite 6s;
}

.java-icon {
    top: 50%;
    left: -20%;
    animation: techFloat 8s ease-in-out infinite 1s;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10;
}

.scroll-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .tech-icons {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .typing-container {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .magnetic-btn {
        width: 200px;
        justify-content: center;
    }
    
    .hero-image-container {
        width: 300px;
        height: 300px;
    }
    
    .tech-icons {
        gap: 1rem;
    }
    
    .tech-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span {
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    color: white;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.btn i {
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 2;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 350px;
    height: 350px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.image-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid var(--primary-color);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: cardFloat 3s ease-in-out infinite;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.floating-card p {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* Quick Info Section */
.quick-info {
    padding: 80px 0;
    background: var(--bg-white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

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

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.info-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--glass-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 2rem;
        transition: var(--transition);
    }

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

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .image-wrapper {
        width: 280px;
        height: 280px;
    }

    .floating-card {
        top: -10px;
        right: 20px;
    }

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

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .image-wrapper {
        width: 220px;
        height: 220px;
    }

    .floating-card {
        display: none;
    }
}

/* Utility Classes */
.reveal-text {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-card.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Animation on scroll instead of initial load */
@media (prefers-reduced-motion: no-preference) {
    .reveal-text.animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        animation: revealContent 1s ease-out forwards;
    }
    
    .reveal-card.animate-on-scroll {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        animation: revealContent 1s ease-out forwards;
    }
}

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

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }
.mt-5 { margin-top: 5rem; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }
.mb-5 { margin-bottom: 5rem; }

/* About Page Styles */
.about-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Page Headings - Black Color with Effects */
.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 2px;
    transition: width 0.8s ease;
}

.page-title:hover::after {
    width: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000000 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 1px;
    transition: width 0.6s ease;
}

.section-title:hover::after {
    width: 80%;
}

/* Heading hover effects */
.page-title:hover,
.section-title:hover {
    transform: translateY(-2px);
    transition: all 0.3s ease;
    color: #1a1a1a !important;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.intro-subtitle {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 500;
}

.intro-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.intro-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1rem;
    color: var(--text-secondary);
}

.intro-image {
    position: relative;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
}

.profile-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-color);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.3;
}

/* Skills Section */
.skills-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.skill-category h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.skill-name {
    font-weight: 500;
    color: var(--text-primary);
}

.skill-percentage {
    font-weight: 600;
    color: var(--primary-color);
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.skill-fill {
    height: 100%;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 5px;
    width: 0;
    transition: width 2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    overflow: hidden;
    display: block !important;
}

/* Professional Journey Section - Blur to Reveal Animations */
.experience-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #38BDF8, #0EA5E9);
    transform: translateX(-50%);
    opacity: 0.6;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 4px var(--glass-border);
    z-index: 2;
}

.timeline-content {
    width: calc(50% - 40px);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: calc(50% + 40px);
    margin-right: 0;
    width: calc(50% - 40px);
    transform: translateX(30px) scale(0.8);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: calc(50% + 40px);
    width: calc(50% - 40px);
    transform: translateX(-30px) scale(0.8);
}

.timeline-item:nth-child(even).reveal .timeline-content {
    transform: translateX(0) scale(1);
}

/* Enhanced Hover Effects */
.timeline-content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 20px;
    padding: 2rem;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transform-origin: center bottom;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
}

.timeline-content:hover {
    transform: translateY(-20px) scale(1.04);
    border-color: rgba(56, 189, 248, 0.7);
    box-shadow: 
        0 30px 60px rgba(56, 189, 248, 0.4),
        0 0 30px rgba(56, 189, 248, 0.2);
    background: rgba(255, 255, 255, 1);
    z-index: 10;
    position: relative;
}

.timeline-content:hover::before {
    left: 100%;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.timeline-content:hover::after {
    opacity: 1;
}

/* Ensure content stays above hover effects */
.timeline-date,
.timeline-content h3,
.timeline-content p,
.timeline-achievements {
    position: relative;
    z-index: 2;
}

/* Enhanced marker animation on hover */
.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 1;
    transform: translateX(-50%) scale(1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
}

.timeline-content:hover ~ .timeline-marker,
.timeline-item:hover .timeline-marker {
    transform: translateX(-50%) scale(1.4);
    box-shadow: 0 0 0 12px rgba(56, 189, 248, 0.15);
    border-color: rgba(56, 189, 248, 0.9);
    background: linear-gradient(135deg, #0EA5E9, #38BDF8);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
        width: calc(100% - 80px) !important;
        transform: translateX(30px) scale(0.8) !important;
    }
    
    .timeline-item:nth-child(even).reveal .timeline-content,
    .timeline-item:nth-child(odd).reveal .timeline-content {
        transform: translateX(0) scale(1) !important;
    }
    
    .timeline-content:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
}

.timeline-date {
    font-size: 0.9rem;
    color: #38BDF8;
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1E293B;
    opacity: 1 !important;
    visibility: visible !important;
}

.timeline-content p {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.timeline-achievements {
    list-style: none;
    padding: 0;
    opacity: 1 !important;
    visibility: visible !important;
}

.timeline-achievements li {
    position: relative;
    padding-left: 1.5rem;
    color: #475569;
    margin-bottom: 0.5rem;
    opacity: 1 !important;
    visibility: visible !important;
}

.timeline-achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Education Section */
.education-section {
    padding: 80px 0;
    background: #ffffff; /* White background */
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.education-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
    border: 2px solid rgba(56, 189, 248, 0.2);
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.education-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(56, 189, 248, 0.1),
        transparent,
        rgba(14, 165, 233, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.education-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(56, 189, 248, 0.25),
        0 0 0 2px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
}

.education-card:hover::before {
    opacity: 1;
    animation: educationShimmer 0.6s ease;
}

@keyframes educationShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.education-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(56, 189, 248, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.education-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.education-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.education-card:hover .education-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 
        0 15px 40px rgba(56, 189, 248, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.4);
    animation: educationIconGlow 1.5s ease-in-out infinite;
}

.education-card:hover .education-icon::before {
    opacity: 1;
    animation: educationIconShimmer 2s linear infinite;
}

.education-card:hover .education-icon i {
    transform: scale(1.3);
    animation: educationIconPulse 1s ease-in-out infinite;
}

@keyframes educationIconGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 40px rgba(56, 189, 248, 0.5),
            inset 0 3px 6px rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 20px 50px rgba(56, 189, 248, 0.7),
            inset 0 3px 8px rgba(255, 255, 255, 0.6);
    }
}

@keyframes educationIconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes educationIconPulse {
    0%, 100% { transform: scale(1.3); }
    50% { transform: scale(1.5); }
}

.education-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000000 !important;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.education-card h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.education-card:hover h3 {
    color: #38BDF8 !important;
    transform: translateY(-3px) scale(1.05);
}

.education-card:hover h3::before {
    width: 80%;
}

.education-school {
    font-size: 1.1rem;
    color: #38BDF8 !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover .education-school {
    transform: translateY(-2px);
    font-weight: 600;
}

.education-date {
    font-size: 0.9rem;
    color: #4a4a4a !important;
    margin-bottom: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover .education-date {
    color: #2a2a2a !important;
    transform: translateY(-1px);
}

.education-description {
    color: #4a4a4a !important;
    line-height: 1.6;
    text-align: center;
    transition: all 0.3s ease;
}

.education-card:hover .education-description {
    color: #2a2a2a !important;
    transform: translateY(-2px);
    font-weight: 500;
}

.services-bottom-text {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
}

.bottom-text-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.text-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.text-item i {
    font-size: 1.2rem;
    color: #38BDF8;
    transition: all 0.3s ease;
}

.text-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
}

.text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.2);
    border-color: rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.1));
}

.text-item:hover i {
    transform: scale(1.2);
    color: #0EA5E9;
}

.text-item:hover span {
    color: #38BDF8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .bottom-text-content {
        gap: 2rem;
    }
    
    .text-item {
        padding: 0.8rem 1.5rem;
        gap: 0.6rem;
    }
    
    .text-item i {
        font-size: 1rem;
    }
    
    .text-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .bottom-text-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .text-item {
        width: 100%;
        justify-content: center;
    }
}

/* Plan Notes */
.plan-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 10px;
    border-left: 3px solid #38BDF8;
}

.plan-note p {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
    font-size: 0.9rem;
}

.plan-note p strong {
    color: #38BDF8;
}

.plan-note small {
    color: #6a6a6a;
    font-size: 0.8rem;
}

/* Women Entrepreneurs Discount */
.women-discount {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 192, 203, 0.1), rgba(255, 182, 193, 0.05));
    border: 2px solid rgba(255, 192, 203, 0.3);
    border-radius: 20px;
    text-align: center;
}

.discount-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.discount-icon {
    text-align: center;
}

.discount-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.discount-icon h3 {
    color: #d63384;
    margin-bottom: 0;
    font-size: 1.5rem;
}

.discount-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.discount-details li {
    color: #4a4a4a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.discount-details i {
    color: #d63384;
}

.btn-discount {
    background: linear-gradient(135deg, #d63384, #c7366f);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-discount:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(214, 51, 132, 0.3);
}

/* Pricing Notes */
.pricing-notes {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(56, 189, 248, 0.05);
    border-radius: 20px;
    text-align: center;
}

.pricing-notes h3 {
    color: #38BDF8;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.note-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.note-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.note-item i {
    font-size: 1.5rem;
    color: #38BDF8;
    min-width: 30px;
}

.note-item p {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.9rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
    .discount-content {
        flex-direction: column;
        text-align: center;
    }
    
    .discount-details ul {
        text-align: center;
    }
    
    .notes-grid {
        grid-template-columns: 1fr;
    }
    
    .note-item {
        flex-direction: column;
        text-align: center;
    }
    
    .note-item p {
        text-align: center;
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

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

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Specializations Page Styles */
.specializations-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.specializations-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-card:hover {
    transform: translateY(-20px) scale(1.05);
    box-shadow: 0 25px 50px rgba(56, 189, 248, 0.4);
    background: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    position: relative;
}

/* Popup Background Blur Effect - REMOVED */
.service-card:hover::after {
    display: none; /* Remove blur background */
}

/* Enhanced popup animation */
.service-card {
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(56, 189, 248, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-icon i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 
        0 15px 40px rgba(56, 189, 248, 0.5),
        inset 0 3px 6px rgba(255, 255, 255, 0.4);
    animation: iconGlow 1.5s ease-in-out infinite;
}

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

.service-card:hover .service-icon i {
    transform: scale(1.2);
    animation: iconPulse 1s ease-in-out infinite;
}

@keyframes iconGlow {
    0%, 100% { 
        box-shadow: 
            0 15px 40px rgba(56, 189, 248, 0.5),
            inset 0 3px 6px rgba(255, 255, 255, 0.4);
    }
    50% { 
        box-shadow: 
            0 20px 50px rgba(56, 189, 248, 0.7),
            inset 0 3px 8px rgba(255, 255, 255, 0.6);
    }
}

@keyframes iconShimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1.2); }
    50% { transform: scale(1.4); }
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-btn {
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.3);
}

.service-btn i {
    transition: var(--transition);
}

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

/* Process Section */
.process-section {
    padding: 100px 0 150px; /* Added bottom padding for gap */
    background: #ffffff; /* Changed to white permanently */
    cursor: none; /* Hide default cursor */
    margin-bottom: 50px; /* Extra gap below */
}

.process-timeline {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    perspective: 1500px;
    padding: 50px 0;
}

/* Custom Cursor */
.process-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease;
    opacity: 0;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.6);
}

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

/* Process Steps - Fan Style Layout with Enhanced Fluidity */
.process-step {
    position: absolute;
    opacity: 1 !important;
    transform-origin: bottom center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother cubic-bezier */
    cursor: none;
    z-index: 1;
    will-change: transform; /* Optimize for animations */
}

/* Auto-hover effect for smooth animations */
.process-step.auto-hover {
    z-index: 10;
    transform: rotate(0deg) translateY(-120px) scale(1.2);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth bounce effect */
}

/* Fan positioning for cards - Better spacing */
.process-step:nth-child(1) {
    transform: rotate(-75deg) translateY(-30px) translateX(-250px);
    transition-delay: 0.1s;
}

.process-step:nth-child(2) {
    transform: rotate(-45deg) translateY(-20px) translateX(-150px);
    transition-delay: 0.2s;
}

.process-step:nth-child(3) {
    transform: rotate(-15deg) translateY(-10px) translateX(-50px);
    transition-delay: 0.3s;
}

.process-step:nth-child(4) {
    transform: rotate(15deg) translateY(-10px) translateX(50px);
    transition-delay: 0.4s;
}

.process-step:nth-child(5) {
    transform: rotate(45deg) translateY(-20px) translateX(150px);
    transition-delay: 0.5s;
}

.process-step:nth-child(6) {
    transform: rotate(75deg) translateY(-30px) translateX(250px);
    transition-delay: 0.6s;
}

/* Hover effects for fan layout - Enhanced fluidity */
.process-step:hover {
    z-index: 10;
    transform: rotate(0deg) translateY(-120px) scale(1.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1); /* Smooth bounce effect */
}

.process-step:nth-child(1):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.process-step:nth-child(2):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.process-step:nth-child(3):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.process-step:nth-child(4):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.process-step:nth-child(5):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.process-step:nth-child(6):hover {
    transform: rotate(0deg) translateY(-120px) scale(1.2);
}

.step-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)) !important;
    backdrop-filter: none; /* Removed blur effect */
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 24px;
    padding: 1.8rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: center !important;
    visibility: visible !important;
    width: 300px !important;
    height: 340px !important;
    min-height: 340px !important;
    max-height: 340px !important;
    box-shadow: 
        0 15px 35px rgba(56, 189, 248, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform-style: preserve-3d;
}

/* Amazing Hover Background Effect */
.step-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(56, 189, 248, 0.1),
        transparent,
        rgba(14, 165, 233, 0.1),
        transparent,
        rgba(56, 189, 248, 0.05),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

/* Animated Border Effect */
.step-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(45deg, #38BDF8, #0EA5E9, #38BDF8, #0EA5E9);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    animation: borderRotate 3s linear infinite;
}

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

.step-content:hover {
    transform: translateY(-20px) scale(1.05) rotateX(-5deg);
    box-shadow: 
        0 35px 70px rgba(56, 189, 248, 0.3),
        0 0 0 3px rgba(56, 189, 248, 0.4),
        0 0 80px rgba(56, 189, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(56, 189, 248, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
}

.step-content:hover::before {
    opacity: 1;
    animation: shimmer 1s ease;
}

.step-content:hover::after {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Step Number - Enhanced Hover Effects */
.step-content .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 
        0 6px 20px rgba(56, 189, 248, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.step-content .step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9, #38BDF8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: numberRotate 3s linear infinite;
}

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

.step-content:hover .step-number {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 
        0 15px 40px rgba(56, 189, 248, 0.6),
        inset 0 3px 6px rgba(255, 255, 255, 0.4),
        0 0 30px rgba(56, 189, 248, 0.4);
}

.step-content:hover .step-number::before {
    opacity: 0.4;
    animation: numberGlow 1s ease-in-out infinite;
}

@keyframes numberGlow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.1; }
}

/* Title Hover Effects */
.step-content h3 {
    color: #000000 !important;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    transition: all 0.4s ease;
    display: block !important;
    visibility: visible !important;
    text-align: center !important;
    width: 100% !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-content h3::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.step-content:hover h3 {
    color: #38BDF8 !important;
    transform: translateY(-5px) scale(1.08);
    text-shadow: 0 6px 12px rgba(56, 189, 248, 0.4);
}

.step-content:hover h3::before {
    width: 80%;
}

/* Description Hover Effects */
.step-content p {
    color: #4a4a4a !important;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    display: block !important;
    visibility: visible !important;
    height: 100px;
    overflow: hidden;
    text-align: center !important;
    width: 100% !important;
    font-weight: 500;
    flex-grow: 1;
}

.step-content:hover p {
    color: #2a2a2a !important;
    transform: translateY(-3px);
    font-weight: 600;
}

/* Progress Indicator - Enhanced */
.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    border-radius: 0 0 24px 24px;
    transition: width 1s ease;
    width: 0;
    box-shadow: 0 0 10px rgba(56, 189, 248, 0.3);
}

.step-content:hover .step-progress {
    width: 100%;
    animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(56, 189, 248, 0.3); }
    50% { box-shadow: 0 0 25px rgba(56, 189, 248, 0.6); }
}

/* Icon - Enhanced Hover Effects */
.step-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.15), rgba(14, 165, 233, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38BDF8;
    font-size: 1rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.8) rotate(-15deg);
    border: 2px solid rgba(56, 189, 248, 0.2);
}

.step-content:hover .step-icon {
    opacity: 1;
    transform: scale(1.2) rotate(0deg) translateX(-5px);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.3), rgba(14, 165, 233, 0.3));
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4);
    animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: scale(1.2) rotate(0deg) translateX(-5px) translateY(0); }
    50% { transform: scale(1.2) rotate(5deg) translateX(-5px) translateY(-3px); }
}

/* Floating Particles - Enhanced */
.step-content::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 3px;
    height: 3px;
    background: #38BDF8;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 
        15px 8px 0 #0EA5E9,
        30px 4px 0 #38BDF8,
        12px 20px 0 #0EA5E9,
        28px 16px 0 #38BDF8,
        45px 12px 0 #0EA5E9,
        35px 25px 0 #38BDF8;
}

.step-content:hover::after {
    opacity: 0.8;
    animation: floatParticles 3s ease-in-out infinite;
}

@keyframes floatParticles {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(90deg); }
    50% { transform: translateY(-3px) rotate(180deg); }
    75% { transform: translateY(-8px) rotate(270deg); }
}

/* Additional Glow Effects */
.step-content:hover {
    box-shadow: 
        0 35px 70px rgba(56, 189, 248, 0.3),
        0 0 0 3px rgba(56, 189, 248, 0.4),
        0 0 80px rgba(56, 189, 248, 0.2),
        0 0 120px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Fan base decoration */
.process-timeline::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    border-radius: 50%;
    box-shadow: 
        0 10px 30px rgba(56, 189, 248, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.3);
    z-index: 0;
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        min-height: auto;
        perspective: 1000px;
    }
    
    .process-step {
        position: relative;
        transform: none !important;
        margin: 1rem 0;
    }
    
    .process-step:hover {
        transform: translateY(-10px) scale(1.05) !important;
    }
    
    .step-content {
        width: 100% !important;
        max-width: 350px;
        height: 300px !important;
        min-height: 300px !important;
        max-height: 300px !important;
        padding: 1.5rem;
    }
    
    .step-content:hover {
        transform: translateY(-15px) scale(1.03) rotateX(-3deg);
    }
    
    .step-content .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step-content:hover .step-number {
        transform: scale(1.15) rotate(10deg);
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.85rem;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        padding: 1rem 0;
    }
    
    .step-content {
        width: 100% !important;
        max-width: 300px;
        height: 280px !important;
        min-height: 280px !important;
        max-height: 280px !important;
        padding: 1.2rem;
    }
    
    .step-content:hover {
        transform: translateY(-12px) scale(1.02) rotateX(-2deg);
    }
    
    .step-content .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .step-content:hover .step-number {
        transform: scale(1.1) rotate(8deg);
    }
    
    .step-content p {
        font-size: 0.8rem;
        height: 70px;
    }
}

.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technologies Section - Moved down with gap */
.technologies-section {
    padding: 150px 0 100px; /* Increased top padding for gap */
    background: #ffffff; /* Changed to white */
    margin-top: 100px; /* Extra gap above */
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9)) !important;
    backdrop-filter: none; /* Removed blur */
    border: 2px solid rgba(56, 189, 248, 0.2);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    box-shadow: 
        0 10px 30px rgba(56, 189, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tech-category::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(56, 189, 248, 0.1),
        transparent,
        rgba(14, 165, 233, 0.1),
        transparent
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.tech-category:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(56, 189, 248, 0.25),
        0 0 0 2px rgba(56, 189, 248, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(56, 189, 248, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)) !important;
}

.tech-category:hover::before {
    opacity: 1;
    animation: shimmer 0.6s ease;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.tech-category h3 {
    color: #000000 !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tech-category h3::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #38BDF8, #0EA5E9);
    transition: all 0.4s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.tech-category:hover h3 {
    color: #38BDF8 !important;
    transform: translateY(-5px) scale(1.05);
    text-shadow: 0 4px 8px rgba(56, 189, 248, 0.3);
}

.tech-category:hover h3::before {
    width: 60%;
}

.tech-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-item {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.1), rgba(14, 165, 233, 0.05));
    color: #000000 !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(56, 189, 248, 0.2);
    position: relative;
    overflow: hidden;
}

.tech-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.3), transparent);
    transition: left 0.5s ease;
}

.tech-item:hover {
    background: linear-gradient(135deg, #38BDF8, #0EA5E9);
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(56, 189, 248, 0.3);
    border-color: rgba(56, 189, 248, 0.4);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

.modal-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.modal-body h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-primary);
}

.modal-body p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.modal-body li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.modal-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
}

.tech-tags span {
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* 3D Tilt Effect */
.service-card[data-tilt] {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Responsive Design for Specializations */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

/* Projects Page Styles */
.projects-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.projects-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Filters Section */
.filters-section {
    padding: 3rem 0;
    background: var(--bg-white);
    position: sticky;
    top: 80px;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}

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

.filter-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.filter-btn:hover {
    background: var(--glass-border);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    color: white;
    border-color: var(--primary-color);
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 1;
    transform: scale(1);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-actions {
    display: flex;
    gap: 1rem;
}

.project-action-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    transform: translateY(20px);
}

.project-card:hover .project-action-btn {
    transform: translateY(0);
}

.project-action-btn:nth-child(1) {
    transition-delay: 0.1s;
}

.project-action-btn:nth-child(2) {
    transition-delay: 0.2s;
}

.project-action-btn:nth-child(3) {
    transition-delay: 0.3s;
}

.project-action-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.project-content {
    padding: 2rem;
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: var(--bg-light);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
}

.tech-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Project Modal Styles */
.project-modal-content {
    max-width: 900px;
}

.project-detail-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

.project-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.project-links .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: var(--transition);
}

.project-links .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    color: white;
}

.project-links .btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.project-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
}

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

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .project-modal-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .project-detail-images {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Reviews Page Styles */
.reviews-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.reviews-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonial-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    text-align: center;
}

.testimonial-content {
    max-width: 700px;
    margin: 0 auto;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.stars i {
    color: #FFD700;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-border);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--primary-color);
}

/* Reviews Stats */
.reviews-stats {
    padding: 80px 0;
    background: var(--bg-light);
}

.stats-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.overall-rating {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rating-display {
    margin-bottom: 1rem;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.rating-stars {
    margin-top: 0.5rem;
    color: #FFD700;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rating-bar {
    display: grid;
    grid-template-columns: 80px 1fr 40px;
    align-items: center;
    gap: 1rem;
}

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

.bar-container {
    height: 8px;
    background: var(--glass-border);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 4px;
    transition: width 1s ease;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: right;
}

/* Client Categories */
.client-categories {
    padding: 80px 0;
    background: var(--bg-white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.category-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.category-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Success Metrics */
.success-metrics {
    padding: 80px 0;
    background: var(--bg-light);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Responsive Design for Reviews */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .stats-overview {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rating-number {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Page Styles */
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    max-width: 600px;
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--glass-border);
    border-radius: 10px;
    font-size: 1rem;
    background: var(--bg-white);
    color: var(--text-primary);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.form-group input.error,
.form-group textarea.error {
    border-color: #EF4444;
}

.form-error {
    display: none;
    color: #EF4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 400;
    position: relative;
    padding-left: 2rem;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background-color: var(--bg-white);
    border: 2px solid var(--glass-border);
    border-radius: 4px;
    transition: var(--transition);
}

.checkbox-label:hover input ~ .checkmark {
    border-color: var(--primary-color);
}

.checkbox-label input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Contact Info */
.contact-info-container {
    max-width: 500px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #0EA5E9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Social Section */
.social-section {
    margin-top: 3rem;
}

.social-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

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

.social-link i {
    font-size: 1.2rem;
}

.social-link span {
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Contact */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1.2rem 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.2rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #0F172A 0%, #1e293b 100%);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #38BDF8, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-left {
    max-width: 400px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #38BDF8;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #94A3B8;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748B;
}

.footer-center h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #38BDF8;
}

.footer-right h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 50%;
    color: #38BDF8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-btn:hover {
    background: #38BDF8;
    color: #FFFFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(56, 189, 248, 0.4);
}

.footer-contact p {
    font-size: 0.9rem;
    color: #94A3B8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact i {
    color: #38BDF8;
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(56, 189, 248, 0.1);
}

.footer-copyright p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #64748B;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #38BDF8;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left {
        max-width: 100%;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        width: 100%;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 0;
    }
    
    .timeline::before {
        display: none;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .tech-category {
        padding: 1.5rem;
    }
    
    .project-card {
        margin-bottom: 1rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        gap: 3rem;
    }
    
    .intro-grid {
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Screen Optimizations */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .animated-bg,
    .particles,
    .floating-shapes,
    .carousel-btn,
    .social-links,
    .contact-form,
    .cta-section {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .section {
        padding: 2rem 0 !important;
    }
    
    .page-title,
    .section-title {
        color: black !important;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animated-bg {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --glass-bg: rgba(255, 255, 255, 0.9);
        --glass-border: rgba(0, 0, 0, 0.3);
        --text-secondary: #000000;
    }
    
    .btn-secondary {
        border: 2px solid #000000;
    }
    
    .nav-link::after {
        background: #000000;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Uncomment and modify if dark mode is desired */
    /*
    :root {
        --bg-white: #1a1a1a;
        --bg-light: #2d2d2d;
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --glass-bg: rgba(255, 255, 255, 0.05);
        --glass-border: rgba(255, 255, 255, 0.1);
    }
    
    .navbar.scrolled {
        background: rgba(26, 26, 26, 0.95);
    }
    */
}
