:root {
    /* Color Palette */
    --primary-color: #0e6779;
    --accent-color: #09c648;
    --description-color: #aaaaa7;
    --background-color: #ffffff;
    --text-main: #333333;
    --text-white: #ffffff;

    /* Typography */
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Inter', 'Prompt', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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



body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-main);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

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

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-smooth);
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-img {
    height: 80px !important;
    width: auto !important;
    display: block;
    transition: var(--transition-smooth);
}

#navbar.scrolled .logo-img {
    height: 50px !important;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

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

.nav-links a.active {
    color: var(--accent-color);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-smooth);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(9, 198, 72, 0.2);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(9, 198, 72, 0.4);
}

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

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: scale(1.05);
}

.cta-wrapper {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    background-color: #f8fafb;
}

/* Background Decorations */
.hero-bg-blobs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(9, 198, 72, 0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation: blobFloat 25s infinite alternate;
}

.blob-2 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(45, 138, 156, 0.1) 0%, transparent 70%);
    bottom: -300px;
    left: -200px;
    animation: blobFloat 30s infinite alternate-reverse;
}

.blob-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(9, 198, 72, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    animation: pulseSoft 4s infinite ease-in-out;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(14, 103, 121, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.6;
    z-index: 0;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, -50px) scale(1.1);
    }
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

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

.hero-image-container {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(14, 103, 121, 0.2);
    border: 1px solid rgba(14, 103, 121, 0.1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition-smooth);
}

.hero-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(9, 198, 72, 0.2);
}

.hero-img-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-color);
}

.sub-headline {
    font-size: 1.25rem;
    color: var(--description-color);
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-vision {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Commons */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--description-color);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Visual Placeholder */
.digital-seed-placeholder {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    position: relative;
    filter: blur(20px);
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

/* Journey Section - Elegant Timeline */
.journey-hitech {
    padding: 80px 0 120px;
    background: linear-gradient(180deg, #f9fbfb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.journey-hitech .container {
    position: relative;
    z-index: 2;
}

/* Background Effects */
.journey-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.scan-line,
.grid-overlay {
    display: none;
}

.particle {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(14, 103, 121, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSoft 15s ease-in-out infinite;
}

.particle-1 {
    top: 10%;
    left: 5%;
}

.particle-2 {
    top: 50%;
    right: 5%;
    animation-delay: 5s;
}

.particle-3 {
    bottom: 10%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: translate(30px, -20px);
        opacity: 0.8;
    }
}

/* Journey Header */
.journey-header {
    text-align: center;
    margin-bottom: 3rem;
}

.journey-title-wrapper {
    margin-bottom: 1rem;
}

.journey-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-color);
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.journey-hitech .section-title {
    color: var(--primary-color);
    font-size: 2.5rem;
}

.glitch-text {
    position: relative;
}

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

.glitch-text:hover::before {
    animation: glitch1 0.3s ease-in-out;
    color: #0ff;
    z-index: -1;
    opacity: 0.8;
}

.glitch-text:hover::after {
    animation: glitch2 0.3s ease-in-out;
    color: #f0f;
    z-index: -2;
    opacity: 0.8;
}

@keyframes glitch1 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(2px, -2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(2px, 2px);
    }
}

@keyframes glitch2 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(-2px, 2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(-2px, -2px);
    }
}

.cyber-text {
    color: var(--description-color);
}

/* Timeline Navigation */
.timeline-nav {
    position: relative;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(14, 103, 121, 0.15);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
}

.timeline-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-years {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.year-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.year-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--description-color);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.year-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.year-btn.active .year-dot,
.year-btn:hover .year-dot {
    border-color: var(--accent-color);
    box-shadow: 0 0 15px rgba(9, 198, 72, 0.5);
}

.year-btn.active .year-dot::after {
    transform: translate(-50%, -50%) scale(1);
}

.year-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--description-color);
    transition: color 0.3s ease;
}

.year-btn.active .year-label,
.year-btn:hover .year-label {
    color: var(--accent-color);
}

.year-btn.highlight .year-dot {
    border-color: var(--accent-color);
    animation: pulseHighlight 2s ease-in-out infinite;
}

