/* Pristinex Core Labs - Consolidated Custom Styles */

/* ===============================
   CSS Variables & Root Styles
   =============================== */
:root {
    /* Colors */
    --primary-dark: #000000;
    --secondary-dark: #1a1a1a;
    --accent-magenta: #ff0080;
    --accent-magenta-light: #ff66a3;
    --accent-cyan: #00ffff;
    --accent-yellow: #ffff00;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #666666;
    --dark-gray: #333333;
    --black: #000000;
    
    /* Gradients */
    --gradient-ai: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 50%, var(--accent-magenta) 100%);
    --gradient-cyber: linear-gradient(90deg, var(--accent-magenta) 0%, var(--accent-yellow) 100%);
    --gradient-ai-cyan: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 50%, var(--accent-cyan) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 100%);
    --gradient-primary: linear-gradient(90deg, var(--accent-magenta-light) 0%, var(--secondary-dark) 100%);
    
    /* Glows & Shadows */
    --neon-glow-magenta: 0 0 20px rgba(255, 0, 128, 0.9);
    --neon-glow-cyan: 0 0 20px rgba(0, 255, 255, 0.9);
    --neon-glow-yellow: 0 0 20px rgba(255, 255, 0, 0.9);
    
    /* Typography */
    --font-heading: "Bai Jamjuree", sans-serif;
    --font-body: "Poppins", sans-serif;
    --default-font: "Poppins", sans-serif;
    --heading-font: "Bai Jamjuree", sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===============================
   Base Styles
   =============================== */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: var(--default-font);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* ===============================
   Typography
   =============================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

/* Typography Utility Classes */
.text-accent { color: var(--accent-magenta) !important; }
.text-accent-cyan { color: var(--accent-cyan) !important; }
.text-accent-yellow { color: var(--accent-yellow) !important; }
.text-light-gray { color: var(--medium-gray) !important; }

.ai-accent-1 { color: var(--accent-magenta) !important; }
.ai-accent-2 { color: var(--accent-cyan) !important; }
.ai-accent-3 { color: var(--accent-yellow) !important; }

.bg-ai-accent-1 { background-color: var(--accent-magenta) !important; }
.bg-ai-accent-2 { background-color: var(--accent-cyan) !important; }
.bg-ai-accent-3 { background-color: var(--accent-yellow) !important; }

.border-ai-accent-1 { border-color: var(--accent-magenta) !important; }
.border-ai-accent-2 { border-color: var(--accent-cyan) !important; }
.text-primary {
    --bs-text-opacity: 1;
    color: var(--accent-magenta) !important;
}

/* Section Badge Utility */
.section-badge {
    display: inline-block;
    background: transparent;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    /* border: 2px solid transparent; */
    border-bottom: 2px solid;
    border-image: var(--gradient-cyber) 1;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-magenta);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===============================
   Navigation
   =============================== */
.navbar {
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
    transition: var(--transition);
    padding: 1rem 0;
}

.navbar-scrolled {
    background: var(--black) !important;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--accent-magenta);
}

.navbar-brand img {
    filter: brightness(1.1);
    transition: var(--transition);
    margin: -1rem 0;
}

.navbar-brand:hover img {
    filter: brightness(1.3);
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-cyan) !important;
    text-shadow: var(--neon-glow-cyan);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: var(--transition);
    transform: translateX(-50%);
    box-shadow: var(--neon-glow-cyan);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

/* ===============================
   Buttons & CTAs
   =============================== */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-dark);
    border: 2px solid var(--accent-magenta);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-magenta);
    background: var(--gradient-ai);
    color: var(--white);
    border-color: var(--accent-cyan);
}

.btn-outline-primary {
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    background: #111111dd;
     transition: all 0.5s ease;
}

.btn-outline-primary-magenta {
    border: 2px solid var(--accent-magenta);
    color: var(--accent-magenta);
    background: transparent;
    transition: all 0.5s ease;
}

.btn-outline-primary:hover {
    background: var(--gradient-ai-cyan);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-cyan);
    border-color: var(--accent-magenta);
}
.btn-outline-primary-magenta:hover {
    background: var(--gradient-ai);
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-magenta);
    /* border-color: var(--accent-cyan); */
    color:var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

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

/* Button Ripple Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

/* Special Button Styles */
.btn-view-all {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 2px solid #ff0080;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-view-all:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    border-color: #00ffff;
    color: white;
    text-decoration: none;
}

.insight-read-btn {
    background: transparent;
    border: 2px solid #00ffff;
    color: #00ffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.insight-read-btn:hover {
    background: #00ffff;
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
    text-decoration: none;
}

/* ===============================
   Hero Sections
   =============================== */
