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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #333;
    --light-gray: #ecf0f1;
    --medium-gray: #95a5a6;
    --dark-gray: #2c3e50;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

/* Navigation */
.navbar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

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

.logo-link:hover {
    opacity: 0.9;
}

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

.nav-brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    cursor: pointer;
}

.nav-menu .dropdown-toggle::after {
    content: '▾';
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-menu .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-color);
    min-width: 220px;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: rgba(89, 239, 250, 0.1);
    color: var(--secondary-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(60deg, rgba(255,255,255,0.02) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02)),
        linear-gradient(60deg, rgba(255,255,255,0.02) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
}

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

.hero-content {
    flex: 1;
    text-align: left;
}

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

.hero-logo {
    max-width: 450px;
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero .tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #59effa;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3.4rem;
}

.btn-hero {
    margin-top: 1rem;
    background-color: var(--white);
    color: var(--primary-color);
    font-size: 1.1rem;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-hero:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-hero-outline{
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-hero-outline:hover{
    background: var(--white);
    color: var(--primary-color);
}

/* What We Do Section */
.what-we-do {
    background-color: var(--white);
    padding: 4.25rem 0 5.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.what-we-do h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.what-we-do h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #59effa;
    border-radius: 2px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.process-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    color: var(--white);
    transition: transform 0.3s ease;
}

.process-item:hover .process-icon {
    transform: scale(1.1);
}

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

.process-item p {
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.85;
    line-height: 1.5;
}

/* Ventures Section */
.ventures {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, #e3e9ed 100%);
    position: relative;
}

.ventures::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(52, 152, 219, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(44, 62, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.ventures h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    z-index: 1;
    padding-bottom: 1rem;
}

.ventures h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #59effa;
    border-radius: 2px;
}

.ventures-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 3rem;
    opacity: 0.85;
    position: relative;
    z-index: 1;
}

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

.venture-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.venture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    border-color: rgba(52, 152, 219, 0.3);
}

.venture-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    border-radius: 0 0 8px 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.venture-card:hover::after {
    opacity: 1;
}

.venture-logo {
    width: 140px;
    height: 140px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.venture-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.venture-badge::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--white);
    animation: pulse 2s ease-in-out infinite;
}

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

.venture-card.current .venture-badge {
    background-color: var(--success-color);
}

.venture-card.coming-soon .venture-badge {
    background-color: var(--secondary-color);
}

.venture-card.future .venture-badge {
    background-color: var(--medium-gray);
}

.venture-card.legacy .venture-badge {
    background-color: var(--warning-color);
}

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

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background-color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.cta h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #59effa;
    border-radius: 2px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

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

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

.footer-logo {
    height: 105px;
    width: auto;
    object-fit: contain;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-copyright {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Venture Detail Pages */
.venture-detail {
    padding: 3rem 0;
}

.venture-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--light-gray);
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.status-badge.live {
    background-color: var(--success-color);
}

.status-badge.coming-soon {
    background-color: var(--secondary-color);
}

.status-badge.future {
    background-color: var(--medium-gray);
}

.status-badge.legacy {
    background-color: var(--warning-color);
}

.venture-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.tagline {
    font-size: 1.3rem;
    color: var(--medium-gray);
}

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

.venture-content section {
    margin-bottom: 2.5rem;
}

.venture-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.venture-content ul {
    margin-left: 1.5rem;
}

.venture-content li {
    margin-bottom: 0.5rem;
}

/* Customers Section Two-Column Layout */
.customers-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.customers-image {
    flex: 0 0 40%;
}

.customers-text {
    flex: 1;
}

@media (max-width: 768px) {
    .customers-content {
        flex-direction: column;
    }

    .customers-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

/* Features Section Two-Column Layout */
.features-content {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-top: 1.5rem;
}

.features-text {
    flex: 1;
}

.features-image {
    flex: 0 0 40%;
}

@media (max-width: 768px) {
    .features-content {
        flex-direction: column;
    }

    .features-image {
        flex: 0 0 auto;
        width: 100%;
    }
}

.cta-section {
    text-align: center;
    margin: 3rem 0;
}

.back-link {
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forward-link {
    margin-top: 3rem;
    text-align: center;
}

.back-link a, .forward-link a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.back-link a:hover, .forward-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .back-link {
        flex-direction: column;
        gap: 1rem;
    }
}

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(30deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(150deg, rgba(255,255,255,0.03) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,0.03) 87.5%, rgba(255,255,255,0.03)),
        linear-gradient(60deg, rgba(255,255,255,0.02) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02)),
        linear-gradient(60deg, rgba(255,255,255,0.02) 25%, transparent 25.5%, transparent 75%, rgba(255,255,255,0.02) 75%, rgba(255,255,255,0.02));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
    z-index: 0;
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #59effa;
    margin-bottom: 0;
}

/* Who We Are Section */
.who-we-are {
    background-color: var(--white);
    padding: 4rem 0;
}

