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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --navy: #1a1a2e;
    --light-navy: #2d2d54;
    --gold: #d4af37;
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-300: #a8a8b3;
    --gray-600: #6c757d;
    --gray-700: #495057;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--gray-700);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-padding {
    padding: 5rem 0;
}

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

.max-width-4xl {
    max-width: 56rem;
    margin: 0 auto;
}

/* Background Colors */
.bg-white {
    background-color: var(--gray-50);
}

.bg-gray-50 {
    background-color: var(--gray-50);
}

.navy-bg {
    background-color: var(--navy);
}

.light-navy-bg {
    background-color: var(--light-navy);
}

/* Text Colors */
.text-white {
    color: var(--white);
}

.text-gray-300 {
    color: var(--gray-300);
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(45, 45, 84, 0.8)), 
                url('../assets/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), #b8941f);
    color: var(--navy);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.full-width {
    width: 100%;
    justify-content: center;
}

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

.about-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s ease;
}

.about-item i {
    font-size: 4rem;
    color: var(--navy);
    margin-bottom: 1rem;
    display: block;
}

.about-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.hover-gold:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.hover-gold:hover i {
    color: var(--gold);
}

/* Investment Thesis */
.section-header {
    margin-bottom: 4rem;
}

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

.thesis-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.thesis-icon {
    margin-bottom: 1.5rem;
}

.thesis-icon i {
    font-size: 4rem;
}

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

.thesis-card p {
    color: var(--gray-300);
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.portfolio-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.portfolio-icon i {
    font-size: 2rem;
    color: var(--white);
}

.portfolio-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.portfolio-stage {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.portfolio-description {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* For Investors Section */
.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.investor-benefit {
    text-align: center;
    color: var(--white);
}

.investor-benefit i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.investor-benefit h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.investor-benefit p {
    color: var(--gray-300);
}

.contact-form {
    background-color: var(--gray-50);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 64rem;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.contact-item p {
    color: var(--gray-600);
}

.contact-highlight {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.contact-highlight h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.contact-highlight p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--white);
}

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

.footer-content p {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--gray-300);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 3.75rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-tagline {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .investors-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}



/* File Upload Label */
.file-upload-label {
    display: block;
    background-color: var(--navy);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.file-upload-label:hover {
    background-color: var(--light-navy);
}

.file-upload-label i {
    margin-right: 0.5rem;
}

#presentation-file {
    display: none; /* Hide the default file input */
}



/* Captcha Styles */
.captcha-group {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
}

.captcha-label {
    display: block;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.captcha-group input[type="number"] {
    width: 100px;
    padding: 0.5rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    background: var(--white);
    color: var(--navy);
    font-size: 1rem;
    text-align: center;
}

.captcha-group input[type="number"]:focus {
    outline: none;
    border-color: var(--light-navy);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

@media (max-width: 768px) {
    .captcha-group {
        padding: 0.75rem;
    }
    
    .captcha-label {
        font-size: 0.85rem;
    }
}



/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease-out;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
    opacity: 1;
    transform: translateY(0);
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    opacity: 1;
    transform: translateY(0);
}




#projects-seeking-investment {
    display: none;
}