@keyframes pulseHighlight {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(9, 198, 72, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(9, 198, 72, 0.7);
    }
}

/* Content Panels */
.timeline-content-wrapper {
    position: relative;
    min-height: 280px;
}

.timeline-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.panel-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    background: #fff;
    border: 1px solid rgba(14, 103, 121, 0.1);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(14, 103, 121, 0.08);
    transition: all 0.3s ease;
}

.panel-inner:hover {
    box-shadow: 0 15px 50px rgba(14, 103, 121, 0.12);
    transform: translateY(-5px);
}

.panel-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    border-radius: 4px 0 0 4px;
}

.panel-icon {
    width: 70px;
    height: 70px;
    color: var(--primary-color);
    background: rgba(14, 103, 121, 0.05);
    border-radius: 16px;
    padding: 15px;
    transition: all 0.3s ease;
}

.panel-inner:hover .panel-icon {
    color: var(--accent-color);
    background: rgba(9, 198, 72, 0.1);
    transform: scale(1.05);
}

.panel-icon svg {
    width: 100%;
    height: 100%;
}

.pulse-icon {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.panel-text {
    flex: 1;
}

.panel-year {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(14, 103, 121, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.panel-year.featured {
    background: linear-gradient(135deg, var(--accent-color), #00d4aa);
    color: #fff;
}

.panel-text h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.panel-text p {
    color: var(--description-color);
    line-height: 1.7;
    font-size: 1rem;
}

.panel-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.panel-decoration {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hex-grid {
    width: 80px;
    height: 80px;
    border: 2px dashed rgba(14, 103, 121, 0.2);
    border-radius: 50%;
    animation: rotateSlow 25s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes hexRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    opacity: 0.15;
    animation: pulseSoft 3s ease-in-out infinite;
}

@keyframes pulseSoft {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.25;
    }
}

/* Highlight Panel */
.highlight-panel .panel-inner {
    background: linear-gradient(135deg, rgba(14, 103, 121, 0.03) 0%, rgba(9, 198, 72, 0.05) 100%);
    border-color: rgba(9, 198, 72, 0.2);
}

.highlight-panel .panel-inner::before {
    background: var(--accent-color);
}

/* Capital Display */
.capital-display {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(14, 103, 121, 0.1);
}

.capital-display .capital-label {
    display: block;
    font-size: 0.85rem;
    color: var(--description-color);
    margin-bottom: 0.5rem;
}

.capital-value {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.capital-value .currency {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.capital-value .amount {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
}

/* Navigation Arrows */
.timeline-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(14, 103, 121, 0.2);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.arrow-btn:hover:not(:disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 103, 121, 0.2);
}

.arrow-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.arrow-btn svg {
    width: 24px;
    height: 24px;
}

.arrow-indicator {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--description-color);
}

.arrow-indicator span {
    color: var(--primary-color);
    font-weight: 700;
}

/* Responsive for Hi-Tech Timeline */
@media (max-width: 992px) {
    .panel-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .panel-icon {
        margin: 0 auto;
    }

    .panel-decoration {
        display: none;
    }

    .timeline-content-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .journey-hitech {
        padding: 60px 0;
    }

    .journey-hitech .section-title {
        font-size: 1.8rem;
    }

    .year-label {
        font-size: 0.75rem;
    }

    .year-dot {
        width: 14px;
        height: 14px;
    }

    .panel-inner {
        padding: 1.5rem;
    }

    .panel-text h3 {
        font-size: 1.2rem;
    }

    .panel-icon {
        width: 60px;
        height: 60px;
    }

    .capital-value .amount {
        font-size: 1.8rem;
    }

    .timeline-content-wrapper {
        min-height: 400px;
    }
}

/* Vision Section */
.vision {
    padding: 120px 0 80px;
    margin-top: 2rem;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

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

.vision-header .section-title {
    margin-bottom: 0.5rem;
}

.impact-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-description {
    color: var(--description-color);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* Entrepreneurship Development Dashboard */
.dev-dashboard {
    background: #fff;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 4rem;
}

.dashboard-title {
    text-align: center;
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

/* Legend */
.dev-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.legend-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.legend-dot.mju {
    background: #6b8e8e;
}

.legend-dot.general {
    background: #8b7355;
}

/* Development Grid */
.dev-grid {
    overflow-x: auto;
}

.dev-header-row,
.dev-row {
    display: grid;
    grid-template-columns: 100px repeat(5, 1fr);
    gap: 0.5rem;
    min-width: 700px;
}

.dev-header-row {
    margin-bottom: 0.5rem;
}

.dev-year-label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
}

.dev-year-label .year {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.dev-year-label .teams {
    font-size: 0.75rem;
    color: var(--description-color);
}

.dev-level-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 0.5rem;
    background: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.dev-level-header.highlight-teal {
    border: 3px solid #2d8a9c;
    background: rgba(45, 138, 156, 0.05);
}

.dev-level-header.highlight-accent {
    border: 3px solid var(--accent-color);
    background: rgba(9, 198, 72, 0.05);
}

.level-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.level-desc {
    font-size: 0.75rem;
    color: var(--description-color);
}

.dev-row {
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e0e0e0;
}

.dev-row:last-child {
    border-bottom: none;
}

.dev-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
}

.dev-cell.highlight-teal-bg {
    background: rgba(45, 138, 156, 0.08);
    border-radius: 8px;
}

.dev-cell.highlight-accent-bg {
    background: rgba(9, 198, 72, 0.08);
    border-radius: 8px;
}

/* Circle Numbers */
.circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.circle.mju {
    background: #6b8e8e;
}

.circle.general {
    background: #8b7355;
}

.circle.large {
    width: 55px;
    height: 55px;
    font-size: 1.1rem;
}

.circle.empty {
    background: transparent;
    color: #ccc;
    box-shadow: none;
    border: 2px dashed #ddd;
}

/* Responsive */
@media (max-width: 768px) {
    .dev-dashboard {
        padding: 1.5rem;
    }

    .dev-legend {
        gap: 1.5rem;
    }

    .dev-header-row,
    .dev-row {
        grid-template-columns: 80px repeat(5, 1fr);
    }

    .circle {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .circle.large {
        width: 45px;
        height: 45px;
    }
}

/* Keep old styles for backward compatibility */
.vision-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--description-color);
}

.vision-visual {
    display: flex;
    justify-content: center;
}

.network-nodes {
    width: 300px;
    height: 300px;
    background: rgba(14, 103, 121, 0.05);
    border-radius: 50%;
    padding: 20px;
}

.pulse-node {
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 5px rgba(9, 198, 72, 0.5));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(9, 198, 72, 0.8));
    }
}

/* Innovation Journey - Modern Flowchart Card */
.innovation-journey {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(14, 103, 121, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(14, 103, 121, 0.1);
}

.innovation-journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 2;
}





.innovation-journey h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.journey-subtitle {
    text-align: center;
    color: var(--description-color);
    margin-bottom: 3rem;
    font-size: 1rem;
}

.innovation-flow-wrapper {
    position: relative;
    max-width: 1000px;
    height: 450px;
    margin: 0 auto;
}

/* SVG Connector Path */
.flow-svg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.flow-svg-container path {
    stroke: #F79C2A;
    /* Orange from the image */
    stroke-width: 12;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Nodes */
.flow-node-item {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 140px;
    transform: translate(-50%, -30px);
}

.node-circle-box {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    box-shadow: 0 6px 12px rgba(14, 103, 121, 0.15);
    transition: var(--transition-smooth);
    border: 3px solid #fff;
    flex-shrink: 0;
}

.flow-node-item:hover .node-circle-box {
    transform: scale(1.15);
    background-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(9, 198, 72, 0.3);
}

.node-circle-box .lucide {
    width: 32px;
    height: 32px;
    color: #fff;
    stroke-width: 2px;
}

.node-label-box {
    text-align: center;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--primary-color);
    line-height: 1.2;
    padding: 0 5px;
    white-space: nowrap
}

/* Positions based on 1200x500 area */
/* Center line is at y=250px (50%) */

.node-research {
    left: 8%;
    top: 198px;
}

.node-ip {
    left: 21%;
    top: 198px;
}

.node-trans {
    left: 34%;
    top: 198px;
}

.node-scale {
    left: 47%;
    top: 198px;
}

/* Upper Branch */
.node-company {
    left: 60%;
    top: 99px;
}

.node-licensing-top {
    left: 77%;
    top: 99px;
}

.node-installation {
    left: 95%;
    top: 99px;
}

/* Lower Branch */
.node-startup {
    left: 60%;
    top: 315px;
}

.node-licensing-bot {
    left: 80%;
    top: 234px;
}

.node-equity {
    left: 80%;
    top: 396px;
}

.node-accel {
    left: 95%;
    top: 315px;
}

/* Mobile Adaptability for Flow */
@media (max-width: 992px) {
    .innovation-flow-wrapper {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding-left: 2rem;
    }

    .flow-svg-container {
        display: none;
    }

    .flow-node-item {
        position: static;
        flex-direction: row;
        width: 100%;
        margin-bottom: 2rem;
        transform: none;
        gap: 1.5rem;
    }

    .node-circle-box {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }

    .node-label-box {
        text-align: left;
        font-size: 0.9rem;
    }
}

/* Responsive Scaling to keep horizontal flow */




/* Values Section */
.values {
    padding: 80px 0;
    background-color: #f0f7f8;
}

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

.value-card {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(9, 198, 72, 0.15);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
}

.value-icon .lucide {
    width: 100%;
    height: 100%;
    color: var(--accent-color);
    stroke-width: 1.5px;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--description-color);
    font-size: 0.95rem;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 5rem;
}

.portfolio-item {
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color), #0a4a58);
    border-radius: 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.portfolio-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-content {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.portfolio-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(9, 198, 72, 0.2) 0%, transparent 60%);
    opacity: 0.5;
}

