/* Web3BitCapital - Elegant & Modern Stylesheet */

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #00d4ff;
    --text-primary: #ffffff;
    --text-secondary: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #00d4ff 0%, #5b86e5 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    --shadow-light: 0 4px 20px rgba(0, 212, 255, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 212, 255, 0.15);
    --shadow-heavy: 0 15px 50px rgba(0, 212, 255, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--primary-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-light);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    height: 50px;
    width: auto;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--text-primary);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.logo-container:hover .company-name {
    transform: scale(1.05);
    filter: brightness(1.2);
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--highlight-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-secondary);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-cta:hover,
.nav-cta.active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--text-primary);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

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

.btn-secondary:hover {
    background: var(--highlight-color);
    color: var(--primary-color);
}

/* Section Styles */
.section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.grid-3x2 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-3x3 {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--highlight-color);
}

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

/* Complex Elegant Icon Styles */
.icon-rocket {
    width: 50px;
    height: 60px;
    position: relative;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    clip-path: polygon(50% 0%, 65% 25%, 100% 30%, 85% 50%, 100% 70%, 65% 75%, 50% 100%, 35% 75%, 0% 70%, 15% 50%, 0% 30%, 35% 25%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
}

.icon-rocket::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    background: linear-gradient(90deg, #ff6b6b 0%, #ff8e53 100%);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    border-radius: 0 0 4px 4px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.5);
}

.icon-rocket::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.icon-diamond {
    width: 50px;
    height: 50px;
    position: relative;
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--highlight-color) 0%, #764ba2 50%, var(--highlight-color) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.icon-diamond::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.2) 100%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.icon-diamond::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.icon-lock {
    width: 40px;
    height: 50px;
    position: relative;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.icon-lock::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 18px;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 12px 12px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.icon-lock::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8), inset 0 0 4px rgba(0, 212, 255, 0.5);
}

.icon-shield {
    width: 45px;
    height: 55px;
    position: relative;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.icon-shield::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 100%);
    clip-path: polygon(50% 0%, 100% 20%, 100% 80%, 50% 100%, 0% 80%, 0% 20%);
}

.icon-shield::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 12px;
    background: var(--highlight-color);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.6);
}

.icon-lightning {
    width: 35px;
    height: 50px;
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 50%, #ff6347 100%);
    clip-path: polygon(35% 0%, 65% 0%, 50% 35%, 70% 35%, 30% 100%, 50% 60%, 30% 60%);
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5), 0 0 15px rgba(255, 215, 0, 0.4);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
}

.icon-lightning::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.icon-lightning::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.icon-target {
    width: 55px;
    height: 55px;
    position: relative;
    border: 4px solid var(--highlight-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.icon-target::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    border: 3px solid var(--highlight-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);
}

.icon-target::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.8), inset 0 0 8px rgba(255, 255, 255, 0.4);
}

.icon-chart {
    width: 50px;
    height: 50px;
    position: relative;
    border-left: 4px solid var(--highlight-color);
    border-bottom: 4px solid var(--highlight-color);
    border-radius: 0 0 0 4px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
}

.icon-chart::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8px;
    width: 10px;
    height: 28px;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 8px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.icon-chart::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 22px;
    width: 10px;
    height: 20px;
    background: linear-gradient(180deg, #5b86e5 0%, #764ba2 100%);
    border-radius: 4px 4px 0 0;
    box-shadow: 0 -2px 8px rgba(91, 134, 229, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
}

.icon-chart {
    position: relative;
}

.icon-chart::before,
.icon-chart::after {
    content: '';
    position: absolute;
}

.icon-briefcase {
    width: 50px;
    height: 40px;
    position: relative;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.icon-briefcase::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 8px;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px 4px 0 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.icon-briefcase::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.icon-bank {
    width: 50px;
    height: 40px;
    position: relative;
    background: linear-gradient(180deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4), inset 0 -2px 5px rgba(0, 0, 0, 0.2);
}

.icon-bank::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 14px solid var(--highlight-color);
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.4));
}

.icon-bank::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 8px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    box-shadow: 8px 0 0 rgba(255, 255, 255, 0.8), 16px 0 0 rgba(255, 255, 255, 0.8), 24px 0 0 rgba(255, 255, 255, 0.8);
}

.icon-gear {
    width: 50px;
    height: 50px;
    position: relative;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
}

.icon-gear::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, transparent 35%, var(--highlight-color) 35%, var(--highlight-color) 40%, transparent 40%, transparent 45%, var(--highlight-color) 45%, var(--highlight-color) 50%, transparent 50%);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);
}

.icon-gear::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: inset 0 0 8px rgba(0, 212, 255, 0.5), 0 0 10px rgba(0, 212, 255, 0.3);
}

.icon-handshake {
    width: 55px;
    height: 40px;
    position: relative;
}