.hero {
    width: 100%;
    max-width: 100vw;
    max-height: 90vh;
    min-height: 73vh;
    aspect-ratio: 16/9;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #000;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    background: #000;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #02bfd800 0%,
        #02bfd800 40%,
        #000000cc 100%
    );
    z-index: 0;
}

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

.hero h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    margin-top: 2.5rem;
}

.hero-buttons .btn {
    margin: 0.5rem;
    position: relative;
    z-index: 2;
}

/* ===============================
   Sections
   =============================== */
.section {
    padding: 6rem 0;
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-light {
    background: var(--light-gray);
}

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

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   Cards & Components
   =============================== */
.card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* About Feature Cards */
.about-feature-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    position: relative;
    border: 2px solid var(--accent-magenta);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* border-color: var(--accent-cyan); */
}

.about-feature-card.featured-card {
    background: var(--gradient-dark);
    color: var(--white);
    border-color: var(--accent-magenta);
}

.about-feature-card.featured-card:hover {
    box-shadow: var(--neon-glow-magenta);
}

.about-feature-icon {
    width: 70px;
    height: 70px;
    background: var(--black);
    border: 2px solid var(--accent-magenta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.about-feature-card:hover .about-feature-icon {
    background: var(--gradient-ai);
    box-shadow: var(--neon-glow-magenta);
    color: var(--white);
    border-color: var(--accent-cyan);
}

.about-feature-card.featured-card .about-feature-icon {
    background: var(--accent-magenta);
    color: var(--white);
    border-color: var(--accent-cyan);
}

.about-feature-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.about-feature-card.featured-card h5 {
    color: var(--white);
}

.about-feature-card p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.about-feature-card.featured-card p {
    color: rgba(255, 255, 255, 0.8);
}

.about-visual {
    margin-top: -4.5rem;
    position: relative;
    z-index: 2;
}

/* About Image Styling */
.about-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.image-fallback {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background: var(--light-gray);
    border-radius: 15px;
}

/* Venture Cards */
.venture-card {
    background: var(--white);
    padding: 2.5rem;
    height: 100%;
    position: relative;
}

.venture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

.venture-card .venture-icon {
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 2px solid var(--accent-magenta);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-magenta);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.venture-card:hover .venture-icon {
    background: var(--gradient-ai);
    box-shadow: var(--neon-glow-magenta);
    color: var(--white);
}

.venture-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.venture-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

/* Feature Items */
.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--black);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
    position: relative;
}

.feature-icon:hover {
    background: var(--gradient-ai);
    box-shadow: var(--neon-glow-cyan);
    color: var(--white);
    border-color: var(--accent-magenta);
}

.feature-item {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-item h4 {
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.section-dark .feature-item h4 {
    color: var(--white);
}

/* ===============================
   Blog/Insights Cards
   =============================== */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-slow);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 200px;
    background: var(--gradient-ai);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--accent-magenta);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 200px);
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--primary-dark);
}

.blog-excerpt {
    flex-grow: 1;
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    line-height: 1.6;
}

.blog-date {
    color: var(--medium-gray);
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    font-size: 14px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-name {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

/* Horizontal Insight Cards */
.insight-horizontal-card {
    background: linear-gradient(135deg, #dc2f5a 0%, #2d1b2e 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    min-height: 400px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.insight-rotate-right {
    transform: rotate(2.5deg);
}

.insight-rotate-left {
    transform: rotate(-2.5deg);
}

.insight-horizontal-card:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(220, 47, 90, 0.3);
    border-color: rgba(0, 255, 255, 0.5);
}

.insight-card-header {
    height: 140px;
    position: relative;
    overflow: hidden;
}

.insight-header-bg {
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 47, 90, 0.9) 0%, rgba(45, 27, 46, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.insight-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="70" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    opacity: 0.3;
}

.brain-icon {
    text-align: center;
    position: relative;
    z-index: 2;
}

.brain-symbol {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brain-symbol::before {
    content: '🧠';
    font-size: 24px;
    position: absolute;
}

.insight-category-badge {
    /* background: #007bff; */
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.insight-card-content {
    padding: 20px;
    color: white;
    height: calc(100% - 140px);
    display: flex;
    flex-direction: column;
}

.insight-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.insight-date {
    font-weight: 500;
}

.insight-read-time {
    font-weight: 500;
}

.insight-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: var(--transition);
}

.insight-horizontal-card:hover .insight-title {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.insight-excerpt {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 15px;
}

.insight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.view-all-insights-btn {
    margin-top: 20px;
}

/* ===============================
   Team Section
   =============================== */
.team-member {
    text-align: center;
    padding: 1.5rem;
}

.team-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--black);
    border: 3px solid var(--accent-yellow);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-yellow);
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.team-avatar:hover {
    box-shadow: var(--neon-glow-yellow);
    border-color: var(--accent-magenta);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Team Cards (Preview Section) */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

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

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card-back {
    transform: rotateY(180deg);
    background: var(--gradient-dark);
    color: var(--white);
    justify-content: center;
}

.team-avatar-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.team-card .team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-cyan);
    transition: var(--transition);
    position: relative;
}

.team-card[data-accent*="magenta"] .team-avatar {
    border-color: var(--accent-magenta);
}

.team-card[data-accent*="yellow"] .team-avatar {
    border-color: var(--accent-yellow);
}

.team-card .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-avatar img {
    transform: scale(1.1);
}

.team-card .avatar-fallback {
    width: 100%;
    height: 100%;
    background: var(--gradient-ai);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.team-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

.team-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-position {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-magenta);
    margin-bottom: 0.5rem;
}

.team-expertise {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-style: italic;
}

/* ===============================
   CEO Message Section
   =============================== */
.ceo-message-card {
    background: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 50% , rgba(255, 0, 128, 0.8) 100%);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 128, 0.3);
    transition: var(--transition-slow);
}

