:root {
    --color-primary: #2ecc71;
    --color-primary-hover: #27ae60;
    --color-blue: #2b3e4b;
    --color-dark: #1a2b3c;
    --color-text: #555;
    --color-light: #f4f4f4;
    --color-white: #ffffff;
    --transition: 0.3s ease;
}


.section-padding { padding: 40px 0; max-width: 1300px;
    margin: 0 auto; font-size: 18px;}
.bg-light { background-color: var(--color-light); }
.mt-5 { margin-top: 3rem; }

/* ====================================================
   INNER PAGE HERO & BREADCRUMBS
   ==================================================== */
.inner-page-hero {
    position: relative;
    /* 180px top padding ensures it completely clears your sticky navbar */
    padding: 180px 0 60px;  
    background-color: var(--color-dark-navy);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image & Gradient Overlay */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates a cool parallax effect when scrolling */
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Rich Navy to Green gradient overlay */
    background: linear-gradient(135deg, rgba(26, 43, 60, 0.92) 0%, rgba(26, 43, 60, 0.85) 50%, rgba(46, 204, 113, 0.4) 100%);
    z-index: 2;
}

/* Floating Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.15);
    filter: blur(40px);
    z-index: 2;
    animation: floatUpDown 6s infinite ease-in-out;
}
.hero-shape-1 { width: 300px; height: 300px; top: -100px; left: -100px; }
.hero-shape-2 { width: 250px; height: 250px; bottom: -50px; right: -50px; animation-delay: 2s; }

/* Title Styling */
.inner-page-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    margin-top: 15px;
}

/* --- Frosted Glass Breadcrumb --- */
.custom-breadcrumb {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); /* Creates the frosted glass look */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px; /* Pill shape */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.custom-breadcrumb li {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.custom-breadcrumb a {
    color: var(--color-white);
    transition: color 0.3s ease;
}

.custom-breadcrumb a:hover {
    color: var(--color-primary); /* Turns EVS green on hover */
}

.custom-breadcrumb .separator {
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.custom-breadcrumb .current {
    color: var(--color-primary); /* The current page is highlighted in Green */
}

/* ====================================================
   RESPONSIVE ADJUSTMENTS
   ==================================================== */
@media (max-width: 991px) {
    .inner-page-hero {
        padding: 180px 0 80px;
    }
    .inner-page-title {
        font-size: 42px;
    }
    .custom-breadcrumb {
        padding: 10px 20px;
    }
    .custom-breadcrumb li {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .inner-page-hero {
        padding: 150px 0 60px; /* Clears mobile navbar */
    }
    .inner-page-title {
        font-size: 32px;
        margin-top: 50px;
    }
    .custom-breadcrumb {
        padding: 10px 15px;
        flex-wrap: wrap; /* Allows breadcrumbs to wrap if they get too long on tiny phones */
        justify-content: center;
        gap: 5px;
        border-radius: 12px; /* Less pill-like, more box-like on phones to save space */
    }
    .custom-breadcrumb .separator {
        margin: 0 5px;
    }
}
/* Banners */
.banner-green {
    background-color: var(--color-primary);
    color: white;
    padding: 40px 0;
    text-align: center;
    
}

.banner-blue {
    background-color: var(--color-blue);
    color: white;
    padding: 60px 0;
    text-align: center;
}

/* Content Grid */
.investor-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    color: var(--color-dark);
    font-size: 1.8rem;
    border-left: 5px solid var(--color-primary);
    padding-left: 15px;
    margin-bottom: 25px;
}

/* Lists */
.investor-list {
    list-style: none;
    padding: 0;
}

.investor-list li {
    margin-bottom: 20px;
    padding-left: 10px;
}

.investor-list i {
    color: var(--color-primary);
    margin-right: 10px;
}

/* Benefit Cards */
.benefit-card {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--color-primary);
}

.benefit-card h4 {
    margin-top: 0;
    color: var(--color-primary);
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-outline:hover {
    background: white;
    color: var(--color-blue);
}

/* Sidebar Logic */
.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .investor-grid { grid-template-columns: 1fr; }
    .sticky-sidebar { position: static; }
}

/* Philosophy Section Styles */
.philosophy-section {
    padding: 50px 0;
    background-color: #ffffff;
}

.content-block {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.display-title {
    color: #000050; /* Your Brand Dark Blue */
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.title-line {
    width: 60px;
    height: 4px;
    background-color: #227431; /* Your Brand Green */
    margin-bottom: 25px;
}

.description-text {
    color: #555555;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.description-text strong {
    color: #000050;
}

.cta-wrapper {
    margin-top: 30px;
}

.btn-primary-evs {
    display: inline-block;
    background-color: #227431;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #227431;
}

.btn-primary-evs:hover {
    background-color: #ffffff;
    color: #227431;
    box-shadow: 0 5px 15px rgba(34, 116, 49, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .display-title {
        font-size: 1.8rem;
    }
    .philosophy-section {
        padding: 60px 0;
    }
}


.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
}
.mb-5 {
    margin-bottom: 1rem !important;
}