.who-we-are .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.who-we-are-content, .our-vision-content{
    display: flex;
    gap: 3rem;
    align-items: stretch;
}

.narrative-section {
    flex: 1;
}

.narrative-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    text-align: left;
    position: relative;
    padding-bottom: 1rem;
}

.narrative-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #59effa;
    border-radius: 2px;
}

.narrative-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

.closing-statement {
    margin-top: 2rem;
    font-size: 1.15rem;
    text-align: left;
    color: var(--text-color);
}

.closing-statement strong {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.quote-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-section blockquote {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eef2 100%);
    padding: 3rem 2.5rem;
    border-left: 5px solid var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin: 0;
    position: relative;
    overflow: hidden;
}

.quote-section blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, rgba(44, 62, 80, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(44, 62, 80, 0.02) 87.5%, rgba(44, 62, 80, 0.02)),
        linear-gradient(150deg, rgba(44, 62, 80, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(44, 62, 80, 0.02) 87.5%, rgba(44, 62, 80, 0.02)),
        linear-gradient(30deg, rgba(44, 62, 80, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(44, 62, 80, 0.02) 87.5%, rgba(44, 62, 80, 0.02)),
        linear-gradient(150deg, rgba(44, 62, 80, 0.02) 12%, transparent 12.5%, transparent 87%, rgba(44, 62, 80, 0.02) 87.5%, rgba(44, 62, 80, 0.02)),
        linear-gradient(60deg, rgba(52, 152, 219, 0.015) 25%, transparent 25.5%, transparent 75%, rgba(52, 152, 219, 0.015) 75%, rgba(52, 152, 219, 0.015)),
        linear-gradient(60deg, rgba(52, 152, 219, 0.015) 25%, transparent 25.5%, transparent 75%, rgba(52, 152, 219, 0.015) 75%, rgba(52, 152, 219, 0.015));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
    z-index: 0;
}

.quote-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.quote-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .who-we-are-content {
        flex-direction: column;
        gap: 2rem;
    }

    .narrative-section h2 {
        text-align: center;
    }
}

/* Page Content */
.page-content {
    min-height: 60vh;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Legal Content Pages */
.legal-content {
    padding: 3rem 0 5rem;
    background-color: var(--white);
}

.legal-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-content .last-updated {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light-gray);
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 1.05rem;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-color);
}

