:root {
    --primary-color: var(--bs-primary);
    --accent-color: var(--bs-info);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: -56px; /* Adjust for navbar height */
}

/* Page Headers */
.contact-header,
.about-header,
.portfolio-header,
.investment-header {
    margin-top: 56px; /* Height of the navbar */
    padding: 3rem 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    pointer-events: none;
}

/* Cards */
.card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
}

/* Portfolio Items */
.portfolio-item {
    padding: 2rem;
    background: var(--bs-dark); /* Changed to use Bootstrap's dark color variable */
    border-radius: 8px;
    height: 100%;
    color: var(--bs-light);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-item h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.portfolio-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.portfolio-item .btn-outline-primary {
    border-color: #6f42c1;
    color: #6f42c1;
}

.portfolio-item .btn-outline-primary:hover {
    background: #6f42c1;
    color: #fff;
}

/* CTA Section */
.cta {
    position: relative;
    padding: 100px 0;
}

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

.social-icons a {
    color: var(--bs-light);
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--accent-color);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Images */
.img-fluid {
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Timeline */
.timeline .card {
    border-left: 4px solid var(--primary-color);
}

/* Contact Form */
.contact-info i {
    color: var(--primary-color);
}

/* Investment Focus */
.investment-strategy ul li {
    margin-bottom: 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
    }

    .portfolio-item {
        margin-bottom: 1rem;
    }
}

/* Navbar Customization */
.navbar {
    transition: background-color 0.3s ease;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

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

/* Button Styles */
.btn {
    transition: all 0.3s ease;
}

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

/* List Styles */
.list-unstyled i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
}

main {
    min-height: calc(100vh - 200px);
    padding-top: 76px; /* Account for fixed navbar height */
}