* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    /* background: #ffffff; */
    /* background-color: #0e1a44; */
    background-color: rgb(30,43,72);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    max-width: 250px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    /* color: #2c3e50; */
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: #d4af37;
}

/* Active navigation state */
.nav-link.nav-active {
    color: #d4af37;
    position: relative;
}

.nav-link.nav-active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    /* left: 0; */
    right: 0;
    /* height: 2px; */
    /* background: #d4af37; */
    border-radius: 1px;
}

/* Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
    border-radius: 4px;
    margin-top: 0.5rem;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Ensure dropdown stays visible when hovering over menu items */
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #d4af37;
    padding-left: 2rem;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* background: #d4af37; */
    /* background-color: rgb(230,200,140); */
    background-color: rgb(196,170,107);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0.2rem 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

.lang-btn:hover,
.lang-btn.active {
    color: #2c3e50;
}

.language-switcher span {
    color: #fff;
    font-weight: bold;
}

/* Main Content */
main {
    margin-top: 110px;
}

/* Hero Section */
.hero {


    background-size:
        100% 100%,
        800px 400px,
        600px 300px,
        100% 300px,
        1000px 250px,
        40px 40px,
        40px 40px,
        40px 40px,
        100% 50%,
        100% 100%;

    background-position:
        center center,
        left bottom,
        right bottom,
        left center,
        center 65%,
        30% 85%,
        50% 88%,
        70% 86%,
        left top,
        center center;

    background-repeat: no-repeat;
    background-color: #dac8b4;
    color: white;
    position: relative;
    min-height: 900px;
    overflow: hidden;
    /* background-image: url(./images/bg.png); */
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    /* z-index: -100; */
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
    overflow: hidden;
    /* 优化视频渲染质量 */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    will-change: transform;
    /* 确保像素对齐 */
    transform: translate3d(-50%, -50%, 0);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 900px;
    gap: 0rem;
    padding: 3rem 0;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-logo-image {
    height: 258px;
    width: auto;
}

.hero-logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #d4af37;
    line-height: 1.2;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 740px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-cta-button {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
}

.hero-cta-button:hover {
    background: #ffffff;
    color: #2c3e50;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    /* background: #ffffff; */
    background-color: #ede6e0;
}

.stats-title {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.stats-underline {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1500px;
    margin: 0 auto;
    align-items: start;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1.5rem;
    height: 80px;
    align-items: center;
}

.stat-currency {
    font-size: 2.5rem;
    color: #666;
    font-weight: 300;
    margin-right: 0.2rem;
}

.stat-value {
    font-size: 5rem;
    font-weight: 300;
    color: #666;
    line-height: 1;
}

.stat-unit {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 400;
    margin-left: 0.2rem;
}

.stat-plus {
    font-size: 3rem;
    color: #666;
    font-weight: 300;
    margin-left: 0.2rem;
}

.stat-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
}

.stat-icon svg {
    width: 80px;
}

.stat-description {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.4;
    max-width: 250px;
    margin: 0 auto;
    font-weight: 300;
}

/* Excellence Section */
.excellence-section {
    /* background: #2c3e50; */
    /* background-color: #0e1a44; */
    background-color: rgb(36,68,98);
    color: white;
    /* padding: 80px 0; */
    padding: 50px 0;
}

.excellence-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.excellence-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.3;
}

.excellence-cta {
    background-color: #c3ae93;
    padding: 20px;
}

.excellence-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.excellence-cta p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Investment Approach Section */
.investment-approach {
    padding: 100px 0;
    /* background: #e8e9ea; */
    /* background-color: #ede6e0; */
    /* background: radial-gradient(circle, #9a7848, #d5b781, #8a683b); */
    background: radial-gradient(circle, rgba(213,183,129, 0.7), #8a683b);
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
}

.section-title-top {
    color: #fff;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4af37;
} */

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.approach-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #d4af37;
}

.approach-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.approach-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.card-accent-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #d4af37;
}

.bg-box {
    /* background-image: url(./images/bg-2.png);
    background-size: cover; */
    position: relative;
}

