/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a4f8b;
}

/* Navigation Bar */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo h2 {
    color: #1a4f8b;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #1a4f8b;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #1a4f8b;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #1a4f8b;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Contact Us Button */
.nav-btn {
    background: transparent;
    color: #1a4f8b;
    border: 2px solid #1a4f8b;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #1a4f8b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 79, 139, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4f8b 0%, #0d3c6b 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #1a4f8b;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-top-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.founder-image {
    width: 300px;
}

.founder-photo {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.founder-details h3 {
    color: #1a4f8b;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.founder-bio {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.narrative-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1a4f8b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.narrative-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.narrative-section h3 {
    color: #1a4f8b;
    margin-bottom: 1rem;
}

.narrative-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.vision-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1a4f8b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: fit-content;
}

.vision-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.vision-section h3 {
    color: #1a4f8b;
    margin-bottom: 1rem;
}

.vision-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Investment Focus Section */
.investment-focus {
    padding: 100px 0;
    background: #f8f9fa;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
}

.focus-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.focus-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.focus-card h3 {
    color: #1a4f8b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.focus-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Ventures Section */
.ventures {
    padding: 100px 0;
    background: white;
}

.ventures-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.venture-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #1a4f8b;
    transition: all 0.3s ease;
    text-align: center;
}

.venture-card:hover {
    transform: translateY(-3px);
    background: #1a4f8b;
    color: white;
}

.venture-card:hover h3,
.venture-card:hover .venture-desc {
    color: white;
}

.venture-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.venture-card h3 {
    color: #1a4f8b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.venture-desc {
    color: #6c757d;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.venture-stage {
    background: #1a4f8b;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: #1a4f8b;
    color: white;
}

.team-member:hover h3,
.team-member:hover .member-role,
.team-member:hover .member-bio {
    color: white;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: #1a4f8b;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    background: transparent;
    color: #1a4f8b;
    border: 2px solid #1a4f8b;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.read-more-btn:hover {
    background: #1a4f8b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 79, 139, 0.2);
}

.team-member:hover .read-more-btn,
.venture-card:hover .read-more-btn {
    background: white;
    color: #1a4f8b;
    border-color: white;
}

.team-member:hover .read-more-btn:hover,
.venture-card:hover .read-more-btn:hover {
    background: #e6e6e6;
    color: #1a4f8b;
}

/* Footer */
.footer {
    background: #1a4f8b;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .about-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-info {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .founder-image {
        margin: 0 auto;
    }

    .section-title {
        font-size: 2rem;
    }

    .focus-grid,
    .ventures-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Section spacing */
section {
    scroll-margin-top: 80px;
}

/* Performance Detail Pages */
.performance-detail {
    padding: 150px 0 100px;
    background: white;
    margin-top: 70px;
}

.performance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.detail-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.performance-text {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333;
}

.performance-text p {
    margin-bottom: 1.5rem;
}

.appointment-section {
    margin-top: 2rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a4f8b;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a4f8b;
    box-shadow: 0 0 0 3px rgba(26, 79, 139, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    background: #1a4f8b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: #0d3c6b;
}

/* Hero Background Image */
.hero {
    background: linear-gradient(rgba(26, 79, 139, 0.8), rgba(13, 60, 107, 0.8)),
                url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    margin-top: 70px;
}