﻿
.hero-section {
    background: #f8f9fa;
}

h1 {
    color: #FFFFFF;
}

.examples .examples-content .btn-example {
    display: inline-flex;
    align-items: center;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 2px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.examples .examples-content .btn-example span {
    margin-right: 8px;
}

.examples .examples-content .btn-example i {
    transition: transform 0.3s ease;
}

    .examples .examples-content .btn-example:hover {
        background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    }

.examples .examples-content .btn-example:hover i {
    transform: translateX(5px);
}

.btn-example {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-example i {
    margin-left: auto;
}

.icon-svg {
    width: 36px !important;
    height: auto !important;
    margin-top: -12px;
}

.example-heading-section {
    background-color: rgb(4 21 26 / 20%);
    border-radius: 12px;
    padding: 24px 48px;
}
.feature-blurb {
    margin-top: 8px;
}

.example-hero-section {
    background-image: url('/Images/page-header-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
    /* Optional: minimum height */
    .example-hero-section .row {
        min-height: 60vh;
    }

    /* Optional: dark overlay for readability */
    .example-hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .example-hero-section > .container-fluid {
        position: relative;
        z-index: 1;
    }

.portfolio-card {
    height: 100%;
    min-height: 700px; /* adjust as needed */
}