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

:root {
    --primary-color: #0f172a;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --light-blue: #93c5fd;
    --light-green: #86efac;
    --green-accent: #34d399;
    --gold-color: #fbbf24;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-hero: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 40%, #60a5fa 70%, #86efac 100%);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-3d: 0 30px 60px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--gradient-hero);
    position: relative;
    min-height: 100vh;
}

/* Ultra Realistic 4K Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.3) 0%, transparent 45%),
        radial-gradient(circle at 40% 70%, rgba(134, 239, 172, 0.35) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(52, 211, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(96, 165, 250, 0.25) 0%, transparent 45%);
    animation: 
        ultraRealisticFlow 20s ease-in-out infinite,
        colorShift 15s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
    filter: blur(60px);
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(134, 239, 172, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 30% 60%, rgba(96, 165, 250, 0.35) 0%, transparent 45%),
        radial-gradient(circle at 90% 70%, rgba(147, 197, 253, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 15% 15%, rgba(52, 211, 153, 0.2) 0%, transparent 35%);
    animation: 
        ultraRealisticFlow 25s ease-in-out infinite reverse,
        waveMotion 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.8;
}

@keyframes ultraRealisticFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 1;
    }
    25% {
        transform: translate(5%, -8%) scale(1.1) rotate(5deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-3%, 10%) scale(1.15) rotate(-3deg);
        opacity: 0.85;
    }
    75% {
        transform: translate(8%, 5%) scale(1.08) rotate(7deg);
        opacity: 0.95;
    }
}

@keyframes colorShift {
    0% {
        filter: blur(60px) hue-rotate(0deg) brightness(1);
    }
    33% {
        filter: blur(70px) hue-rotate(15deg) brightness(1.1);
    }
    66% {
        filter: blur(65px) hue-rotate(-10deg) brightness(1.05);
    }
    100% {
        filter: blur(60px) hue-rotate(0deg) brightness(1);
    }
}

@keyframes waveMotion {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(-8%, 6%) scale(1.12);
        opacity: 0.7;
    }
    66% {
        transform: translate(6%, -8%) scale(1.08);
        opacity: 0.85;
    }
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6)) 
            drop-shadow(0 0 30px rgba(251, 191, 36, 0.4));
    transition: all 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 25px rgba(59, 130, 246, 0.9)) 
            drop-shadow(0 0 40px rgba(251, 191, 36, 0.6));
    transform: scale(1.08);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.6rem 1.2rem;
    border-radius: 10px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid transparent;
}

.nav-links a:hover {
    color: var(--white);
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-links a::after {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px; /* Space for fixed navbar */
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(134, 239, 172, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(147, 197, 253, 0.15) 0%, transparent 40%);
    animation: heroOverlay 12s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes heroOverlay {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.glitch {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    text-shadow: 
        0 0 10px rgba(134, 239, 172, 0.8),
        0 0 20px rgba(59, 130, 246, 0.6),
        0 0 40px rgba(147, 197, 253, 0.4),
        0 10px 30px rgba(0,0,0,0.3);
    animation: glitch 1s linear infinite, textGlow 2s ease-in-out infinite;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1.5rem 0;
    animation: float 3s ease-in-out infinite;
}

.hero-invest-img {
    height: 250px;
    width: auto;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8)) 
            drop-shadow(0 0 40px rgba(134, 239, 172, 0.6));
    animation: investGlow 3s ease-in-out infinite;
}

@keyframes investGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.8)) 
                drop-shadow(0 0 40px rgba(134, 239, 172, 0.6));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(59, 130, 246, 1)) 
                drop-shadow(0 0 60px rgba(134, 239, 172, 0.9));
        transform: scale(1.05);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(134, 239, 172, 0.8),
            0 0 20px rgba(59, 130, 246, 0.6),
            0 0 40px rgba(147, 197, 253, 0.4),
            0 10px 30px rgba(0,0,0,0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(134, 239, 172, 1),
            0 0 40px rgba(59, 130, 246, 0.8),
            0 0 60px rgba(52, 211, 153, 0.6),
            0 10px 30px rgba(0,0,0,0.5);
    }
}