.portfolio-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.portfolio-content {
    position: relative;
    z-index: 1;
}

.portfolio-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.portfolio-tagline {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Investment Models */
.investment-models {
    background: rgba(14, 103, 121, 0.03);
    padding: 3rem;
    border-radius: 24px;
}

.investment-subtitle {
    text-align: center;
    color: var(--description-color);
    margin-bottom: 2rem;
}

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

.model-card {
    background: var(--text-white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(9, 198, 72, 0.15);
}

.model-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.model-icon .lucide {
    width: 40px;
    height: 40px;
    color: var(--accent-color);
    stroke-width: 2px;
}

.model-card h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.model-card p {
    font-size: 0.9rem;
    color: var(--description-color);
}

/* Ecosystem Section */
.ecosystem {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    position: relative;
    --ecosystem-logo-size: 15rem;
    /* Adjustable logo size */
    --ecosystem-item-width: 20rem;
}

.ecosystem .section-subtitle {
    margin-bottom: 1.5rem;
}

.ecosystem-slider-wrapper {
    position: relative;
    margin-bottom: 3rem;
    padding: 0;
}

.ecosystem-slider-container {
    overflow: hidden;
    padding: 1rem 0 2rem;
    cursor: grab;
}

.ecosystem-slider-container:active {
    cursor: grabbing;
}

.ecosystem-slider-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1rem;
}

.ecosystem-item {
    flex: 0 0 var(--ecosystem-item-width);
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(14, 103, 121, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.ecosystem-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 103, 121, 0.1);
}

.ecosystem-logo {
    width: var(--ecosystem-logo-size);
    height: var(--ecosystem-logo-size);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 6px solid rgba(14, 103, 121, 0.03);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.ecosystem-item:hover .ecosystem-logo {
    border-color: var(--accent-color);
    box-shadow: 0 15px 35px rgba(9, 198, 72, 0.15);
    transform: rotate(5deg);
}

.ecosystem-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: var(--transition-smooth);
    z-index: 1;
}

.ecosystem-item:hover .ecosystem-logo img {
    transform: scale(1.1);
}

.ecosystem-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 103, 121, 0.02) 0%, rgba(9, 198, 72, 0.02) 100%);
    border-radius: 50%;
}