.ceo-message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="30" r="1.5" fill="rgba(0,255,255,0.08)"/><circle cx="60" cy="70" r="1" fill="rgba(255,0,128,0.06)"/></svg>');
    opacity: 0.3;
}

.ceo-message-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(255, 0, 128, 0.2);
    border-color: var(--accent-cyan);
}

.ceo-avatar-container {
    position: relative;
    display: inline-block;
}

.ceo-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-magenta);
    position: relative;
    transition: var(--transition);
}

.ceo-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ceo-message-card:hover .ceo-avatar img {
    transform: scale(1.05);
}

.ceo-message-card .avatar-fallback {
    width: 100%;
    height: 100%;
    background: var(--gradient-ai);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.avatar-glow {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
}

.leadership-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    background: var(--gradient-cyber);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--black);
    border: 3px solid var(--white);
    animation: float 3s ease-in-out infinite;
}

.ceo-quote {
    position: relative;
    margin-bottom: 2rem;
    margin: 0 auto;
    max-width: 550px;
}

.quote-mark {
    position: absolute;
    top: -34px;
    left: -34px;
    font-size: 3rem;
    color: var(--accent-cyan);
    opacity: 0.5;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
    padding-left: 2rem;
    position: relative;
    z-index: 2;
}

.ceo-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.signature-line {
    height: 2px;
    width: 60px;
    background: var(--gradient-cyber);
    border-radius: 2px;
}

.signature-content {
    flex-grow: 1;
}

.ceo-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.ceo-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.2rem;
}

.company-name {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.leadership-stats {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.message-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===============================
   Startup Journey Accordion
   =============================== */
.startup-journey-accordion-section {
    padding: 6rem 0;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.journey-accordion-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-horizontal-accordion {
    display: flex;
    height: 650px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.journey-panel {
    position: relative;
    background: linear-gradient(135deg, var(--stage-color), rgba(30, 1, 1, 0.95));
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex: 0 0 100px;
    overflow: hidden;
}

.journey-panel:last-child {
    border-right: none;
}

.journey-panel.active {
    flex: 1;
    cursor: default;
}

.journey-panel:hover:not(.active) {
    flex: 0 0 140px;
    filter: brightness(1.1);
}

.journey-panel-tab {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content:center;
    padding-top: 2rem;
    z-index: 2;
}

.tab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: white;
    gap: 1rem;
}

.tab-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--heading-font);
}

.tab-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.journey-panel:hover .tab-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.3);
}

.tab-title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    height:220px;
}

.tab-duration {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 10px;
}

.journey-panel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
}

.journey-panel.active .journey-panel-content {
    opacity: 1;
    visibility: visible;
}

.journey-content-inner {
    padding: 3rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.journey-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.journey-panel-category {
    color: var(--stage-color);
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.journey-panel-nav {
    display: flex;
    gap: 0.5rem;
}

.journey-nav-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--stage-color);
    border-radius: 50%;
    color: var(--stage-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.journey-nav-btn:hover {
    background: var(--stage-color);
    color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.journey-stage-details {
    flex: 1;
    overflow-y: auto;
}

.journey-stage-section {
    margin-bottom: 2rem;
}

.journey-stage-section h5 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.journey-stage-section h5 i {
    color: var(--stage-color);
}

.journey-stage-section p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.journey-stage-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stage-timeline {
    display: flex;
    align-items: center;
    color: var(--stage-color);
    font-weight: 600;
}

.journey-accordion-pagination {
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.journey-pagination-dot {
    width: 50px;
    height: 50px;
    border: 3px solid var(--dot-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dot-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 700;
    background: white;
}

.journey-pagination-dot:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--dot-color);
}

.journey-pagination-dot.active {
    background: var(--dot-color);
    color: white;
    transform: scale(1.2);
}

.journey-vertical-accordion {
    display: block;
}

.journey-accordion-item {
    background: linear-gradient(135deg, var(--stage-color), rgba(255, 255, 255, 0.95));
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.journey-accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.journey-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    color: white;
}

.journey-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    margin-right: 1rem;
    flex-shrink: 0;
}

.journey-header-title {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex: 1;
}

.journey-header-duration {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    margin-right: 1rem;
}

.journey-toggle-icon {
    color: white;
    transition: var(--transition);
}

.journey-accordion-item.active .journey-toggle-icon {
    transform: rotate(180deg);
}

.journey-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.98);
}