@keyframes glitch {
    2%, 64% {
        transform: translate(2px, 0) skew(0deg);
    }
    4%, 60% {
        transform: translate(-2px, 0) skew(0deg);
    }
    62% {
        transform: translate(0, 0) skew(5deg);
    }
}

.subtitle {
    font-size: 1.8rem;
    margin: 1rem 0 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.year-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 
        var(--shadow-xl),
        0 0 30px rgba(59, 130, 246, 0.5),
        0 0 50px rgba(134, 239, 172, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            var(--shadow-xl),
            0 0 30px rgba(59, 130, 246, 0.5),
            0 0 50px rgba(134, 239, 172, 0.3),
            inset 0 0 20px rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 
            var(--shadow-xl),
            0 0 50px rgba(59, 130, 246, 0.8),
            0 0 80px rgba(134, 239, 172, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
}

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

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 
        var(--shadow-lg),
        0 0 20px rgba(59, 130, 246, 0.4),
        0 0 40px rgba(134, 239, 172, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        var(--shadow-3d),
        0 0 40px rgba(59, 130, 246, 0.6),
        0 0 60px rgba(134, 239, 172, 0.4);
}

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

.shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(134, 239, 172, 0.15));
    backdrop-filter: blur(10px);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: morphing 10s ease-in-out infinite, shapeFloat1 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 10%;
    animation: morphing 15s ease-in-out infinite reverse, shapeFloat2 10s ease-in-out infinite;
}

.shape-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: -150px;
    animation: morphing 20s ease-in-out infinite, shapeFloat3 12s ease-in-out infinite;
}

@keyframes shapeFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -40px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 30px) rotate(240deg);
    }
}

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

@keyframes shapeFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(40px, 40px) rotate(90deg);
    }
    66% {
        transform: translate(-30px, -40px) rotate(180deg);
    }
}

@keyframes morphing {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(180deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(134, 239, 172, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 40%);
    animation: sectionOverlay 15s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes sectionOverlay {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.05) rotate(3deg);
        opacity: 0.8;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
    position: relative;
    display: inline-block;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(59, 130, 246, 0.8),
        0 0 20px rgba(134, 239, 172, 0.6),
        0 4px 8px rgba(0, 0, 0, 0.3);
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(59, 130, 246, 0.8),
            0 0 20px rgba(134, 239, 172, 0.6),
            0 4px 8px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 
            0 0 20px rgba(59, 130, 246, 1),
            0 0 40px rgba(134, 239, 172, 0.8),
            0 4px 8px rgba(0, 0, 0, 0.5);
    }
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(134, 239, 172, 0.6);
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(59, 130, 246, 0.8), 0 0 20px rgba(134, 239, 172, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(59, 130, 246, 1), 0 0 40px rgba(134, 239, 172, 0.9);
    }
}

/* Introduction Section */
.introduction {
    background: transparent;
}

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

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    transform-style: preserve-3d;
    border: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
}

.stat-card:hover {
    transform: translateY(-10px) rotateX(10deg) rotateY(5deg);
    box-shadow: var(--shadow-3d), var(--shadow-glow);
    border-color: var(--secondary-color);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Portfolio Management Section */
.portfolio-management {
    background: transparent;
}

.definition {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
}

.definition p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.key-components h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.component-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border-left: 4px solid var(--light-green);
    backdrop-filter: blur(10px);
}

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

.component-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.component-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.component-card p {
    color: var(--text-dark);
}

.performance-chart {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(248, 250, 252, 0.95);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.performance-chart h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.consultancy-services h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    margin-top: 3rem;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.service-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Services Section */
.services {
    background: transparent;
}

.service-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
}

.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
}

.service-box::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-3d), var(--shadow-glow);
    border-color: var(--secondary-color);
}