.ecosystem-item h4 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 700;
}

.ecosystem-item p {
    font-size: 0.95rem;
    color: var(--description-color);
    line-height: 1.5;
    margin: 0;
    max-width: 90%;
}

/* Slider Controls */
.ecosystem-controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.ecosystem-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(14, 103, 121, 0.1);
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ecosystem-arrow .lucide {
    width: 28px;
    height: 28px;
    stroke-width: 3px;
}

.ecosystem-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(14, 103, 121, 0.2);
}

.ecosystem-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

.ecosystem-arrow svg {
    width: 24px;
    height: 24px;
}

/* Success Engine Section */
.success-engine-section {
    margin-top: 2rem;
    padding: 3rem 2rem;
    background: radial-gradient(circle at center, rgba(14, 103, 121, 0.05) 0%, transparent 70%);
    border-radius: 40px;
    position: relative;
    overflow: hidden;
}

.engine-title {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.engine-container {
    position: relative;
    height: 550px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Hub */
.engine-hub {
    position: relative;
    z-index: 10;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-inner {
    width: 160px;
    height: 160px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 45px rgba(14, 103, 121, 0.2);
    border: 8px solid rgba(14, 103, 121, 0.05);
    z-index: 2;
    padding: 1rem;
    text-align: center;
}

.hub-logo {
    width: 70px;
    height: auto;
    margin-bottom: 0.5rem;
}

.hub-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hub-orbit,
.hub-orbit-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(14, 103, 121, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.hub-orbit {
    width: 260px;
    height: 260px;
    animation: rotateSlow 40s linear infinite;
}

.hub-orbit-2 {
    width: 400px;
    height: 400px;
    border: 1px solid rgba(9, 198, 72, 0.08);
    animation: rotateSlow 60s linear infinite reverse;
}

/* Factor Nodes */
.factor-node {
    position: absolute;
    width: 240px;
    /* Increased width to fill space better */
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 103, 121, 0.05);
    transform: var(--base-transform);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 5;
    --base-transform: translate(0, 0);
}

.factor-node:hover {
    transform: var(--base-transform) scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(9, 198, 72, 0.15);
    border-color: var(--accent-color);
    z-index: 15;
}

.node-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-icon .lucide {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    stroke-width: 2px;
}

.node-content h4 {
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
    color: var(--accent-color);
}

.node-content p {
    font-size: 0.7rem;
    color: var(--description-color);
    line-height: 1.25;
    margin: 0;
}

.node-1 {
    top: 0%;
    left: 50%;
    --base-transform: translateX(-50%);
}

/* Left side nodes */
.node-6 {
    top: 15%;
    left: 0%;
}

.node-5 {
    top: 50%;
    left: 0%;
    --base-transform: translateY(-50%);
}

/* Right side nodes */
.node-2 {
    top: 15%;
    right: 0%;
}

.node-7 {
    top: 50%;
    right: 0%;
    --base-transform: translateY(-50%);
}

/* Bottom side nodes */
.node-4 {
    bottom: 0%;
    left: 15%;
}

.node-3 {
    bottom: 0%;
    right: 15%;
}

/* Responsive Success Engine */
@media (max-width: 992px) {
    .engine-container {
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .engine-hub {
        display: none;
    }

    .factor-node {
        position: static;
        width: 100%;
        transform: none !important;
    }
}

@media (max-width: 600px) {
    .engine-container {
        grid-template-columns: 1fr;
    }
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.footer-address {
    margin-top: 1rem;
    opacity: 0.7;
    line-height: 1.8;
}

.footer-contact h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(9, 198, 72, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(9, 198, 72, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--text-white);
}

/* Responsive */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .ecosystem {
        --ecosystem-logo-size: 10rem;
        --ecosystem-item-width: 15rem;
    }

    .cta-wrapper {
        justify-content: center;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vision-text h2 {
        text-align: center !important;
    }

    .vision-stats {
        justify-content: center;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        display: none;
    }

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

    .nav-links a {
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: flex;
    }

    h1 {
        font-size: 2rem;
    }

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

    .hero {
        padding-top: 120px;
    }

    .ecosystem-slider-track {
        gap: 1.5rem;
    }

    .sub-headline {
        margin-left: auto;
        margin-right: auto;
    }

    .portfolio-item {
        min-height: 280px;
        padding: 1.5rem;
    }

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

    .journey-flow {
        flex-direction: column;
    }

    .journey-arrow {
        transform: rotate(90deg);
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
    }
}