/* Custom Variable Framework System Setup */
:root {
    --ocd-mint-canvas: #dafaf3;
    --ocd-brand-dark: #054038;
    --ocd-brand-teal: #00aa8a;
    --ocd-emerald-btn: #00a877;
    --ocd-shape-opacity-tint: rgba(0, 142, 114, 0.08);
}

/* Structural Layout Components */
.text-brand-dark {
    color: var(--ocd-brand-dark) !important;
}

.text-brand-teal {
    color: var(--ocd-brand-teal) !important;
}

.btn-emerald-action {
    background-color: var(--ocd-emerald-btn) !important;
    border-color: var(--ocd-emerald-btn) !important;
    transition: background-color 0.25s ease, border-color 0.25s ease;
}

.btn-emerald-action:hover,
.btn-emerald-action:focus {
    background-color: #00825c !important;
    border-color: #00825c !important;
}

.py-2-5 {
    padding-top: 0.725rem !important;
    padding-bottom: 0.725rem !important;
}

.z-index-3 {
    position: relative;
    z-index: 3;
}

/* ==========================================================================
   HERO DISPLAY WRAPPER (image_c17f4b.png)
   ========================================================================== */
.ocd-hero-wrapper {
    background-color: var(--ocd-mint-canvas);
}

.ocd-hero-title {
    font-size: 2.65rem;
    line-height: 1.25;
}

.ocd-hero-text {
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: justify;
}

/* Flawless round image masking containment frame */
.ocd-portrait-circle {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(5, 64, 56, 0.04);
}

.circle-cropped-portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Background Geo Elements */
.ocd-geo-shape {
    position: absolute;
    background-color: var(--ocd-shape-opacity-tint);
    z-index: 1;
}

.shape-blob-left {
    width: 180px;
    height: 190px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    top: 30px;
    right: 320px;
}

.shape-octagon-right {
    width: 130px;
    height: 130px;
    background: transparent;
    border: 35px solid var(--ocd-shape-opacity-tint);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    top: 45px;
    right: 40px;
}

/* ==========================================================================
   CLINICAL BREAKDOWN MODULE (image_c17c84.png)
   ========================================================================== */
.ocd-section-heading {
    font-size: 1.8rem;
}

.ocd-section-text {
    font-size: 1.02rem;
    line-height: 1.62;
    text-align: justify;
}

.bullet-lead-dot {
    color: #000000;
    font-size: 1.5rem;
    line-height: 1.1;
}

.ocd-clinical-bullet-list p {
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   DIAGNOSTIC BLOCK GRID CANVAS (image_c17c61.png)
   ========================================================================== */
.ocd-diagnostic-footer-section {
    background-color: var(--ocd-mint-canvas);
}

.ocd-diagnostic-heading {
    color: #008580;
    font-size: 1.55rem;
    line-height: 1.35;
}

/* Replicates the large abstract background circle layout on the section edge */
.diagnostic-concentric-accent {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 45px solid rgba(0, 170, 138, 0.05);
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Responsive Adaptive View Boundaries */
@media (max-width: 991.98px) {
    .ocd-portrait-circle {
        width: 300px;
        height: 300px;
    }

    .diagnostic-concentric-accent {
        display: none;
    }
}