.journey-accordion-item.active .journey-accordion-body {
    max-height: 1000px;
}

.journey-body-content {
    padding: 2rem 1.5rem;
}

.journey-body-content .journey-stage-section h6 {
    color: var(--dark-gray);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.journey-body-content .journey-stage-section h6 i {
    color: var(--stage-color);
}

.journey-body-content .journey-stage-section p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

.journey-cta {
    margin-top: 4rem;
}

.cta-container {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(116, 75, 162, 0.08));
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(102,126,234,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(116,75,162,0.1)"/><circle cx="60" cy="70" r="1" fill="rgba(240,147,251,0.1)"/></svg>');
    opacity: 0.4;
}

.cta-container h4 {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-container p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* ===============================
   Manifesto Section
   =============================== */
.manifesto-card {
    /* background: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 50%, var(--accent-magenta) 100%); */
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* border: 2px solid rgba(255, 0, 128, 0.3); */
    transition: var(--transition-slow);
}

.manifesto-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--neon-glow-magenta);
    border-color: var(--accent-cyan);
}

.manifesto-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.manifesto-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-ai-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: relative;
    z-index: 2;
    animation: ai-pulse 2s infinite;
}


@media (max-width: 576px) {
    .manifesto-icon img{
        width:109px;
    }
}

.manifesto-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s infinite;
    z-index:2;
}

.manifesto-quote blockquote {
    font-size: 1.2rem;
    font-style: italic;
    /* color: var(--white); */
    margin: 0;
    line-height: 1.6;
    position: relative;
}

.quote-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--accent-cyan);
    transition: var(--transition);
}

.principle-item:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateX(10px);
}

.principle-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--gradient-ai-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.principle-content h5 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.principle-content p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.manifesto-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ===============================
   Ventures Preview Section
   =============================== */
.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.venture-wrapper {
    display: flex;
    height: 100%;
}

.venture-card-modern {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-slow);
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.venture-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Fallback CSS pattern */
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 0, 0.05) 0%, transparent 50%);
    /* Try to load background image, fallback to CSS pattern */
    background-image: url('/assets/images/ventures/venture-bg-pattern.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
    transition: var(--transition);
}

.venture-card-modern > * {
    position: relative;
    z-index: 1;
}

.venture-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 255, 255, 0.3);
}

.venture-card-modern:hover::before {
    opacity: 0.25;
}

/* Category-specific background patterns */
.venture-card-modern[data-category="AI Development"]::before {
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 0, 128, 0.08) 0%, transparent 40%),
        linear-gradient(45deg, rgba(255, 0, 128, 0.03) 25%, transparent 25%);
}

.venture-card-modern[data-category="Market Intelligence"]::before {
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(0, 255, 255, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, rgba(0, 255, 255, 0.03) 25%, transparent 25%);
}

.venture-card-modern[data-category="E-commerce AI"]::before {
    background: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 0, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 0, 0.08) 0%, transparent 40%),
        linear-gradient(90deg, rgba(255, 255, 0, 0.03) 50%, transparent 50%);
}

.venture-card-modern[data-category="FinTech"]::before {
    background: 
        radial-gradient(circle at 25% 75%, rgba(234, 88, 12, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(234, 88, 12, 0.08) 0%, transparent 40%);
}

.venture-card-modern[data-category="EdTech"]::before {
    background: 
        radial-gradient(circle at 50% 20%, rgba(124, 58, 237, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.08) 0%, transparent 40%);
}

.venture-card-modern[data-category="Social Impact"]::before {
    background: 
        radial-gradient(circle at 60% 40%, rgba(22, 163, 74, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(22, 163, 74, 0.08) 0%, transparent 40%);
}

.venture-top-border {
    height: 4px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.venture-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.venture-icon-container {
    position: relative;
    display: inline-block;
}

.venture-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: var(--gradient-ai);
    color: var(--white);
    margin: 0 auto 1rem;
    transition: var(--transition);
}

.venture-card-modern:hover .venture-icon-modern {
    transform: scale(1.1);
    box-shadow: var(--neon-glow-magenta);
}

/* Venture Logo Styles */
.venture-logo-modern {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 0, 128, 0.2);
    transition: var(--transition);
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.venture-logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.2);
    transition: var(--transition);
}