.legal-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Overview Cards Section */
.overview-cards-section {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.overview-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.overview-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.overview-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.overview-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.overview-card ul {
    margin-left: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.overview-card li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

@media (max-width: 968px) {
    .overview-cards {
        grid-template-columns: 1fr;
    }
}

.about-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.about-section:nth-child(even) {
    background-color: var(--light-gray);
}

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

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #59effa;
    border-radius: 2px;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-section ul {
    margin-left: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-section li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

/* Featured Sections with Pattern */
.featured-section {
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(52, 152, 219, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(89, 239, 250, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 48%, rgba(52, 152, 219, 0.02) 49%, rgba(52, 152, 219, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(89, 239, 250, 0.02) 49%, rgba(89, 239, 250, 0.02) 51%, transparent 52%);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    background-position: 0 0, 0 0, 0 0, 30px 30px;
    pointer-events: none;
    z-index: 0;
}

.featured-section .container {
    position: relative;
    z-index: 1;
}

.section-with-icon {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-with-icon svg {
    flex-shrink: 0;
}

.title-icon {
    width: 72px;
    height: 72px;
    margin-left: -20px;
    flex-shrink: 0;
    filter: brightness(0) saturate(100%) invert(23%) sepia(12%) saturate(1840%) hue-rotate(163deg) brightness(95%) contrast(91%);
}

.mission-vision-approach .mva-grid {
    display: flex;
    align-items: stretch;
    gap: 3rem;              /* space between panel and content */
}

.mva-panel {
    flex: 0 0 30%;          /* left column width (adjust 28–35% to taste) */
}

.mva-panel-inner {
    height: 100%;
    min-height: 100%;
    border-radius: 12px;
    background-image: url("./images/vision-panel.png"); /* your panel image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Right column with the three stacked sections */
.mva-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;            /* space between Mission, Vision, Approach blocks */
}

/* Optional: match existing section spacing */
.mva-block p:last-child {
    margin-bottom: 0;
}

/* Responsive tweak: stack panel above content on mobile */
@media (max-width: 768px) {
    .mission-vision-approach .mva-grid {
        flex-direction: column;
    }

    .mva-panel {
        flex: 0 0 auto;
        height: 260px;      /* or whatever height works on mobile */
    }

    .mva-panel-inner {
        height: 100%;
    }
}


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

.value-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    border-color: rgba(52, 152, 219, 0.3);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    color: var(--white);
    transition: transform 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* Overall CTA block */
.team-cta {
    text-align: center;
    padding: 72px 0 84px;          /* slightly generous vertical space */
    background-color: #f5fafc;     /* very light blue tint (optional) */
}

/* Headline */
.team-cta .cta-heading {
    font-size: 2.4rem;             /* keep strong, but not shouting */
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;           /* tighten space before underline */
}

/* Underline accent */
.team-cta .cta-underline {
    display: inline-block;
    width: 56px;                   /* shorter, more elegant */
    height: 3px;
    border-radius: 999px;
    background-color: #59effa;
    margin-bottom: 24px;           /* space between underline & subtitle */
}

/* Supporting line */
.team-cta .cta-subtitle {
    font-size: 1.3rem;
    color: rgba(44, 62, 80, 0.85); /* slightly softer than heading */
    margin: 0 0 32px;              /* clear gap before button */
}

/* Button */
.team-cta .cta-button {
    display: inline-block;
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;            /* match your card/button style */
    background: linear-gradient(135deg, #3498db, #1f78c7);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.15s ease, box-shadow 0.15s ease,
                background 0.15s ease;
}

.team-cta .cta-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
    background: linear-gradient(135deg, #3fa4e7, #2c82d4);
}

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

.team-member {
    text-align: center;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

.member-photo {
    margin-bottom: 1.5rem;
}

.placeholder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.member-photo-img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

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

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

.team-member .bio {
    color: var(--text-color);
    text-align: left;
    margin-bottom: 1rem;
}

.join-team {
    text-align: center;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.join-team h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.join-team p {
    margin-bottom: 1.5rem;
}

/* Contact Page */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-info {
    padding: 1rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.info-item a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    flex-direction: row;
    align-items: center;
}

.social-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.social-link svg {
    flex-shrink: 0;
}

.social-link:hover {
    color: var(--secondary-color);
}

/*Venture Pages*/

/* Hero Section */
.venture-hero-split {
  padding: 70px 0 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.venture-hero-deluxx {
  background: linear-gradient(135deg, #0d2538 0%, #153d58 100%);
}

.hero-split-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 48px;
  align-items: center;
}

.hero-split-left {
  max-width: 520px;
}

.hero-split-right {
  display: flex;
  justify-content: flex-start;
}

.p-topmargin{
    margin-top: 50px;
}

.venture-status-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venture-status-live {
  background-color: var(--success-color);
  color: var(--white);
}

.venture-status-legacy {
  background-color: var(--warning-color);
  color: var(--white);
}

.venture-status-soon{
    background-color: var(--secondary-color);
  color: var(--white);
}

.venture-status-future{
    background-color: var(--medium-gray);
  color: var(--white);
}

.venture-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1.1;
}

.venture-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
  opacity: 0.95;
}

.venture-tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #59effa;
  margin-bottom: 32px;
}

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

.deluxx-hero-card {
  width: 340px;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  background: #061325;
}

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

/* Venture Sections */
.venture-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.venture-alt-bg {
  background-color: var(--light-gray);
}

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

.venture-text {
  flex: 1;
}

.venture-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}

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

.venture-text ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.venture-text li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.venture-image, .venture-customer {
  flex: 1;
}

.venture-image img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  opacity: 0.9;
}

.venture-customer img {
  width: 60%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* Bullet list styling */
.bullet-list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

/* Center utility */
.center {
  text-align: center;
  justify-content: center;
}

/* Steps Section */
.venture-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-color: var(--secondary-color);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 48px;
  margin-bottom: 1rem;
}

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

.step p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-color);
  margin: 0;
}

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

.stat-card {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e8eef2 100%);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid var(--secondary-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

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

/* CTA Section */
.venture-cta {
  background: linear-gradient(135deg, var(--light-gray) 0%, #e3e9ed 100%);
  padding: 5rem 0;
}

.venture-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.venture-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

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

/* Button Styles */
.btn-primary {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  color: var(--white);
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  padding: 1rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

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


/* Responsive Design */
/* Tablet and Mobile - Hamburger Menu */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 300px;
        max-width: 80%;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 2rem 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.3);
        transition: right 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu > li > a {
        display: block;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background-color: rgba(0,0,0,0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        max-height: 500px;
    }

    .nav-menu .dropdown-toggle::after {
        margin-left: auto;
    }

    .dropdown-menu a {
        padding: 0.75rem 2.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
}

@media (max-width: 768px) {

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

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

    .hero h2 {
        font-size: 2rem;
    }

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

    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-we-do {
        padding: 2rem 0;
    }

    .what-we-do h3 {
        font-size: 1.5rem;
    }

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

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

    /* Venture Pages Mobile */
    .hero-split-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-split-left {
        max-width: 100%;
    }

    .hero-split-right {
        justify-content: center;
    }

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

    .venture-subtitle {
        font-size: 1.2rem;
    }

    .deluxx-hero-card {
        width: 280px;
    }

    .venture-two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

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

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

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

    .venture-header h1 {
        font-size: 2rem;
    }

    .page-content h1 {
        font-size: 2rem;
    }
}
