:root {
    --bs-blue-1: #5c9344;
    /* Dark blue background color */
    --bs-blue-2: #3d6b2e;
    /* Another shade of blue */
    --bs-success: #28a745;
    --bs-danger: #dc3545;
}

body {
    background-color: var(--bs-blue-1);
    color: #333;
    font-family: 'Inter', sans-serif;
    padding: 2rem;
}

.hero-3-container {
    background-color: var(--color-primary-light);
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.text-blue {
    color: var(--bs-blue-2);
}

.btn-custom {
    background-color: var(--bs-blue-2);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}
.btn-custom:hover {
    background-color:white;
}

.btn-outline-custom {
    color: white;
    border: 1px solid white;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.metric-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.metric-subtitle {
    font-size: 0.875rem;
    color: white;
}

.graphic-container {
    min-height: 450px;
    background-image: url('../images/secure_integration.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.metric-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--bs-blue-2);
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-change {
    font-size: 0.875rem;
    font-weight: 500;
}

.api-text-container {
    align-self: flex-start;
    margin: 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-3-container {
        padding: 2rem 1.5rem;
    }

    .graphic-container {
        margin-top: 2rem;
        min-height: 300px;
    }

    body {
        padding: 1rem;
    }

    .hero-3-container {
        padding: 2rem;
    }

    .api-text-container {
        margin: 1rem;
    }
}