.bg-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-image: url(./images/bg-2.png);*/
    background-size: cover;
    opacity: 0.3;
    /* 设置透明度 */
    z-index: -1;
    /* 确保在文字后面 */
}

/* Investor Partner Section */
.investor-partner-section {
    padding: 80px 0;
    /* background: #ffffff; */
}

.investor-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1500px;
    margin: 0 auto;
    background-image: url(./images/DM001.jpg);
}

.investor-card,
.partner-card {
    /* padding: 4rem 3rem; */
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
    cursor: pointer;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.investor-card {
    /* background: #2c3e50; */
    background-color: rgba(195, 174, 147, 0.97);
    color: white;
}

.investor-card a {
    text-decoration: none;
    color: aliceblue;
}

.partner-card a {
    text-decoration: none;
    color: #000;
}

.partner-card {
    /* background: #f5f5f5; */
    background-color: rgb(245 245 245 / 50%);
    /* color: #2c3e50; */
    color: #000;
}

.investor-card:hover,
.partner-card:hover {
    transform: translateY(-3px);
}

.card-label {
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    opacity: 1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* color: #d4af37; */
}

.investor-card h3,
.partner-card h3 {
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.card-arrow {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-underline {
    display: inline-block;
    width: 60px;
    height: 2px;
    background: currentColor;
}

/* Insights Section */
.insights-section {
    padding: 100px 0;
    /* background: #ffffff; */
}

.insights-underline {
    width: 100%;
    height: 2px;
    background: #d4af37;
    margin: 0 auto 4rem;
    max-width: 1500px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 0 3rem 0;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.insight-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
}

.insight-card:hover {
    transform: translateY(-3px);
}

.insight-image {
    height: 200px;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-card:hover .insight-overlay {
    opacity: 1;
}

.insight-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.insight-overlay p {
    font-size: 0.9rem;
    margin: 0;
}

.insights-footer {
    text-align: right;
    margin-top: 3rem;
    cursor: pointer;
}

.insights-footer p {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
}

/* CTA Section */
.cta-section {
    /* background: #d4af37; */
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 80px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.cta-left {
    flex: 2;
    max-width: 800px;
}

.cta-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-date {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    font-weight: 300;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.cta-underline {
    width: 80px;
    height: 3px;
    background: #2c3e50;
}

.cta-action {
    text-align: center;
}

.cta-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.9;
    text-transform: uppercase;
}

.cta-button {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: #34495e;
    transform: translateY(-2px);
}

/* Acknowledgement Section */
.acknowledgement-section {
    /* background: #2c3e50; */
    background-color: #c3ae93;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.acknowledgement-section h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.acknowledgement-section p {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
.footer {
    /* background: #1a252f; */
    background-color: #c3ae93;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 3rem;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    /* color: #d4af37; */
    color: #fff;
}

.footer-section {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-section a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #fff;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Social section in footer */
.footer .social-section {
    background: transparent;
    border-radius: 0;
    padding: 0 0 2rem;
    box-shadow: none;
    text-align: center;
}

.footer .social-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer .social-section .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer .social-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-section .social-link:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    /* color: #bdc3c7; */
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    /* color: #d4af37; */
    color: #fff;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-copyright p {
    font-size: 0.8rem;
    /* color: #bdc3c7; */
    color: #fff;
    line-height: 1.4;
}

.confidential-btn {
    background: #d4af37;
    color: #2c3e50;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.confidential-btn:hover {
    background: #f1c40f;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        min-height: 400px;
        padding: 2rem 0;
        gap: 1.5rem;
    }

    /*.hero-logo-image {*/
    /*    height: 60px;*/
    /*}*/

    .hero-logo-text {
        font-size: 1.2rem;
        letter-spacing: 1.5px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 90%;
    }

    .hero-cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .excellence-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .investor-partner-grid {
        grid-template-columns: 1fr;
    }

    .investor-card,
    .partner-card {
        min-height: 200px;
        padding: 3rem 2rem;
    }

    .insights-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .insights-footer {
        text-align: center;
    }

    .nav-menu {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0e1a44;
        flex-direction: column;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        padding: 0.5rem 0;
        z-index: 999;
        max-height: 80vh;
        overflow-y: auto;
    }

    .nav-menu.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .cta-left,
    .cta-right {
        max-width: 100%;
    }

    .cta-right {
        justify-content: center;
    }

    .cta-underline {
        margin: 0 auto;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content {
        min-height: 350px;
        padding: 1.5rem 0;
        gap: 1rem;
    }

    /*.hero-logo-image {*/
    /*    height: 50px;*/
    /*}*/

    .hero-logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        max-width: 95%;
    }

    .hero-cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-value {
        font-size: 4rem;
    }

    .stat-currency {
        font-size: 2rem;
    }

    .stat-unit {
        font-size: 1.5rem;
    }

    .stat-plus {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 3rem;
    }

    .insights-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Investors Page Styles */
.investors-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 400px;
    position: relative;
    background-image: url(./images/bg.png);
}

.investors-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.investors-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.investors-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.investment-overview {
    padding: 80px 0;
    background: #ede6e0;
    color: #fff;
    background-image: url(./images/DM001.jpg);
    background-size: cover;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    font-weight: 300;
    text-align: center;
}

.investment-strategies {
    padding: 100px 0;
    background: #ffffff;
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strategy-card {
    background: white;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #d4af37;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.strategy-card h3 {
    color: #d4af37;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.strategy-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
}

.featured-projects {
    padding: 100px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 400;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-value {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 500;
}

.project-type {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.investor-types-section {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
}

.investor-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.investor-type-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investor-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.type-icon {
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.investor-type-card h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.investor-type-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.investment-process {
    padding: 100px 0;
    background: #ede6e0;
}

.process-timeline {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: #d4af37;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.step-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-cta-section {
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 80px 0;
}

.disclaimers-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.disclaimers-section h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.disclaimer-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Responsive Design for Investors Page */
@media (max-width: 768px) {
    .investors-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .investor-types-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Borrowings Page Styles */
.borrowings-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
    color: white;
    padding: 120px 0 80px;
    min-height: 500px;
    position: relative;
}

.borrowings-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.borrowings-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.borrowings-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.partnership-overview {
    padding: 180px 0;
    background: #ede6e0;
    background-image: url(./images/borrowings_bg1.png);
    /*background-size: contain;*/
    /*background-repeat: no-repeat;*/
    background-position: center;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 0fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-text {
    /*background: rgba(0, 0, 0, 0.8);*/
    /*padding: 80px;*/
}

.overview-text h2 {
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #fff;
    font-weight: 300;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    /*border-radius: 8px;*/
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-box .stat-number {
    font-size: 2rem;
    font-weight: 100;
    color: #d4af37;
    display: block;
    margin-bottom: 0.5rem;
    height: 40px;
    width: 300px;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.financing-solutions {
    padding: 100px 0;
    background: #ffffff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #d4af37;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.solution-icon {
    font-size: 2rem;
    color: #d4af37;
}

.solution-header h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
}

.solution-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.solution-content ul {
    list-style: none;
    padding: 0;
}

.solution-content li {
    color: #666;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding-left: 1.5rem;
}

.solution-content li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.solution-content li:last-child {
    border-bottom: none;
}

.market-focus {
    padding: 100px 0;
    background: #f8f9fa;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.focus-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.focus-image {
    height: 200px;
    overflow: hidden;
}

.focus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.focus-card:hover .focus-image img {
    transform: scale(1.05);
}

.focus-content {
    padding: 2rem;
}

.focus-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 400;
}

.focus-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.partnership-process {
    padding: 100px 0;
    background: #ede6e0;
}

.process-timeline {
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child):before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 2px;
    height: calc(100% + 1rem);
    background: #d4af37;
    opacity: 0.3;
}

.timeline-marker {
    background: #d4af37;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
}

.timeline-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.success-stories {
    padding: 100px 0;
    background: #ffffff;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.story-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.story-type {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.story-value {
    font-size: 1.4rem;
    color: #d4af37;
    font-weight: 500;
}

.story-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.important-info-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.important-info-section h3 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Responsive Design for Borrowings Page */
@media (max-width: 1024px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .overview-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .borrowings-hero .hero-title {
        font-size: 2.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-item:before {
        display: none;
    }

    .overview-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* News & Insights Page Styles */
.news-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 400px;
    position: relative;
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
}

.news-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.news-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.news-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.news-filter-section {
    background: #ffffff;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 74px;
    z-index: 100;
}

.filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    background: none;
    border: 2px solid #eee;
    color: #666;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.filter-search {
    display: flex;
    align-items: center;
    position: relative;
}

.search-input {
    border: 2px solid #eee;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    width: 250px;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: #d4af37;
}

.search-btn {
    position: absolute;
    right: 5px;
    background: #d4af37;
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #c9a332;
}

.featured-article-section {
    padding: 4rem 0;
    background: #ede6e0;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.featured-content {
    padding: 2.5rem;
}

.featured-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #999;
}

.featured-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.featured-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    background: #d4af37;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.read-more-btn:hover {
    background: #c9a332;
    transform: translateY(-2px);
}

.news-grid-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(212, 175, 55, 0.9);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.news-content {
    padding: 2rem;
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #999;
}

.news-content h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: #d4af37;
}

.news-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.news-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: #c9a332;
}

.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 1rem 3rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #d4af37;
    color: white;
    transform: translateY(-2px);
}

.newsletter-section {
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 4rem 0;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.newsletter-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.newsletter-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
}

.input-group {
    display: flex;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    border: 2px solid #fff;
    padding: 1rem 1.5rem;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
    background: white;
}

.newsletter-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0 25px 25px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #34495e;
}

.newsletter-privacy {
    font-size: 0.85rem;
    opacity: 0.7;
    margin: 0;
    text-align: center;
}

/* Responsive Design for News Page */
@media (max-width: 1024px) {
    .featured-article {
        grid-template-columns: 1fr;
    }

    .featured-image {
        height: 300px;
    }

    .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .news-hero .hero-title {
        font-size: 2.5rem;
    }

    .filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .filter-tabs {
        justify-content: center;
    }

    .search-input {
        width: 100%;
    }

    .featured-content h2 {
        font-size: 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .input-group {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 25px;
        margin-bottom: 1rem;
    }

    .newsletter-btn {
        border-radius: 25px;
    }
}

@media (max-width: 480px) {
    .news-hero .hero-title {
        font-size: 2rem;
    }

    .featured-content {
        padding: 1.5rem;
    }

    .news-content {
        padding: 1.5rem;
    }

    .newsletter-text h2 {
        font-size: 2rem;
    }
}

/* Investor Center Page Styles */
.investor-center-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 400px;
    position: relative;
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
}

.investor-center-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.investor-center-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.investor-center-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.login-portal-section {
    padding: 4rem 0;
    background: #ede6e0;
}

.portal-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.portal-intro h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.portal-intro p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.portal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.portal-card {
    background: white;
    border-radius: 12px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #d4af37;
}

.portal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.portal-icon {
    color: #d4af37;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.portal-content h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.portal-content>p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.portal-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.portal-features li {
    font-size: 0.95rem;
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    line-height: 1.4;
}

.portal-features li:before {
    content: "✓";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.portal-login-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    margin-top: 1rem;
}

.portal-login-btn:hover {
    background: #c9a332;
    transform: translateY(-2px);
}

.quick-access-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.quick-access-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 3rem;
    line-height: 1.3;
}

.quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.access-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.access-icon {
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.access-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.access-item p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.5;
}

.access-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.access-link:hover {
    color: #c9a332;
}

.access-link:after {
    content: "→";
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.access-link:hover:after {
    transform: translateX(3px);
}

.market-updates-section {
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 4rem 0;
}

.updates-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.updates-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.updates-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.update-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.update-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.update-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.update-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.updates-signup {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.updates-signup h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.signup-form {
    display: flex;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    border: 2px solid #eee;
    padding: 1rem 1.5rem;
    border-radius: 25px 0 0 25px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.email-input:focus {
    border-color: #d4af37;
}

.signup-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0 25px 25px 0;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.signup-btn:hover {
    background: #c9a332;
}

.signup-note {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
    margin: 0;
}

.support-section {
    padding: 4rem 0;
    background: #ffffff;
}

.support-content {
    display: grid;
    /* grid-template-columns: 1fr 1fr; */
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.support-info h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.support-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.contact-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-left: 4px solid #d4af37;
}

.contact-icon {
    color: #d4af37;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.1rem;
    color: #d4af37;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-item span {
    font-size: 0.9rem;
    color: #666;
}

.important-info-section {
    background: #f8f9fa;
    padding: 3rem 0;
    border-top: 1px solid #eee;
}

.important-info-section h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
}

.info-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 300;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
}

/* Responsive Design for Investor Center Page */
@media (max-width: 1024px) {
    .portal-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .updates-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .support-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-options {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .update-stats {
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .investor-center-hero .hero-title {
        font-size: 2.5rem;
    }

    .portal-intro h2 {
        font-size: 2rem;
    }

    .updates-text h2,
    .support-info h2 {
        font-size: 2rem;
    }

    .quick-access-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .signup-form {
        flex-direction: column;
        gap: 1rem;
    }

    .email-input {
        border-radius: 25px;
    }

    .signup-btn {
        border-radius: 25px;
    }

    .update-stats {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .investor-center-hero .hero-title {
        font-size: 2rem;
    }

    .portal-card {
        padding: 2rem 1.5rem;
    }

    .access-item {
        padding: 2rem 1.5rem;
    }

    .updates-signup {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .investment-process .insight-image{
        display: none;
    }
}

/* Completed Investment Page Styles */
.completed-overview-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
}

.completed-overview-section .section-header h2 {
    color: white;
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.completed-overview-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

.completed-overview-section .section-underline {
    background: #d4af37;
    height: 3px;
    width: 80px;
    margin: 0 auto 2rem;
}

.completed-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.completed-projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.completed-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.completed-project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #d4af37;
}

.completed-project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.completed-project-card .project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.completed-project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.completed-project-card:hover .project-image img {
    transform: scale(1.1);
}

.completed-project-card .project-status {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.status-badge.completed {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.completion-date {
    background: rgba(255, 255, 255, 0.95);
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.completed-project-card .project-details {
    padding: 30px;
}

.project-performance {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.performance-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 8px;
    position: relative;
    transition: all 0.3s ease;
}

.performance-item:hover {
    transform: translateY(-2px);
}

.performance-item:nth-child(1):after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.performance-item:nth-child(3):after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.performance-item:nth-child(1):before,
.performance-item:nth-child(2):before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.performance-icon {
    color: #d4af37;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.performance-item:hover .performance-icon {
    opacity: 1;
    transform: scale(1.1);
}

.performance-icon svg {
    width: 24px;
    height: 24px;
}

.performance-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.performance-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e1a44;
    line-height: 1;
    text-align: center;
}

.performance-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.performance-value.success {
    color: #28a745;
}

.project-highlights {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-top: 25px;
}

.project-highlights h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-highlights li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.4;
}

.project-highlights li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
}

.performance-summary-section {
    padding: 5rem 0;
    background: white;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.metric-group h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: #d4af37;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.metric-card .metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.metric-card .metric-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.metric-comparison {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.comparison-text {
    font-size: 0.9rem;
    color: #868e96;
    font-style: italic;
}

.comparison-indicator {
    font-size: 1.1rem;
    font-weight: 700;
}

.comparison-indicator.positive {
    color: #28a745;
}

.testimonials-section {
    padding: 5rem 0;
    background: #ede6e0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 25px;
    font-size: 4rem;
    color: #d4af37;
    font-family: serif;
    line-height: 1;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.95rem;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.completed-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

.completed-cta-section .cta-content h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.completed-cta-section .cta-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.completed-cta-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.completed-cta-section .primary-cta-btn {
    background: #d4af37;
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.completed-cta-section .primary-cta-btn:hover {
    background: #c9a332;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.completed-cta-section .secondary-cta-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.2rem 3rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.completed-cta-section .secondary-cta-btn:hover {
    background: white;
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Responsive Design for Completed Investment Page */
@media (max-width: 1200px) {
    .completed-projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .completed-overview-section .section-header h2 {
        font-size: 2.5rem;
    }

    .completed-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .performance-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .completed-cta-section .cta-content h2 {
        font-size: 2.2rem;
    }

    .completed-cta-section .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .project-performance {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .performance-item:after,
    .performance-item:nth-child(3):after {
        display: none;
    }
}

@media (max-width: 480px) {
    .completed-overview-section {
        padding: 100px 0 60px;
    }

    .completed-overview-section .section-header h2 {
        font-size: 2rem;
    }

    .completed-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .completed-project-card .project-details {
        padding: 2rem 1.5rem;
    }

    .project-performance {
        padding: 20px 15px;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .metric-card {
        padding: 1.5rem;
    }

    .metric-card .metric-value {
        font-size: 2.5rem;
    }

    .project-highlights{
        display: none;
    }
}

/* Team Page Styles */
.team-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 400px;
    position: relative;
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
}

.team-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.team-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.team-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.leadership-section {
    padding: 5rem 0;
    background: #ede6e0;
}

.investment-team-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.section-underline {
    width: 80px;
    height: 3px;
    background: #d4af37;
    margin: 0 auto 2rem;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.team-member.leadership {
    border-top: 4px solid #d4af37;
}

.member-image {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .member-overlay {
    opacity: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    background: #d4af37;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #c9a332;
    transform: translateY(-3px);
}

.member-info {
    padding: 2.5rem 2rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-position {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
    text-align: left;
}

.member-credentials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.credential {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #eee;
}

.culture-section {
    background: #ffffff;
    padding: 5rem 0;
}

.culture-content {
    max-width: 1200px;
    margin: 0 auto;
}

.culture-text {
    text-align: center;
    margin-bottom: 4rem;
}

.culture-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.culture-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.join-team-section {
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 5rem 0;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.join-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.join-btn {
    background: #2c3e50;
    color: white;
    padding: 1rem 3rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.join-btn:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Responsive Design for Team Page */
@media (max-width: 1024px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .team-hero .hero-title {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .culture-text h2,
    .join-content h2 {
        font-size: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-image {
        height: 250px;
    }

    .member-info {
        padding: 2rem 1.5rem;
    }

    .social-links {
        gap: 0.8rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .team-hero .hero-title {
        font-size: 2rem;
    }

    .member-info {
        padding: 1.5rem 1rem;
    }

    .value-item {
        padding: 1.5rem;
    }

    .join-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #0e1a44 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 450px;
    position: relative;
    background-image: url(./images/bg.png);
    background-blend-mode: overlay;
}

.careers-hero .hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.careers-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.careers-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.why-work-section {
    padding: 5rem 0;
    background: #ede6e0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #d4af37;
}

.benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    color: #d4af37;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
}

.openings-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.job-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.job-filter-tab {
    background: white;
    border: 2px solid #eee;
    color: #666;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.job-filter-tab:hover,
.job-filter-tab.active {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #d4af37;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.job-header h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-type,
.job-location {
    background: #f8f9fa;
    color: #666;
    padding: 0.3rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-type {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.job-content {
    padding: 2rem;
}

.job-summary {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.job-requirements {
    margin-bottom: 2rem;
}

.job-requirements h4 {
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.job-requirements ul {
    list-style: none;
    padding: 0;
}

.job-requirements li {
    color: #666;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.4;
}

.job-requirements li:before {
    content: "•";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.apply-btn {
    background: #d4af37;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
}

.apply-btn:hover {
    background: #c9a332;
    transform: translateY(-2px);
}

.graduate-section {
    padding: 5rem 0;
    background: #ffffff;
}

.graduate-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.graduate-text h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 1px;
}

.graduate-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-weight: 300;
    margin-bottom: 2rem;
}

.program-highlights {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-text {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.graduate-apply-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.graduate-apply-btn:hover {
    background: #34495e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.graduate-image {
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.graduate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.graduate-content:hover .graduate-image img {
    transform: scale(1.05);
}

.process-section {
    padding: 5rem 0;
    background: #ede6e0;
}

.process-steps {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.step-number {
    background: #d4af37;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.step-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.careers-contact-section {
    background: radial-gradient(circle, #9a7848, #d5b781, #8a683b);
    color: #2c3e50;
    padding: 5rem 0;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-content>p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    min-width: 650px;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    color: #d4af37;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design for Careers Page */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .graduate-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .program-highlights {
        justify-content: center;
        gap: 3rem;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .contact-item {
        min-width: auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .careers-hero .hero-title {
        font-size: 2.5rem;
    }

    .job-filter-tabs {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .job-filter-tab {
        width: 200px;
        text-align: center;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .program-highlights {
        flex-direction: column;
        gap: 2rem;
    }

    .graduate-image {
        height: 300px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-hero .hero-title {
        font-size: 2rem;
    }

    .benefit-item {
        padding: 2rem 1.5rem;
    }

    .job-card {
        margin: 0 1rem;
    }

    .job-header,
    .job-content {
        padding: 1.5rem;
    }

    .process-step {
        padding: 2rem 1.5rem;
    }

    .graduate-apply-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}

/* Job Card Filter Animation */
.job-card.hidden {
    display: none;
}

.job-card.show {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Page Styles */
.contact-info-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.contact-office-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.contact-office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.office-icon {
    text-align: center;
    margin-bottom: 25px;
    color: #d4af37;
}

.office-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e1a44;
    text-align: center;
    margin-bottom: 30px;
}

.office-details {
    space-y: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.detail-icon {
    color: #d4af37;
    margin-right: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
}

/* Departments Section */
.departments-section {
    padding: 80px 0;
    background: #ffffff;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.department-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.department-card:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.dept-icon {
    color: #d4af37;
    margin-bottom: 20px;
}

.department-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0e1a44;
    margin-bottom: 15px;
}

.department-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.dept-contact {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.dept-email {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 8px;
}

.dept-phone {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e1a44 0%, #1e2a5a 100%);
    color: #ffffff;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.form-header .section-underline {
    background: #d4af37;
}

.form-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

/* Style for select dropdown options */
.form-group select option {
    background: #0e1a44;
    color: #ffffff;
    padding: 10px;
}

/* Style for select dropdown on hover */
.form-group select option:hover {
    background: #d4af37;
    color: #0e1a44;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: #d4af37;
    border-color: #d4af37;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #d4af37 0%, #f4c842 100%);
    color: #0e1a44;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #f4c842 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Map & Hours Section */
.map-hours-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-container h3,
.hours-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e1a44;
    margin-bottom: 30px;
}

.map-placeholder {
    background: #ffffff;
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed #d4af37;
}

.map-icon {
    color: #d4af37;
    margin-bottom: 20px;
}

.map-placeholder p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.map-address {
    color: #0e1a44;
    font-weight: 600;
}

.hours-list {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.emergency {
    color: #d4af37;
    font-weight: 600;
    border-top: 2px solid #d4af37;
    margin-top: 15px;
    padding-top: 20px;
}

.day {
    font-weight: 600;
    color: #0e1a44;
}

.time {
    color: #666;
}

.social-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.social-section h4 {
    color: #0e1a44;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.social-section .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    color: #666;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-section .social-link:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .departments-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .map-hours-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-placeholder {
        padding: 40px 25px;
    }
}

/* Open Investment Portfolio Page Styles */
.investment-overview-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.investment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #d4af37;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    color: #d4af37;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e1a44;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Investment Filters Section */
.investment-filters-section {
    padding: 60px 0;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.filters-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 30px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 25px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.filter-tab:hover,
.filter-tab.active {
    background: #d4af37;
    color: #ffffff;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.filter-controls select,
.search-box {
    position: relative;
}

.filter-controls select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #333;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-controls select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    background: #ffffff;
    color: #333;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-box svg {
    position: absolute;
    right: 15px;
    color: #666;
    pointer-events: none;
}

/* Investment Projects Section */
.investment-projects-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.project-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #d4af37;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.open {
    background: #28a745;
    color: white;
}

.status-badge.filling {
    background: #ffc107;
    color: #000;
}

.status-badge.limited {
    background: #dc3545;
    color: white;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(14, 26, 68, 0.9), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
}

.project-details {
    padding: 30px;
}

.project-header {
    margin-right: 30px;
}

.project-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0e1a44;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.project-location {
    display: flex;
    align-items: center;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 12px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    display: inline-flex;
    margin-top: 8px;
}

.project-location svg {
    margin-right: 8px;
    color: #d4af37;
    flex-shrink: 0;
}

.project-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 8px;
    position: relative;
    transition: all 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-2px);
}

.metric-icon {
    color: #d4af37;
    margin-bottom: 8px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.metric-item:hover .metric-icon {
    opacity: 1;
    transform: scale(1.1);
}

.metric-item:nth-child(1):after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.metric-item:nth-child(3):after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.metric-item:nth-child(1):before,
.metric-item:nth-child(2):before {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, #d4af37, transparent);
}

.metric-label {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.metric-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0e1a44;
    line-height: 1;
    text-align: center;
}

.metric-value span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.project-description {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    border-left: 4px solid #d4af37;
    display: none;
}

.project-description p {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
    font-weight: 400;
}

.project-actions {
    display: none;
    /* display: flex; */
    gap: 15px;
}

.primary-btn,
.secondary-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 0.9rem;
}

.primary-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4c842 100%);
    color: #0e1a44;
    border: none;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #f4c842 0%, #d4af37 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.secondary-btn {
    background: transparent;
    color: #0e1a44;
    border: 2px solid #e9ecef;
}

.secondary-btn:hover {
    border-color: #d4af37;
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
}

.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 15px 40px;
    background: transparent;
    color: #0e1a44;
    border: 2px solid #d4af37;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.load-more-btn:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* Investment Process Section */
.investment-process-section {
    padding: 80px 0;
    background: #ffffff;
}

.process-timeline {
    max-width: 1000px;
    margin: 60px auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    width: 2px;
    height: calc(100% - 120px);
    background: #d4af37;
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
    margin-right: 60px;
    margin-left: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #f4c842 100%);
    color: #0e1a44;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
    max-width: 400px;
    margin-left: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0e1a44;
    margin-bottom: 15px;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Investment CTA Section */
.investment-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0e1a44 0%, #1e2a5a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-cta-btn,
.secondary-cta-btn {
    padding: 18px 35px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    min-width: 200px;
}

.primary-cta-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4c842 100%);
    color: #0e1a44;
    border: none;
}

.primary-cta-btn:hover {
    background: linear-gradient(135deg, #f4c842 0%, #d4af37 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.secondary-cta-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-cta-btn:hover {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    transform: translateY(-3px);
}

/* Responsive Design for Portfolio Page */
@media (max-width: 768px) {
    .investment-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .filter-controls {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .project-card {
        margin: 0 10px;
    }

    .project-metrics {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 20px 15px;
    }

    .metric-item {
        padding: 8px 3px;
    }

    .metric-label {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .metric-value {
        font-size: 1.2rem;
    }

    .project-header h3 {
        font-size: 1.3rem;
    }

    .project-location {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    .project-description {
        padding: 15px;
    }

    .project-description p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .project-actions {
        flex-direction: column;
        gap: 10px;
    }

    .process-timeline::before {
        left: 40px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
        align-items: flex-start;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
        margin-right: 30px;
        flex-shrink: 0;
    }

    .step-content,
    .process-step:nth-child(even) .step-content {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Project Card Filter Animation */
.project-card.hidden {
    display: none;
}

.project-card.show {
    animation: projectFadeIn 0.6s ease forwards;
}

@keyframes projectFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible,
.fade-in.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Additional Hover Effects */
.stat-item:hover .stat-value {
    color: #d4af37;
    transition: color 0.3s ease;
}

.insight-card:hover .insight-content h4 {
    color: #d4af37;
    transition: color 0.3s ease;
}

/* Mobile responsive for centered cards */
@media (max-width: 768px) {
    .center-card-desktop {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Tooltip Styles */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip-content {
    display: none;
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    white-space: nowrap;
    max-width: 300px;
}

.tooltip-content img {
    max-width: 200px;
    height: auto;
    display: block;
}

.tooltip-content p {
    margin: 0;
    padding: 10px;
    font-size: 0.9rem;
    color: #333;
}

.tooltip:hover .tooltip-content {
    display: block;
}