.venture-card-modern:hover .venture-logo-modern {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-magenta);
}

.venture-card-modern:hover .venture-logo-img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.venture-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.venture-subtitle {
    font-size: 0.9rem;
    color: var(--accent-magenta);
    font-weight: 600;
    margin-bottom: 1rem;
}

.venture-content {
    padding: 0 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.venture-description {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.venture-features {
    margin-bottom: 1.5rem;
}

.venture-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.venture-feature i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.venture-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: rgba(0, 255, 0, 0.1);
    color: #00cc00;
    border: 1px solid rgba(0, 255, 0, 0.3);
}

.status-development {
    background: rgba(255, 165, 0, 0.1);
    color: #ff8800;
    border: 1px solid rgba(255, 165, 0, 0.3);
}

.status-planning {
    background: rgba(0, 255, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.venture-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Venture Actions & Buttons */
.venture-actions {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    padding: 1.25rem;
    border-top: 1px solid rgba(255, 0, 128, 0.1);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 0, 128, 0.02) 100%);
}

.btn-venture-primary {
    /* background: var(--gradient-cyber); */
    color: var(--black);
    border: 2px solid var(--accent-magenta);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    flex: 1;
    justify-content: center;
}

.btn-venture-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--neon-glow-magenta);
    color: var(--black);
    text-decoration: none;
}

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

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

.btn-venture-secondary {
    background: rgba(var(--bs-dark-rgb), 1);
    color: var(--accent-cyan);
    /* border: 2px solid rgba(var(--bs-dark-rgb), 1); */
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-venture-secondary:hover {
    background: var(--accent-cyan);
    color: var(--black);
    box-shadow: var(--neon-glow-cyan);
    transform: scale(1.05);
    text-decoration: none;
}

/* Investor-Friendly Venture Meta */
.venture-investor-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 1rem;
    /* background: rgba(255, 0, 128, 0.03); */
    border-radius: 12px;
    border: 1px solid rgba(255, 0, 128, 0.1);
}

.venture-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.venture-meta-icon {
    width: 18px;
    color: var(--accent-magenta);
    flex-shrink: 0;
}

.venture-meta-label {
    font-weight: 600;
    color: var(--dark-gray);
    min-width: 80px;
}

.venture-meta-value {
    color: var(--medium-gray);
    flex: 1;
}

.venture-stage-active { color: var(--accent-magenta); }
.venture-stage-pilot { color: rgb(81, 34, 192); }
.venture-stage-scaling { color: var(--accent-magenta); }
.venture-stage-development { color: var(--medium-gray); }
.venture-stage-beta { color: #ea580c; }

/* Venture Kicker Badge */
.venture-kicker {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.venture-card-modern:hover .venture-kicker {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Venture Cards */
@media (max-width: 768px) {
    .venture-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-venture-primary {
        width: 100%;
    }
    
    .btn-venture-secondary {
        align-self: center;
    }
    
    .venture-investor-meta {
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .venture-meta-item {
        font-size: 0.85rem;
    }
    
    .venture-meta-label {
        min-width: 70px;
    }
}

@media (max-width: 576px) {
    .venture-title {
        font-size: 1.25rem;
        line-height: 1.3;
    }
    
    .venture-title .text-muted {
        display: block;
        margin-top: 0.25rem;
    }
    
    .venture-kicker {
        font-size: 0.65rem;
        padding: 3px 8px;
        top: 12px;
        left: 12px;
    }
    
    .venture-logo-modern {
        width: 70px;
        height: 70px;
        padding: 8px;
    }
}

/* ===============================
   Global Partners Section
   =============================== */
.global-map-container {
    background: linear-gradient(135deg, var(--black) 0%, var(--secondary-dark) 50%, rgba(0, 255, 255, 0.1) 100%);
    border-radius: 25px;
    padding: 2rem;
    border: 2px solid rgba(0, 255, 255, 0.3);
    transition: var(--transition-slow);
    height: 100%;
}

.global-map-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow-cyan);
}

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

.map-header h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.world-map {
    position: relative;
}

.map-background {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.map-svg {
    width: 100%;
    height: 250px;
}

.continent {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 2;
    stroke-linecap: round;
}

.partner-dot {
    cursor: pointer;
    transition: var(--transition);
}

.partner-dot.technology {
    fill: var(--accent-magenta);
}

.partner-dot.research {
    fill: var(--accent-cyan);
}

.partner-dot.investment {
    fill: var(--accent-yellow);
}

.partner-dot.innovation,
.partner-dot.integration,
.partner-dot.strategic {
    fill: var(--white);
}

.partner-dot:hover {
    transform: scale(1.5);
    filter: drop-shadow(0 0 10px currentColor);
}

.map-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.map-stats .stat-item {
    flex: 1;
}

.map-stats .stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-cyan);
    font-family: var(--heading-font);
}

.map-stats .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partners-scroll-container {
    height: 100%;
}

.partners-header h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.partners-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.partners-carousel {
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.partners-track {
    display: flex;
    gap: 1rem;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-partners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    flex-shrink: 0;
    width: 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-fallback {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
}

.logo-fallback i {
    font-size: 2rem;
}

.logo-fallback span {
    font-size: 0.8rem;
    font-weight: 700;
}

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

.partner-info h6 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.partner-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.partner-location i {
    margin-right: 0.3rem;
    color: var(--accent-cyan);
}

.partnership-type {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.partnership-type.technology {
    background: rgba(255, 0, 128, 0.2);
    color: var(--accent-magenta);
    border: 1px solid var(--accent-magenta);
}

.partnership-type.research {
    background: rgba(0, 255, 255, 0.2);
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
}

.partnership-type.investment {
    background: rgba(255, 255, 0, 0.2);
    color: var(--accent-yellow);
    border: 1px solid var(--accent-yellow);
}

.partnership-type.innovation,
.partnership-type.integration,
.partnership-type.strategic {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partner-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, var(--accent-cyan), transparent);
    border-radius: 15px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.partner-card:hover .partner-glow {
    opacity: 0.3;
    animation: rotate-border 3s linear infinite;
}

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

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

.category-filters {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 25px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-cyber);
    color: var(--black);
    border-color: var(--accent-cyan);
}

/* ===============================
   Process/Approach Section
   =============================== */
.process-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--black);
    border: 2px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gradient-ai);
    box-shadow: var(--neon-glow-cyan);
    color: var(--white);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan) 0%, var(--accent-magenta) 50%, transparent 100%);
    z-index: -1;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.process-step:last-child::after {
    display: none;
}