.icon-handshake::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 50% 0 50% 50%;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icon-handshake::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(225deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 0 50% 50% 50%;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icon-handshake {
    position: relative;
}

.icon-handshake::before,
.icon-handshake::after {
    content: '';
    position: absolute;
}

.icon-handshake::before {
    left: 2px;
    top: 8px;
}

.icon-handshake::after {
    right: 2px;
    top: 8px;
}

.icon-scale {
    width: 55px;
    height: 40px;
    position: relative;
}

.icon-scale::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icon-scale::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.icon-scale {
    position: relative;
}

.icon-scale::before,
.icon-scale::after {
    content: '';
    position: absolute;
}

.icon-scale::before {
    top: 2px;
    left: 2px;
}

.icon-scale::after {
    top: 2px;
    right: 2px;
}

.icon-scale {
    position: relative;
}

.icon-scale::before,
.icon-scale::after {
    content: '';
    position: absolute;
}

.icon-scale::before {
    top: 0;
    left: 0;
}

.icon-scale::after {
    top: 0;
    right: 0;
}

.icon-globe {
    width: 50px;
    height: 50px;
    position: relative;
    border: 4px solid var(--highlight-color);
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 212, 255, 0.3) 0%, rgba(91, 134, 229, 0.2) 50%, transparent 100%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.2);
}

.icon-globe::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--highlight-color) 20%, var(--highlight-color) 80%, transparent 100%);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.icon-globe::after {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--highlight-color);
    filter: drop-shadow(0 2px 4px rgba(0, 212, 255, 0.4));
}

.icon-check {
    width: 50px;
    height: 50px;
    position: relative;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.icon-check::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 14px;
    width: 12px;
    height: 20px;
    border-right: 4px solid white;
    border-bottom: 4px solid white;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

.icon-check::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
}

.icon-microscope {
    width: 50px;
    height: 50px;
    position: relative;
}

.icon-microscope::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 12px;
    width: 26px;
    height: 26px;
    border: 4px solid var(--highlight-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4), inset 0 0 10px rgba(0, 212, 255, 0.3);
}

.icon-microscope::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 50px;
    height: 6px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, #5b86e5 50%, var(--highlight-color) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
}


.icon-lightbulb {
    width: 40px;
    height: 50px;
    position: relative;
    background: linear-gradient(135deg, #ffd700 0%, #ffa500 50%, #ff6347 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4), inset 0 0 15px rgba(255, 255, 255, 0.3);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6));
}

.icon-lightbulb::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 6px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4);
}

.icon-lightbulb::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), inset 0 0 8px rgba(255, 215, 0, 0.6);
}

.icon-document {
    width: 40px;
    height: 55px;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border: 4px solid var(--highlight-color);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 0 15px rgba(0, 212, 255, 0.1);
}

.icon-document::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 212, 255, 0.4);
}

.icon-document::after {
    content: '';
    position: absolute;
    top: 16px;
    left: 8px;
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, #5b86e5 100%);
    border-radius: 2px;
    box-shadow: 0 1px 4px rgba(0, 212, 255, 0.4);
}


.icon-search {
    width: 45px;
    height: 45px;
    position: relative;
    border: 4px solid var(--highlight-color);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 0 15px rgba(0, 212, 255, 0.2);
}

.icon-search::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
}

.icon-search::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 4px;
    background: linear-gradient(135deg, var(--highlight-color) 0%, #5b86e5 100%);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.5);
}

.icon-graduation {
    width: 50px;
    height: 45px;
    position: relative;
}

.icon-graduation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 14px solid var(--highlight-color);
    filter: drop-shadow(0 2px 8px rgba(0, 212, 255, 0.4));
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.icon-graduation::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 5px;
    background: linear-gradient(90deg, var(--highlight-color) 0%, #5b86e5 50%, var(--highlight-color) 100%);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 212, 255, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.2);
}


.icon-number {
    width: 50px;
    height: 50px;
    border: 4px solid var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--highlight-color);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(91, 134, 229, 0.1) 100%);
    font-family: inherit;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4), inset 0 0 15px rgba(0, 212, 255, 0.2);
    position: relative;
}

.icon-number::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 50%;
    box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.2);
}

.icon-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

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

.card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Team Members */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--highlight-color);
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--highlight-color);
    box-shadow: var(--shadow-medium);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-member .role {
    color: var(--highlight-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Fund Cards */
.fund-card {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.fund-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.fund-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--highlight-color);
}

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

.fund-card .fund-type {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gradient-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.fund-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.fund-card .btn {
    margin-top: auto;
    margin-bottom: 0;
}

/* Service Cards */
.service-card {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

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

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

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Newsletter */
.newsletter-section {
    background: var(--gradient-dark);
    padding: 6rem 2rem;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 30px;
    color: var(--text-primary);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--highlight-color);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Blog/Insights */
.insight-card {
    background: rgba(22, 33, 62, 0.6);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.1);
    cursor: pointer;
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--highlight-color);
}

.insight-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.insight-card .category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--gradient-secondary);
    border-radius: 15px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.insight-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Footer */
footer {
    background: var(--secondary-color);
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: center;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-secondary);
}

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

.fade-in {
    animation: fadeInUp 0.8s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 26, 46, 0.98);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-medium);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

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

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

    .grid-3x2 {
        grid-template-columns: 1fr;
    }

    .grid-3x3 {
        grid-template-columns: 1fr;
    }

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

    .company-name {
        font-size: 1.2rem;
    }

    .logo-container {
        gap: 0.7rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Banner Image */
.banner-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: var(--shadow-medium);
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(22, 33, 62, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

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