.service-box:hover::after {
    opacity: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-box:hover .service-icon {
    transform: rotateY(360deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-box h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-box p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.service-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

.service-stats .stat {
    text-align: center;
}

.service-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.service-stats .label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
}

.micro-financing .service-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.capital-market .service-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.event-management .service-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bpo-service .service-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Real Estate Section */
.real-estate {
    background: transparent;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.property-card {
    background: rgba(248, 250, 252, 0.95);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-3d);
}

.property-flag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
}

.property-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.property-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.detail-item .label {
    color: var(--text-light);
    font-weight: 600;
}

.detail-item .value {
    color: var(--primary-color);
    font-weight: 700;
}

.property-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.property-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Upcoming Projects */
.upcoming-projects {
    background: transparent;
}

.projects-grid {
    display: grid;
    gap: 3rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6 0%, #60a5fa 50%, #86efac 100%);
}

.project-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-3d);
}

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

.project-header i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.project-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    flex: 1;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.badge.planning {
    background: rgba(34, 197, 94, 0.2);
    color: #16a34a;
}

.project-card h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.project-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-bg);
}

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Performance Section */
.performance {
    background: transparent;
}

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

.guarantee-box {
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-3d);
}

.company-returns {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.investor-guarantee {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: var(--white);
}

.guarantee-box i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-box .percentage {
    font-size: 4rem;
    font-weight: 900;
    margin: 1rem 0;
}

.guarantee-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.guarantee-box .range {
    font-size: 0.9rem;
    opacity: 0.9;
}

.profit-sharing {
    background: rgba(248, 250, 252, 0.95);
    padding: 3rem;
    border-radius: 25px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
}

.profit-sharing h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.sharing-details {
    max-width: 800px;
    margin: 0 auto;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.detail-row.proven {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: var(--white);
}

.historical-performance {
    margin: 3rem 0;
}

.historical-performance h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.years-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.year-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.year-card.highlighted {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.year-card.guarantee-card {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: var(--white);
}

.year-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.year-value {
    font-size: 3rem;
    font-weight: 900;
    margin: 0.5rem 0;
}

.year-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.monthly-performance {
    margin: 3rem 0;
}

.monthly-performance h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.monthly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.month-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
}

.month-card .month {
    font-size: 0.9rem;
    color: var(--text-light);
}

.month-card .return {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.month-card .guarantee {
    font-size: 0.9rem;
    color: #16a34a;
    font-weight: 600;
}

.guarantee-track {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem 0;
}

.guarantee-track h3 {
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
}

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

.track-stat {
    text-align: center;
    color: var(--white);
}

.track-stat .big-number {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.track-stat.highlight .big-number {
    color: #fbbf24;
}

.projections {
    background: rgba(248, 250, 252, 0.95);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.projections h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.projection-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.projection-box {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.projection-box h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.projection-box .proj-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.projection-arrow {
    font-size: 3rem;
    color: var(--primary-color);
}

.guarantee-note {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: var(--white);
    border-radius: 15px;
    font-size: 1.2rem;
}

.guarantee-note strong {
    font-size: 1.5rem;
}

/* Contact Section */
.contact {
    background: transparent;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.info-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    min-width: 50px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.info-item a,
.info-item p {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
}

.info-item a:hover {
    color: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.8)) 
            drop-shadow(0 0 30px rgba(134, 239, 172, 0.6));
    margin-bottom: 0.5rem;
}

.footer-logo h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-links h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-links a:hover {
    color: var(--light-green);
    text-shadow: 0 0 10px rgba(134, 239, 172, 0.8);
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #86efac 100%);
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6), 0 0 40px rgba(134, 239, 172, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .burger {
        display: flex;
    }

    .logo-img {
        height: 45px;
    }

    .hero {
        padding-top: 80px;
        min-height: 90vh;
    }

    .hero-invest-img {
        height: 200px;
    }

    .glitch {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    .year-badge {
        font-size: 1.8rem;
        padding: 0.6rem 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid,
    .components-grid,
    .services-grid,
    .properties-grid {
        grid-template-columns: 1fr;
    }

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

    .projection-boxes {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .logo-img {
        height: 38px;
    }

    .hero {
        padding-top: 70px;
        min-height: 85vh;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-invest-img {
        height: 150px;
    }

    .glitch {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .year-badge {
        font-size: 1.5rem;
        padding: 0.5rem 1.2rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .stat-card h3,
    .year-value {
        font-size: 2rem;
    }

    .guarantee-box .percentage {
        font-size: 3rem;
    }

    .footer-logo-img {
        height: 60px;
        max-width: 150px;
    }
}