/* ===============================
   Forms
   =============================== */
.form-floating {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 0.2rem rgba(0, 255, 255, 0.25);
    background-color: rgba(0, 0, 0, 0.05);
}
.bg-dark .form-control:focus {
    color:#fff;
}
.form-label {
    font-weight: 500;
    color: var(--dark-gray);
}

/* ===============================
   Footer
   =============================== */
.footer {
    background: var(--gradient-dark) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-title {
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-magenta);
    padding-left: 5px;
    text-shadow: 0 0 5px rgba(255, 0, 128, 0.5);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-cyber);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow-cyan);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent-yellow);
    text-shadow: 0 0 5px rgba(255, 255, 0, 0.5);
}

/* ===============================
   Back to Top Button
   =============================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-ai);
    border: 2px solid var(--accent-magenta);
    border-radius: 50%;
    color: var(--accent-magenta);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--gradient-ai);
    box-shadow: var(--neon-glow-magenta);
    color: var(--white);
}

/* ===============================
   Horizontal Accordion
   =============================== */
.horizontal-accordion {
    display: flex;
    height: 600px;
    max-width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.accordion-item {
    flex: 1;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    position: relative;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-right: 2px solid rgba(255, 255, 255, 0.1);
}

.accordion-item:last-child {
    border-right: none;
}

.accordion-item.active {
    flex: 3;
}

.accordion-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    transition: var(--transition);
}

.accordion-item:not(.active) .accordion-header {
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

.accordion-item.active .accordion-header {
    align-items: flex-start;
    text-align: left;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.8);
}

.header-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--accent-magenta);
    border-radius: 50%;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 40px;
    text-align: center;
    margin-bottom: 1rem;
}

.accordion-item:not(.active) .header-number {
    margin-bottom: 0;
    margin-right: 1rem;
}

.header-category {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.accordion-body {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-body {
    opacity: 1;
    visibility: visible;
}

.body-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.body-quote blockquote {
    border-left: 4px solid var(--accent-cyan);
    padding-left: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 2rem 0;
}

.body-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.body-author .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-ai);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.body-author .author-info {
    display: flex;
    flex-direction: column;
}

.body-author .author-name {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.body-author .author-position {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
}

.body-author .author-company {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

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

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--neon-glow-magenta); }
    33% { box-shadow: var(--neon-glow-cyan); }
    66% { box-shadow: var(--neon-glow-yellow); }
}

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

@keyframes ai-pulse {
    0% { 
        border-color: var(--accent-magenta);
        box-shadow: 0 0 5px rgba(255, 0, 128, 0.3);
    }
    33% { 
        border-color: var(--accent-cyan);
        box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    }
    66% { 
        border-color: var(--accent-yellow);
        box-shadow: 0 0 10px rgba(255, 255, 0, 0.4);
    }
    100% { 
        border-color: var(--accent-magenta);
        box-shadow: 0 0 5px rgba(255, 0, 128, 0.3);
    }
}

.ai-pulse {
    animation: ai-pulse 4s ease-in-out infinite;
}

