﻿
h1 {
    color: #FFFFFF;
}

.hero-section {
    background: #f8f9fa;
}

.sticky-sidebar {
    position: sticky;
    top: 100px; /* offset for header/navbar */
}

    .sticky-sidebar a {
        display: block;
        padding: 0.5rem 0;
        color: #333;
        text-decoration: none;
    }

        .sticky-sidebar a:hover {
            color: #f4a000; /* your accent color */
        }

.content-block {
    margin-bottom: 4rem;
}

.features .features-content .btn-feature {
    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%;
}

.features .features-content .btn-feature span {
    margin-right: 8px;
}

.features .features-content .btn-feature i {
    transition: transform 0.3s ease;
}

.features .features-content .btn-feature:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

.features .features-content .btn-feature:hover i {
    transform: translateX(5px);
}
.btn-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .btn-feature i {
        margin-left: auto;
    }

.icon-svg {
    width: 36px !important;
    height: auto !important;
    margin-top: -12px;
}

.feature-blurb {
    margin-top: 8px;
}

.feature-heading-section {
    background-color: rgb(4 21 26 / 60%);
    border-radius: 12px;
    padding: 24px 48px;
}
.feature-hero-section {
    background-image: url('/Images/Features/chatgpt_tecnology_ring-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
    /* Optional: minimum height */
    .feature-hero-section .row {
        min-height: 60vh;
    }

    /* Optional: dark overlay for readability */
    .feature-hero-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }

    .feature-hero-section > .container-fluid {
        position: relative;
        z-index: 1;
    }
