/* INVESTORS PAGE STYLES */

/* --------------- HERO SECTION ------------------------ */
.investor_banner {
    background-image: url('../../images/pages/investor/investors.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0 80px 0;
    position: relative;
}

.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 70, 148, 0.7); /* Matching Mantra brand blue with opacity */
    z-index: 1;
}

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

.ind-hero h1 {
    color: var(--ma-white);
    margin-bottom: 24px;
    max-width: 850px;
}

/* Breadcrumbs */
.breadcrumb_nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.breadcrumb_nav_white_bg a, 
.breadcrumb_nav_white_bg .current,
.breadcrumb_nav_white_bg .separator {
    color: var(--ma-white);
}

.breadcrumb_nav a:hover {
    text-decoration: underline;
}

/* ---------------- SECTION: WELCOME -------------------- */
.investor-welcome-section {
    background-color: var(--ma-white);
    padding: 80px 0;
}

.investor-welcome-content h2 {
    margin-bottom: 25px;
}

.investor-welcome-content p {
    color: var(--ma-grey130);
}

/* ---------------- SECTION: RESOURCES ------------------ */
.investor-resources-section {
    background-color: var(--ma-bg-light);
    padding: 80px 0;
}

.resource-group {
    margin-bottom: 60px;
}

.resource-group:last-child {
    margin-bottom: 0;
}

.resource-group h2 {
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.resource-group h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--ma-type-primary);
}

.resource-group h4 {
    margin: 20px 0;
    color: var(--ma-type-primary);
}

.resource-group h6 {
    margin: 15px 0;
    color: var(--ma-grey130);
    font-weight: 600;
}

/* Resource Card / Link Style */
.resource-card {
    display: block;
    background-color: var(--ma-white);
    border: 1px solid var(--ma-grey40);
    padding: 20px 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.resource-card:hover {
    border-color: var(--ma-type-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.resource-card i {
    font-size: 24px;
    color: var(--ma-type-primary);
}

.resource-card span {
    font-size: 15px;
    font-weight: 500;
    color: var(--ma-tag-black);
    line-height: 1.4;
}

/* ---------------- SECTION: CONTACT / GRIEVANCES ------- */
.investor-contact-section {
    background-color: var(--ma-white);
    padding: 80px 0;
}

.note-box {
    padding: 30px;
    background: linear-gradient(135deg, #f8faff 0%, #ebf2ff 100%);
    border-left: 4px solid var(--ma-type-primary);
    border-radius: 0 12px 12px 0;
}

.note-box p {
    margin-bottom: 10px;
    color: var(--ma-grey130);
}

.note-box p:last-child {
    margin-bottom: 0;
    color: var(--ma-type-primary);
}

/* ---------------- RESPONSIVE ------------------------- */
@media screen and (max-width: 992px) {
    .investor_banner {
        padding: 120px 0 60px 0;
    }
    
    .investor-welcome-section,
    .investor-resources-section,
    .investor-contact-section {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    
}