@keyframes insight-float {
    0%, 100% { transform: translateY(0px) rotate(2.5deg); }
    50% { transform: translateY(-8px) rotate(2.5deg); }
}

@keyframes insight-float-left {
    0%, 100% { transform: translateY(0px) rotate(-2.5deg); }
    50% { transform: translateY(-8px) rotate(-2.5deg); }
}

.insight-rotate-right {
    animation: insight-float 8s ease-in-out infinite;
}

.insight-rotate-left {
    animation: insight-float-left 8s ease-in-out infinite;
    animation-delay: 3s;
}

.insight-horizontal-card:hover {
    animation: none;
}

/* ===============================
   AI-Themed Enhancements
   =============================== */
.ai-grid-bg {
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.neural-network-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><filter id="glow"><feGaussianBlur stdDeviation="3" result="coloredBlur"/><feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge></filter></defs><g stroke="%2300ffff" stroke-width="1" fill="none" opacity="0.3" filter="url(%23glow)"><path d="M100,200 Q300,100 500,200 T900,200"/><path d="M200,300 Q400,200 600,300 T1000,300"/><path d="M150,400 Q350,300 550,400 T950,400"/><circle cx="100" cy="200" r="3" fill="%23ff0080"/><circle cx="500" cy="200" r="3" fill="%2300ffff"/><circle cx="900" cy="200" r="3" fill="%23ffff00"/></g></svg>');
    opacity: 0.2;
    z-index: -1;
}

.glitch-text {
    position: relative;
}

.hologram-border {
    border: 2px solid transparent;
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-magenta), var(--accent-yellow)) border-box;
    background-clip: padding-box, border-box;
}

.cyber-button {
    background: var(--gradient-dark);
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.matrix-text {
    font-family: 'Courier New', monospace;
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    animation: matrix-flicker 2s infinite;
}

@keyframes matrix-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ===============================
   RESPONSIVE DESIGN - CONSOLIDATED
   =============================== */

/* Large Screens (992px and down) */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .lead {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    .horizontal-accordion {
        flex-direction: column;
        height: auto;
    }
    
    .accordion-item {
        flex: none;
        border-right: none;
        border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    }
    
    .accordion-item:not(.active) .accordion-header {
        writing-mode: initial;
        text-orientation: initial;
    }
    
    /* CEO message adjustments */
    .ceo-message-card {
        padding: 2rem;
    }
    
    .ceo-avatar {
        width: 150px;
        height: 150px;
    }
    
    .leadership-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Journey accordion responsive adjustments */
    .journey-accordion-wrapper {
        padding: 0 1rem;
    }
}

/* Medium Screens (768px and down) */
@media (max-width: 768px) {
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        max-width: 100vw !important;
    }
    
    h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .hero {
        max-height: 100vh;
        min-height: 100vh;
        aspect-ratio: auto;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
    }
    
    .hero .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
    }
    
    .hero-buttons {
        margin-top: 1.5rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 90%;
        max-width: 300px;
        margin: 0.5rem auto;
        padding: 1rem;
    }
    
    .section {
        padding: 3rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .venture-card,
    .feature-item {
        margin-bottom: 2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
    }
    
    /* Insights cards mobile fix */
    .insight-horizontal-card {
        min-height: 350px;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
        transform: none !important;
        animation: none !important;
    }
    
    .insight-horizontal-card:hover {
        transform: translateY(-5px) scale(1.02) !important;
        animation: none !important;
    }
    
    .insight-card-content {
        padding: 15px;
    }
    
    .insight-title {
        font-size: 1rem;
        word-wrap: break-word;
    }
    
    .insight-excerpt {
        font-size: 0.85rem;
        word-wrap: break-word;
    }
    
    .insight-rotate-right,
    .insight-rotate-left {
        transform: rotate(0deg) !important;
        animation: none !important;
    }
    
    /* Blog cards mobile fix */
    .blog-card {
        margin-bottom: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .blog-card:hover {
        transform: translateY(-5px);
    }
    
    .blog-content {
        padding: 1rem;
    }
    
    /* Fix card spacing on mobile */
    .col-lg-4.col-md-6.mb-5 {
        margin-bottom: 2rem !important;
    }
    
    /* Ensure proper spacing between sections */
    .section.section-light {
        padding: 2rem 0;
    }
    
    /* Ensure all rows and columns fit properly */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
    
    [class*="col-"] {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Accordion adjustments */
    .accordion-header {
        padding: 1.5rem;
    }
    
    .header-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        line-height: 35px;
    }
    
    .body-title {
        font-size: 1.4rem;
    }
    
    .body-quote blockquote {
        padding-left: 2rem;
        font-size: 1rem;
    }
    
    .body-author {
        gap: 0.8rem;
    }
    
    .body-author .author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* About cards mobile adjustments */
    .about-feature-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-visual {
        margin-top: -2rem;
    }
}

/* Small Screens (576px and down) */
@media (max-width: 576px) {
    .hero {
        max-height: 100vh;
        padding: 0;
        width: 100vw !important;
        max-width: 100vw !important;
        min-height: 100vh !important;
        aspect-ratio: auto !important;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero .lead {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 0.5rem 0;
        padding: 1rem;
    }
    
    .venture-card,
    .blog-content {
        padding: 1.5rem;
    }
    
    /* Insights mobile optimization */
    .insight-horizontal-card {
        min-height: 320px;
        transform: none !important;
        animation: none !important;
    }
    
    .insight-card-header {
        height: 100px;
    }
    
    .brain-symbol {
        width: 40px;
        height: 40px;
    }
    
    .brain-symbol::before {
        font-size: 20px;
    }
    
    .insight-card-content {
        padding: 15px;
        height: calc(100% - 100px);
    }
    
    .insight-title {
        font-size: 0.95rem;
    }
    
    .insight-excerpt {
        font-size: 0.8rem;
    }
    
    .insight-read-btn {
        padding: 6px 15px;
        font-size: 0.75rem;
    }
    
    /* Container fixes for small screens */
    .container {
        max-width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .container,
    .container-fluid {
        max-width: 100vw !important;
        width: 100vw !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* Text overflow fixes */
    .insight-title,
    .blog-title {
        word-wrap: break-word;
        hyphens: auto;
    }
    
    /* Ensure no elements exceed viewport width */
    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    /* Accordion mobile adjustments */
    .accordion-header {
        padding: 1rem;
    }
    
    .header-category {
        font-size: 0.85rem;
    }
    
    .header-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .body-title {
        font-size: 1.1rem;
    }
    
    .body-author {
        gap: 0.75rem;
    }
    
    .body-author .author-avatar {
        width: 45px;
        height: 45px;
    }
    
    .body-author .author-name {
        font-size: 0.9rem;
    }
    
    .body-author .author-position,
    .body-author .author-company {
        font-size: 0.8rem;
    }
    
    /* About cards further mobile optimization */
    .about-feature-card {
        padding: 1.25rem 0.75rem;
    }
    
    .about-feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .about-feature-card h5 {
        font-size: 1.1rem;
    }
    
    .about-feature-card p {
        font-size: 0.9rem;
    }
    
    /* CEO message mobile adjustments */
    .ceo-message-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .ceo-avatar {
        width: 120px;
        height: 120px;
    }
    
    .quote-text {
        font-size: 1.1rem;
        padding-left: 0rem;
    }
    
    .ceo-signature {
        justify-content: center;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .signature-line {
        width: 40px;
    }
    
    .message-actions {
        justify-content: center;
    }
    
    .message-actions .btn {
        flex: 1;
        min-width: 180px;
    }
    
    .leadership-stats .col-4 {
        margin-bottom: 1rem;
    }
    
    /* Team cards mobile adjustments */
    .team-card {
        min-height: 350px;
    }
    
    .team-card .team-avatar {
        width: 100px;
        height: 100px;
    }
    
    /* Journey accordion mobile adjustments */
    .startup-journey-accordion-section {
        padding: 4rem 0;
    }
    
    .journey-accordion-item {
        border-radius: 15px;
    }
    
    .journey-accordion-header {
        padding: 1.25rem;
    }
    
    .journey-header-title {
        font-size: 1rem;
    }
    
    .journey-header-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cta-container {
        padding: 2rem 1.5rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* Manifesto mobile adjustments */
    .manifesto-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .manifesto-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .manifesto-actions {
        justify-content: center;
    }
    
    .manifesto-actions .btn {
        flex: 1;
        min-width: 200px;
    }
    
    /* Ventures grid mobile adjustments */
    .ventures-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .venture-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .venture-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    /* Global partners mobile adjustments */
    .partner-card {
        width: 250px;
    }
    
    .global-map-container {
        padding: 1.5rem;
    }
    
    .map-svg {
        height: 200px;
    }
    
    .partner-card {
        width: 220px;
        padding: 1rem;
    }
    
    .partner-logo {
        width: 60px;
        height: 60px;
    }
    
    .category-filters {
        gap: 0.3rem;
    }
    
    .category-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Extra Small Screens (480px and down) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero .lead {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-buttons {
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero-content {
        padding: 1.5rem 10px;
        width: 100%;
        max-width: 100%;
    }
}

/* ===============================
   Print & Accessibility Styles
   =============================== */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    #particles-js {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero {
        background: white !important;
        color: black !important;
        min-height: auto !important;
    }
}

@media (prefers-color-scheme: dark) {
    /* Optional dark mode styles can be added here */
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
