.healthcare-section {
    padding: 80px 5%;
    background: linear-gradient(135deg, #0f172a, #0b2b3c);
    position: relative;
    overflow: hidden;
}

/* subtle animated glow background */
.healthcare-section::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: rgba(0, 180, 170, 0.15);
    filter: blur(80px);
    border-radius: 50%;
    animation: floatGlow 6s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from {
        transform: translateY(0px);
    }
    to {
        transform: translateY(30px);
    }
}

.healthcare-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT */
.healthcare-content {
    flex: 1;
    min-width: 300px;
}

.healthcare-software-title {
    font-size: 34px;
    font-weight: 600;
    color: #eaf7f6;
    line-height: 1.3;
    margin-bottom: 20px;
}

.healthcare-text {
    font-size: 16px;
    font-weight: 400;
    color: rgba(234, 247, 246, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* RIGHT ACCENT */
.healthcare-accent {
    flex: 1;
    min-width: 280px;
    display: flex;
    justify-content: center;
}

.accent-box {
    background: linear-gradient(145deg, #0ea5a4, #064e5a);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    font-weight: 400;
}

.accent-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.accent-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accent-box ul li {
    padding: 8px 0;
    font-size: 15px;
    font-weight: 400;
    position: relative;
    padding-left: 18px;
}

.accent-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #bffcf9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .healthcare-section {
        padding: 60px 5%;
    }

    .healthcare-container {
        flex-direction: column;
        gap: 30px;
    }

    .healthcare-software-title {
        font-size: 26px;
    }
}

/* Healthcare Industry */
.healthcare-light-section {
    position: relative;
    padding: 85px 7%;
    background: linear-gradient(180deg, #f7fbff, #eef6ff);
    overflow: hidden;
}

/* ======================
   SOFT FLOATING BACKGROUND SHAPES
====================== */
.hl-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(0, 180, 160, 0.12),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(80, 120, 255, 0.1),
            transparent 50%
        );
    animation: softMove 14s ease-in-out infinite alternate;
}

@keyframes softMove {
    0% {
        transform: translateY(0px) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.04);
    }
}

/* ======================
   LAYOUT
====================== */
.hl-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 70px;
    flex-wrap: wrap;
}

/* ======================
   LEFT CONTENT
====================== */
.hl-left {
    flex: 1;
    min-width: 320px;
}

.hl-left h2 {
    font-size: 34px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 18px;
    line-height: 1.3;
}

.hl-left p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.7;
    margin-bottom: 14px;
}

.hl-block h3 {
    font-size: 18px;
    font-weight: 500;
    color: #0ea5a4;
    margin: 18px 0 10px;
}

.hl-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hl-block ul li {
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.75);
    padding: 7px 0;
    padding-left: 18px;
    position: relative;
    transition: 0.3s ease;
}

.hl-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    background: #0ea5a4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(14, 165, 164, 0.5);
    transform: translateY(-50%);
}

.hl-block ul li:hover {
    transform: translateX(6px);
    color: #0f172a;
}

.hl-footer {
    margin-top: 18px;
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.65);
}

/* ======================
   RIGHT IMAGE
====================== */
.hl-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hl-image-frame {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    transition: all 0.4s ease;
    background: #fff;
}

.hl-image-frame:hover {
    transform: translateY(-6px);
}

.hl-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
    .healthcare-light-section {
        padding: 60px 5%;
    }

    .hl-left h2 {
        font-size: 24px;
    }

    .hl-container {
        gap: 40px;
    }
}

/* healthcare solutions */
.healthcare-solutions-section {
    position: relative;
    padding: 90px 7%;
    background: linear-gradient(180deg, #f6fbff, #eef4ff);
    overflow: hidden;
}

/* ======================
   SOFT BACKGROUND LAYERS (NEW COLOR IDENTITY)
====================== */
.hs-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 15% 25%,
            rgba(0, 200, 170, 0.1),
            transparent 45%
        ),
        radial-gradient(
            circle at 85% 70%,
            rgba(120, 140, 255, 0.12),
            transparent 50%
        );
    animation: hsMove 14s ease-in-out infinite alternate;
}

@keyframes hsMove {
    0% {
        transform: translateY(0px) scale(1);
    }
    100% {
        transform: translateY(-25px) scale(1.05);
    }
}

/* ======================
   HEADER
====================== */
.hs-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.hs-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.hs-header p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
}

/* ======================
   GRID LAYOUT
====================== */
.hs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ======================
   SERVICE CARD
====================== */
.hs-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* subtle top accent line */
.hs-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0ea5a4, #818cf8);
    opacity: 0.8;
}

.hs-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 10px;
}

.hs-card p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.6;
}

/* ======================
   HOVER EFFECT (PREMIUM FEEL)
====================== */
.hs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 992px) {
    .hs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .healthcare-solutions-section {
        padding: 60px 5%;
    }

    .hs-header h2 {
        font-size: 24px;
    }

    .hs-grid {
        grid-template-columns: 1fr;
    }
}

/* Features */
.hc-tech-section {
    position: relative;
    padding: 90px 7%;
    background: #f4f6f5; /* NEW BASE COLOR (NOT BLUE BASED) */
    overflow: hidden;
}

/* ======================
   SUBTLE GRID + NOISE STYLE BACKGROUND
====================== */
.hc-tech-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 24, 20, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, rgba(16, 24, 20, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* ======================
   HEADER
====================== */
.hc-tech-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.hc-tech-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.hc-tech-header p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.7);
    line-height: 1.7;
}

/* ======================
   SPLIT PANEL LAYOUT (NEW STYLE)
====================== */
.hc-tech-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======================
   PANEL STYLE (GLASS + SOLID MIX)
====================== */
.hc-panel {
    flex: 1;
    min-width: 320px;
    padding: 25px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* DIFFERENT COLOR IDENTITY FOR EACH PANEL */
.hc-panel.left {
    border-top: 4px solid #10b981; /* EMERALD */
}

.hc-panel.right {
    border-top: 4px solid #1f2937; /* SLATE DARK */
}

/* BADGE */
.hc-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 30px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    margin-bottom: 15px;
}

/* RIGHT BADGE OVERRIDE */
.hc-panel.right .hc-badge {
    background: rgba(31, 41, 55, 0.08);
    color: #1f2937;
}

/* LIST */
.hc-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hc-panel ul li {
    font-size: 14px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.75);
    padding: 8px 0;
    transition: 0.3s ease;
}

.hc-panel ul li:hover {
    transform: translateX(6px);
    color: #0f172a;
}

/* ======================
   HOVER EFFECT (SUBTLE PREMIUM LIFT)
====================== */
.hc-panel:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

/* ======================
   FOOTER
====================== */
.hc-tech-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(15, 23, 42, 0.65);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
    .hc-tech-section {
        padding: 60px 5%;
    }

    .hc-tech-header h2 {
        font-size: 24px;
    }

    .hc-panel {
        min-width: 100%;
    }
}
/* Healthcare Technology */
.ai-healthcare-section {
    position: relative;
    padding: 80px 5%;
    background: #e7e393; /* YOUR BG COLOR */
    overflow: hidden;
}

/* ======================
   SOFT MODERN BACKGROUND EFFECT
====================== */
.ai-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(46, 31, 39, 0.08),
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(46, 31, 39, 0.06),
            transparent 55%
        );
    animation: aiFloat 12s ease-in-out infinite alternate;
}

@keyframes aiFloat {
    0% {
        transform: translateY(0px) scale(1);
    }
    100% {
        transform: translateY(-20px) scale(1.03);
    }
}

/* ======================
   CONTAINER
====================== */
.ai-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
}

/* ======================
   HEADER
====================== */
.ai-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.ai-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #2e1f27; /* TEXT COLOR */
    margin-bottom: 12px;
}

.ai-header p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(46, 31, 39, 0.8);
    line-height: 1.7;
}

/* ======================
   AI FLOW (CLEAN DARK TEXT STYLE)
====================== */
.ai-flow {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 850px;
    margin: auto;
    position: relative;
}

/* vertical line */
.ai-flow::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(46, 31, 39, 0.25);
}

/* ======================
   NODE BOX
====================== */
.ai-node {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* hover */
.ai-node:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.55);
}

/* ======================
   DOT
====================== */
.ai-node .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2e1f27; /* TEXT COLOR USED AS ACCENT */
    box-shadow: 0 0 10px rgba(46, 31, 39, 0.4);
    flex-shrink: 0;
}

/* ======================
   TEXT
====================== */
.ai-node h3 {
    font-size: 15px;
    font-weight: 500;
    color: #2e1f27;
    margin: 0;
}

/* ======================
   FOOTER
====================== */
.ai-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 14.5px;
    font-weight: 400;
    color: rgba(46, 31, 39, 0.75);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
    .ai-healthcare-section {
        padding: 60px 5%;
    }

    .ai-header h2 {
        font-size: 24px;
    }
}

/* Healthcare business we serve */

.hc-business-dark {
    position: relative;
    padding: 90px 7%;
    background: #00171f; /* YOUR DARK BASE */
    overflow: hidden;
}

/* ======================
   SUBTLE MEDICAL GLOW BACKGROUND
====================== */
.hc-dark-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(255, 255, 255, 0.06),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(255, 255, 255, 0.04),
            transparent 55%
        );
}

/* ======================
   HEADER
====================== */
.hc-dark-header {
    text-align: center;
    margin-bottom: 45px;
}

.hc-dark-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: #ffffff;
}

/* ======================
   GRID
====================== */
.hc-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: auto;
}

/* ======================
   CARD STYLE (CLEAN WHITE MODULES)
====================== */
.hc-dark-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border-left: 4px solid #ffffff;
}

/* accent border for visual hierarchy */
.hc-dark-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #00171f;
    margin-bottom: 6px;
}

.hc-dark-card p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 23, 31, 0.75);
    line-height: 1.6;
}

/* hover effect */
.hc-dark-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* full width highlight */
.hc-dark-card.full {
    grid-column: span 2;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {
    .hc-business-dark {
        padding: 60px 5%;
    }

    .hc-dark-header h2 {
        font-size: 24px;
    }

    .hc-dark-grid {
        grid-template-columns: 1fr;
    }

    .hc-dark-card.full {
        grid-column: span 1;
    }
}

/* Benefits */
.healthcare-benefits-infographic {
    padding: 80px 20px;
    background: #f3f8fd;
    overflow: hidden;
}

.healthcare-subtitle {
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #64748b;
    font-size: 16px;
    margin-bottom: 80px;
}

.healthcare-circle-main {
    width: 700px;
    height: 700px;
    margin: auto;
    position: relative;
}

/* Center Circle */
.healthcare-center {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.center-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f7edb, #0d5cab);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-inner i {
    color: white;
    font-size: 42px;
}

/* Benefit Item */
.benefit-item {
    position: absolute;
    width: 210px;
    text-align: center;
}

.benefit-icon {
    width: 62px;
    height: 62px;
    background: #1976d2;
    border-radius: 50%;
    margin: auto auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.25);
}

.benefit-icon i {
    color: white;
    font-size: 24px;
}

.benefit-item span {
    font-size: 14px;
    line-height: 1.6;
    color: #1e293b;
    display: block;
    font-weight: 500;
}

/* Positions */
.item-top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-right-top {
    top: 130px;
    right: -20px;
}

.item-right-bottom {
    bottom: 130px;
    right: -20px;
}

.item-bottom {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.item-left-bottom {
    bottom: 130px;
    left: -20px;
}

.item-left-top {
    top: 130px;
    left: -20px;
}

.healthcare-footer {
    text-align: center;
    max-width: 850px;
    margin: 80px auto 0;
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

/* Responsive */
css
/* =========================================================
   HEALTHCARE BENEFITS INFOGRAPHIC SECTION
========================================================= */

.healthcare-benefits-infographic {
    padding: 110px 20px;
    overflow: hidden;
    position: relative;
    background:
        radial-gradient(
            circle at top left,
            rgba(43, 125, 207, 0.08),
            transparent 30%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(43, 125, 207, 0.08),
            transparent 30%
        ),
        #f4f9ff;
}

/* =========================================================
   TITLE
========================================================= */

.healthcare-title {
    text-align: center;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    margin-bottom: 18px;
}

.healthcare-subtitle {
    text-align: center;
    max-width: 850px;
    margin: auto;
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 90px;
    font-weight: 500;
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

.healthcare-circle-main {
    width: 760px;
    height: 760px;
    margin: auto;
    position: relative;
}

/* =========================================================
   ROTATING DOTTED RING
========================================================= */

.main-ring {
    position: absolute;
    width: 460px;
    height: 460px;
    border: 3px dashed #2b7dcf;
    border-radius: 50%;
    top: 20%;
    left: 21%;
    transform: translate(-50%, -50%);
    animation: rotateRing 25s linear infinite;
    opacity: 0.9;
}

@keyframes rotateRing {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* =========================================================
   CENTER CIRCLE
========================================================= */

.healthcare-center {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        inset 0 0 20px rgba(255, 255, 255, 0.5);

    z-index: 5;
}

.center-inner {
    width: 130px;
    height: 130px;
    border-radius: 50%;

    background: linear-gradient(135deg, #1f7edb, #0d5cab);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        inset 0 0 15px rgba(255, 255, 255, 0.25),
        0 10px 30px rgba(25, 118, 210, 0.3);
}

.center-inner i {
    color: white;
    font-size: 50px;
}

/* =========================================================
   BENEFIT ITEMS
========================================================= */

.benefit-item {
    position: absolute;
    width: 240px;
    text-align: center;
}

/* =========================================================
   ICONS
========================================================= */

.benefit-icon {
    width: 78px;
    height: 78px;

    background: linear-gradient(135deg, #1f7edb, #0d5cab);

    border-radius: 50%;

    margin: auto auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 12px 35px rgba(25, 118, 210, 0.28),
        inset 0 0 10px rgba(255, 255, 255, 0.25);

    position: relative;
}

.benefit-icon::after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 2px dashed rgba(43, 125, 207, 0.35);
    border-radius: 50%;
}

.benefit-icon i {
    color: white;
    font-size: 30px;
}

/* =========================================================
   TEXT
========================================================= */

.benefit-item span {
    font-size: 17px;
    line-height: 1.8;
    color: #0f172a;
    display: block;
    font-weight: 700;
}

/* =========================================================
   POSITIONING
========================================================= */

.item-top {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.item-right-top {
    top: 145px;
    right: -70px;
}

.item-right-bottom {
    bottom: 145px;
    right: -10px;
}

.item-bottom {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.item-left-bottom {
    bottom: 145px;
    left: -10px;
}

.item-left-top {
    top: 145px;
    left: -80px;
}

/* =========================================================
   FOOTER TEXT
========================================================= */

.healthcare-footer {
    text-align: center;
    max-width: 900px;
    margin: 90px auto 0;

    font-size: 18px;
    line-height: 1.9;
    color: #334155;
    font-weight: 500;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {
    .healthcare-circle-main {
        width: 100%;
        height: 850px;
    }

    .main-ring {
        width: 380px;
        height: 380px;
    }

    .healthcare-center {
        width: 150px;
        height: 150px;
    }

    .center-inner {
        width: 110px;
        height: 110px;
    }

    .benefit-item {
        width: 200px;
    }

    .benefit-item span {
        font-size: 15px;
    }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {
    .healthcare-benefits-infographic {
        padding: 80px 15px;
    }

    .healthcare-title {
        font-size: 32px;
    }

    .healthcare-subtitle {
        font-size: 15px;
        margin-bottom: 55px;
    }

    .healthcare-circle-main {
        width: 100%;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }

    /* Remove circle system on mobile */

    .main-ring {
        display: none;
    }

    .healthcare-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;

        width: 130px;
        height: 130px;

        margin-bottom: 10px;
    }

    .center-inner {
        width: 90px;
        height: 90px;
    }

    .center-inner i {
        font-size: 36px;
    }

    .benefit-item {
        position: relative !important;

        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;

        transform: none !important;

        width: 100%;
        max-width: 380px;

        display: flex;
        align-items: center;
        gap: 18px;

        text-align: left;

        background: white;

        padding: 20px;

        border-radius: 24px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    }

    .benefit-icon {
        width: 65px;
        height: 65px;
        min-width: 65px;
        margin: 0;
    }

    .benefit-icon i {
        font-size: 24px;
    }

    .benefit-item span {
        font-size: 16px;
        line-height: 1.8;
        font-weight: 700;
    }

    .healthcare-footer {
        margin-top: 50px;
        font-size: 15px;
        line-height: 1.9;
    }
}

/* ==========================================
   HEALTH SECURITY SECTION
========================================== */

.health-security-section {
    position: relative;

    padding: 80px 20px;

    overflow: hidden;

    background:
        linear-gradient(rgba(5, 15, 20, 0.92), rgba(5, 15, 20, 0.95)),
        url("{{ asset('site/assets/images/health-bg.jpg') }}");

    background-size: cover;
    background-position: center;
}

/* ==========================================
   GLOW EFFECTS
========================================== */

.health-security-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    background: rgba(248, 229, 222, 0.06);

    filter: blur(120px);

    top: -100px;
    left: -100px;

    border-radius: 50%;
}

.health-security-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    background: rgba(109, 110, 112, 0.08);

    filter: blur(120px);

    right: -120px;
    bottom: -120px;

    border-radius: 50%;
}

/* ==========================================
   HEADING
========================================== */

.health-security-heading {
    text-align: center;

    position: relative;
    z-index: 2;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 28px;

    border-radius: 60px;

    background: rgba(248, 229, 222, 0.08);

    border: 1px solid rgba(248, 229, 222, 0.18);

    color: #f8e5de;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 28px;
}

.security-badge i {
    font-size: 14px;
}

.health-security-heading h2 {
    font-size: 42px;

    line-height: 1.1;

    font-weight: 600;

    color: white;

    margin-bottom: 26px;
}

.health-security-heading h2 span {
    color: #f8e5de;
}

.health-security-heading p {
    max-width: 920px;

    margin: auto;

    color: rgba(255, 255, 255, 0.78);

    font-size: 21px;

    line-height: 1.9;
}

/* ==========================================
   MINI TITLE
========================================== */

.security-mini-heading {
    margin-top: 30px;
    margin-bottom: 20px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;

    position: relative;
    z-index: 2;
}

.mini-line {
    width: 170px;
    height: 1px;

    background: linear-gradient(
        to right,
        transparent,
        rgba(248, 229, 222, 0.6),
        transparent
    );
}

.mini-icon {
    width: 60px;
    height: 60px;

    border-radius: 50%;

    background: rgba(248, 229, 222, 0.08);

    border: 1px solid rgba(248, 229, 222, 0.16);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f8e5de;

    font-size: 22px;
}

.software-title {
    text-align: center;

    color: white;

    font-size: 28px;

    font-weight: 400;

    margin-bottom: 60px;
}

/* ==========================================
   GRID
========================================== */

.health-security-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

    position: relative;
    z-index: 2;
}

/* ==========================================
   CARD
========================================== */

.security-card {
    position: relative;

    border-radius: 24px;

    padding: 28px 24px;

    min-height: 220px;

    background: linear-gradient(
        145deg,
        rgba(248, 229, 222, 0.05),
        rgba(109, 110, 112, 0.08)
    );

    border: 1px solid rgba(248, 229, 222, 0.12);

    backdrop-filter: blur(16px);

    overflow: hidden;

    transition: 0.45s ease;
}

.security-card:hover {
    transform: translateY(-10px) scale(1.02);

    border-color: rgba(248, 229, 222, 0.3);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   CARD NUMBER
========================================== */

.card-number {
    position: absolute;

    top: 16px;
    left: 16px;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: #f8e5de;

    color: #111827;

    font-size: 18px;
    font-weight: 400;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   CARD FLEX
========================================== */

.card-flex {
    display: flex;
    align-items: center;
    gap: 22px;

    margin-top: 38px;
}

/* ==========================================
   ICON
========================================== */

.card-icon {
    width: 95px;
    height: 95px;

    min-width: 95px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(248, 229, 222, 0.14),
        rgba(248, 229, 222, 0.04)
    );

    border: 1px solid rgba(248, 229, 222, 0.16);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s ease;
}

.security-card:hover .card-icon {
    transform: rotate(8deg) scale(1.08);
}

.card-icon i {
    color: #f8e5de;

    font-size: 38px;
}

/* ==========================================
   CONTENT
========================================== */

.card-content {
    text-align: left;
}

.card-content h3 {
    color: white;

    font-size: 28px;

    line-height: 1.4;

    font-weight: 600;

    margin-bottom: 14px;
}

.card-content p {
    color: rgba(255, 255, 255, 0.74);

    font-size: 15px;

    line-height: 1.8;
}

/* ==========================================
   FOOTER
========================================== */

.security-footer {
    margin-top: 80px;

    border-radius: 24px;

    padding: 28px 40px;

    background: linear-gradient(
        145deg,
        rgba(248, 229, 222, 0.05),
        rgba(109, 110, 112, 0.08)
    );

    border: 1px solid rgba(248, 229, 222, 0.1);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;

    position: relative;
    z-index: 2;
}

.footer-icon {
    width: 85px;
    height: 85px;

    border-radius: 50%;

    background: rgba(248, 229, 222, 0.08);

    border: 1px solid rgba(248, 229, 222, 0.16);

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-icon i {
    color: #f8e5de;

    font-size: 32px;
}

.security-footer p {
    color: white;

    font-size: 28px;

    line-height: 1.7;

    font-weight: 600;
}

.security-footer p span {
    color: #f8e5de;

    font-weight: 800;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {
    .health-security-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .health-security-heading h2 {
        font-size: 52px;
    }

    .card-content h3 {
        font-size: 24px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .health-security-section {
        padding: 80px 15px;
    }

    .health-security-heading h2 {
        font-size: 38px;
    }

    .health-security-heading p {
        font-size: 16px;
    }

    .mini-line {
        width: 80px;
    }

    .software-title {
        font-size: 28px;
    }

    .health-security-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .security-card {
        min-height: auto;

        padding: 24px 20px;
    }

    .card-flex {
        flex-direction: column;

        text-align: center;
    }

    .card-content {
        text-align: center;
    }

    .card-icon {
        width: 85px;
        height: 85px;
        min-width: 85px;
    }

    .card-icon i {
        font-size: 32px;
    }

    .card-content h3 {
        font-size: 22px;
    }

    .card-content p {
        font-size: 14px;
    }

    .security-footer {
        flex-direction: column;

        padding: 26px 20px;

        text-align: center;
    }

    .security-footer p {
        font-size: 20px;
    }
}

/* ==========================================
   HEALTHCARE TYPES SECTION
========================================== */

.digiature-healthcare-types {
    position: relative;

    padding: 80px 20px;

    background: #16313d;

    overflow: hidden;
}

/* ==========================================
   SMALL SHAPES
========================================== */

.digiature-healthcare-types::before {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(245, 243, 237, 0.05);

    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);

    top: 40px;
    left: -60px;

    transform: rotate(20deg);
}

.digiature-healthcare-types::after {
    content: "";

    position: absolute;

    width: 140px;
    height: 140px;

    background: rgba(238, 213, 194, 0.05);

    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);

    bottom: 40px;
    right: -60px;

    transform: rotate(20deg);
}

/* ==========================================
   HEADING
========================================== */

.healthcare-types-heading {
    text-align: center;

    max-width: 950px;

    margin: auto auto 80px;

    position: relative;
    z-index: 2;
}

.healthcare-types-heading h2 {
    color: white;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 600;

    margin-bottom: 24px;
}

.healthcare-types-heading p {
    color: rgba(255, 255, 255, 0.74);

    font-size: 18px;

    line-height: 1.9;
}

/* ==========================================
   WRAPPER
========================================== */

.types-wrapper {
    display: grid;

    grid-template-columns: 1fr 280px 1fr;

    align-items: center;

    gap: 40px;

    position: relative;
    z-index: 2;
}

/* ==========================================
   SIDES
========================================== */

.types-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ==========================================
   TYPE BOX
========================================== */

.type-box {
    position: relative;

    background: linear-gradient(
        135deg,
        rgba(245, 243, 237, 0.08),
        rgba(238, 213, 194, 0.03)
    );

    border: 1px solid rgba(245, 243, 237, 0.1);

    border-radius: 14px;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 18px;

    transition: 0.4s ease;
}

.type-box:hover {
    transform: translateY(-6px);

    border-color: rgba(238, 213, 194, 0.25);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* connector lines */

.left-side .type-box::after {
    content: "";

    position: absolute;

    width: 80px;
    height: 1px;

    background: rgba(238, 213, 194, 0.25);

    right: -80px;
    top: 50%;
}

.right-side .type-box::before {
    content: "";

    position: absolute;

    width: 80px;
    height: 1px;

    background: rgba(238, 213, 194, 0.25);

    left: -80px;
    top: 50%;
}

/* ==========================================
   CONTENT
========================================== */

.type-content {
    color: white;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 600;

    max-width: 230px;
}

/* ==========================================
   NUMBER
========================================== */

.type-number {
    width: 42px;
    height: 42px;

    min-width: 42px;

    border-radius: 50%;

    background: #eed5c2;

    color: #16313d;

    font-size: 15px;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   CENTER
========================================== */

.types-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-circle {
    width: 260px;
    height: 260px;

    border-radius: 50%;

    border: 1px solid rgba(245, 243, 237, 0.14);

    background: radial-gradient(
        circle,
        rgba(238, 213, 194, 0.08),
        transparent 70%
    );

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    position: relative;
}

.center-circle::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    border: 1px dashed rgba(238, 213, 194, 0.12);

    animation: rotateCircle 25s linear infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.center-circle span {
    color: #eed5c2;

    font-size: 18px;

    margin-bottom: 12px;
}

.center-circle h3 {
    color: white;

    font-size: 36px;

    line-height: 1.3;

    font-weight: 600;
}

/* ==========================================
   FOOTER
========================================== */

.types-footer {
    margin-top: 80px;

    text-align: center;

    color: rgba(255, 255, 255, 0.78);

    font-size: 22px;

    line-height: 1.8;

    font-weight: 500;

    position: relative;
    z-index: 2;
}

.types-footer span {
    color: #eed5c2;

    font-weight: 800;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {
    .types-wrapper {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .left-side .type-box::after,
    .right-side .type-box::before {
        display: none;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .digiature-healthcare-types {
        padding: 80px 15px;
    }

    .healthcare-types-heading {
        margin-bottom: 55px;
    }

    .healthcare-types-heading h2 {
        font-size: 34px;
    }

    .healthcare-types-heading p {
        font-size: 15px;
    }

    .center-circle {
        width: 220px;
        height: 220px;
    }

    .center-circle::before {
        width: 270px;
        height: 270px;
    }

    .center-circle h3 {
        font-size: 28px;
    }

    .type-box {
        padding: 14px;

        gap: 15px;
    }

    .type-content {
        font-size: 14px;
    }

    .types-footer {
        font-size: 18px;

        margin-top: 55px;
    }
}

/* Future */
/* ==========================================
   HEALTHCARE TRENDS SECTION
========================================== */

.healthcare-trends-section {
    position: relative;

    padding: 80px 20px;

    overflow: hidden;

    background: linear-gradient(180deg, #ffffff, #faf5ff);
}

/* ==========================================
   BACKGROUND GLOWS
========================================== */

.healthcare-trends-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(147, 51, 234, 0.07);

    filter: blur(120px);

    top: -120px;
    left: -120px;
}

.healthcare-trends-section::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    border-radius: 50%;

    background: rgba(168, 85, 247, 0.07);

    filter: blur(120px);

    right: -120px;
    bottom: -120px;
}

/* ==========================================
   HEADING
========================================== */

.healthcare-trends-heading {
    text-align: center;

    max-width: 950px;

    margin: auto auto 90px;

    position: relative;
    z-index: 2;
}

.trends-badge {
    display: inline-block;

    padding: 12px 28px;

    border-radius: 50px;

    background: rgba(147, 51, 234, 0.08);

    border: 1px solid rgba(147, 51, 234, 0.12);

    color: #7e22ce;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.healthcare-trends-heading h2 {
    color: #111827;

    font-size: 30px;

    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 24px;
}

.healthcare-trends-heading h2 span {
    color: #9333ea;
}

.healthcare-trends-heading p {
    color: #6b7280;

    font-size: 19px;

    line-height: 1.9;
}

/* ==========================================
   MAIN WRAPPER
========================================== */

.healthcare-trends-wrapper {
    display: grid;

    grid-template-columns: 1fr 380px 1fr;

    align-items: center;

    gap: 35px;

    position: relative;
    z-index: 2;
}

/* ==========================================
   SIDES
========================================== */

.trends-side {
    display: flex;
    flex-direction: column;

    gap: 35px;
}

/* ==========================================
   PILL BOX
========================================== */

.trend-item {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    min-height: 78px;

    padding: 10px 14px;

    border-radius: 100px;

    background: white;

    border: 1px solid rgba(147, 51, 234, 0.12);

    box-shadow: 0 8px 22px rgba(147, 51, 234, 0.08);

    transition: 0.4s ease;

    overflow: visible;
}

/* ==========================================
   CONNECTOR LINES
========================================== */

.left-side .trend-item::after {
    content: "";

    position: absolute;

    width: 95px;
    height: 2px;

    background: linear-gradient(
        to right,
        rgba(147, 51, 234, 0.2),
        rgba(147, 51, 234, 0.05)
    );

    right: -95px;
    top: 50%;
}

.right-side .trend-item::before {
    content: "";

    position: absolute;

    width: 95px;
    height: 2px;

    background: linear-gradient(
        to left,
        rgba(147, 51, 234, 0.2),
        rgba(147, 51, 234, 0.05)
    );

    left: -95px;
    top: 50%;
}

/* ==========================================
   HOVER
========================================== */

.trend-item:hover {
    transform: translateY(-5px) scale(1.02);

    border-color: rgba(147, 51, 234, 0.22);

    box-shadow: 0 16px 35px rgba(147, 51, 234, 0.14);
}

/* ==========================================
   ICON
========================================== */

.trend-icon {
    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 50%;

    background: linear-gradient(135deg, #9333ea, #a855f7);

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.22);

    position: relative;
    z-index: 2;
}

.trend-icon i {
    color: white;

    font-size: 21px;
}

/* ==========================================
   CONTENT
========================================== */

.trend-content {
    flex: 1;
}

.trend-content h3 {
    color: #111827;

    font-size: 15px;

    line-height: 1.5;

    font-weight: 700;

    margin: 0;
}

/* ==========================================
   CENTER IMAGE
========================================== */

.trends-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image-wrapper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
}

.center-image-wrapper::before {
    content: "";

    position: absolute;

    width: 340px;
    height: 340px;

    border-radius: 50%;

    border: 2px dashed rgba(147, 51, 234, 0.12);

    animation: rotateCircle 28s linear infinite;
}

.center-image-wrapper img {
    width: 100%;

    max-width: 300px;

    position: relative;
    z-index: 2;

    animation: floatingImage 5s ease-in-out infinite;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatingImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   FOOTER
========================================== */

.trends-footer {
    margin-top: 90px;

    text-align: center;

    position: relative;
    z-index: 2;
}

.trends-footer p {
    max-width: 1000px;

    margin: auto;

    color: #374151;

    font-size: 24px;

    line-height: 1.8;

    font-weight: 500;
}

.trends-footer span {
    color: #9333ea;

    font-weight: 800;
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {
    .healthcare-trends-wrapper {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .left-side .trend-item::after,
    .right-side .trend-item::before {
        display: none;
    }

    .healthcare-trends-heading h2 {
        font-size: 46px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .healthcare-trends-section {
        padding: 80px 15px;
    }

    .healthcare-trends-heading {
        margin-bottom: 55px;
    }

    .healthcare-trends-heading h2 {
        font-size: 34px;
    }

    .healthcare-trends-heading p {
        font-size: 15px;
    }

    .trends-side {
        gap: 22px;
    }

    .trend-item {
        min-height: 70px;

        padding: 10px 12px;

        gap: 14px;
    }

    .trend-icon {
        width: 50px;
        height: 50px;

        min-width: 50px;
    }

    .trend-icon i {
        font-size: 18px;
    }

    .trend-content h3 {
        font-size: 13px;
    }

    .center-image-wrapper::before {
        width: 240px;
        height: 240px;
    }

    .center-image-wrapper img {
        max-width: 220px;
    }

    .trends-footer {
        margin-top: 55px;
    }

    .trends-footer p {
        font-size: 18px;
    }
}

.trends-center img {
    width: 100%;

    max-width: 300px;

    border-radius: 30px;

    position: relative;
    z-index: 2;

    animation: floatingImage 5s ease-in-out infinite;

    box-shadow: 0 20px 45px rgba(147, 51, 234, 0.18);
}

/* ==========================================
   HEALTHCARE CTA SECTION
========================================== */

.healthcare-cta-section {
    position: relative;

    padding: 80px 20px;

    overflow: hidden;

    background: linear-gradient(180deg, #ffffff, #f8f9fc);
}

/* ==========================================
   CTA BOX
========================================== */

.healthcare-cta-box {
    position: relative;

    padding: 70px;

    border-radius: 40px;

    overflow: hidden;

    background: linear-gradient(135deg, #2e3138, #3c4354, #7c86a1);

    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    align-items: center;

    gap: 40px;

    z-index: 2;
}

/* ==========================================
   BACKGROUND GLOW
========================================== */

.healthcare-cta-box::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    filter: blur(100px);

    top: -120px;
    left: -120px;
}

.healthcare-cta-box::after {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.06);

    filter: blur(100px);

    bottom: -100px;
    right: -100px;
}

/* ==========================================
   CONTENT
========================================== */

.healthcare-cta-content {
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: white;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 24px;
}

.healthcare-cta-content h2 {
    color: white;

    font-size: 40px;

    line-height: 1.15;

    font-weight: 400;

    margin-bottom: 26px;
}

.healthcare-cta-content p {
    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.9;

    max-width: 760px;

    margin-bottom: 38px;
}

/* ==========================================
   BUTTONS
========================================== */

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 18px;

    flex-wrap: wrap;
}

.healthcare-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 18px 32px;

    border-radius: 60px;

    background: white;

    color: #2e3138;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.4s ease;
}

.healthcare-primary-btn:hover {
    transform: translateY(-5px);

    background: #f5f5f5;
}

.healthcare-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px 30px;

    border-radius: 60px;

    border: 1px solid rgba(255, 255, 255, 0.18);

    color: white;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;

    transition: 0.4s ease;
}

.healthcare-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-5px);
}

/* ==========================================
   RIGHT SIDE
========================================== */

.healthcare-cta-right {
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    z-index: 2;
}

/* ==========================================
   CIRCLE
========================================== */

.cta-circle {
    position: relative;

    width: 320px;
    height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* RINGS */

.circle-ring {
    position: absolute;

    border-radius: 50%;

    border: 2px dashed rgba(255, 255, 255, 0.16);

    animation: rotateRing 25s linear infinite;
}

.ring-one {
    width: 320px;
    height: 320px;
}

.ring-two {
    width: 240px;
    height: 240px;

    animation-direction: reverse;
}

/* ==========================================
   INNER CIRCLE
========================================== */

.cta-inner-circle {
    width: 170px;
    height: 170px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.12);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);

    animation: floatingCircle 5s ease-in-out infinite;
}

.cta-inner-circle i {
    color: white;

    font-size: 42px;

    margin-bottom: 16px;
}

.cta-inner-circle h3 {
    color: white;

    font-size: 28px;

    line-height: 1.3;

    font-weight: 800;
}

/* ==========================================
   ANIMATIONS
========================================== */

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatingCircle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 992px) {
    .healthcare-cta-box {
        grid-template-columns: 1fr;

        text-align: center;

        padding: 60px 40px;
    }

    .cta-buttons {
        justify-content: center;
    }

    .healthcare-cta-content h2 {
        font-size: 46px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .healthcare-cta-section {
        padding: 80px 15px;
    }

    .healthcare-cta-box {
        padding: 45px 24px;

        border-radius: 30px;
    }

    .healthcare-cta-content h2 {
        font-size: 34px;
    }

    .healthcare-cta-content p {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .healthcare-primary-btn,
    .healthcare-secondary-btn {
        width: 100%;

        justify-content: center;
    }

    .cta-circle {
        width: 250px;
        height: 250px;
    }

    .ring-one {
        width: 250px;
        height: 250px;
    }

    .ring-two {
        width: 190px;
        height: 190px;
    }

    .cta-inner-circle {
        width: 140px;
        height: 140px;
    }

    .cta-inner-circle i {
        font-size: 34px;
    }

    .cta-inner-circle h3 {
        font-size: 22px;
    }
}

/* ==========================================
   HEALTHCARE FAQ SECTION
========================================== */

.healthcare-faq-section {
    position: relative;

    padding: 80px 20px;

    background: #f4f4f4;

    overflow: hidden;
}

/* ==========================================
   BACKGROUND EFFECTS
========================================== */

.healthcare-faq-section::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border-radius: 50%;

    background: rgba(28, 63, 149, 0.06);

    filter: blur(120px);

    top: -140px;
    left: -140px;
}

.healthcare-faq-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    border-radius: 50%;

    background: rgba(28, 63, 149, 0.05);

    filter: blur(120px);

    bottom: -120px;
    right: -120px;
}

/* ==========================================
   HEADING
========================================== */

.healthcare-faq-heading {
    text-align: center;

    max-width: 900px;

    margin: auto auto 70px;

    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-block;

    padding: 12px 24px;

    border-radius: 50px;

    background: rgba(28, 63, 149, 0.08);

    border: 1px solid rgba(28, 63, 149, 0.12);

    color: #1c3f95;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 22px;
}

.healthcare-faq-heading h2 {
    color: #111827;

    font-size: 38px;

    line-height: 1.15;

    font-weight: 600;

    margin-bottom: 24px;
}

.healthcare-faq-heading p {
    color: #6b7280;

    font-size: 18px;

    line-height: 1.9;
}

/* ==========================================
   FAQ WRAPPER
========================================== */

.healthcare-faq-wrapper {
    max-width: 1050px;

    margin: auto;

    display: flex;
    flex-direction: column;

    gap: 24px;

    position: relative;
    z-index: 2;
}

/* ==========================================
   FAQ ITEM
========================================== */

.healthcare-faq-item {
    background: white;

    border-radius: 24px;

    border: 1px solid rgba(28, 63, 149, 0.08);

    overflow: hidden;

    transition: 0.4s ease;

    box-shadow: 0 10px 25px rgba(28, 63, 149, 0.05);
}

.healthcare-faq-item:hover {
    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(28, 63, 149, 0.08);
}

/* ==========================================
   QUESTION
========================================== */

.healthcare-faq-question {
    width: 100%;

    border: none;

    background: transparent;

    padding: 28px 32px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;

    text-align: left;
}

.healthcare-faq-question span {
    color: #111827;

    font-size: 21px;

    line-height: 1.6;

    font-weight: 400;
}

/* ==========================================
   ICON
========================================== */

.faq-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 50%;

    background: #1c3f95;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 400;

    transition: 0.4s ease;
}

/* ==========================================
   ANSWER
========================================== */

.healthcare-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.5s ease,
        padding 0.4s ease;
}

.healthcare-faq-answer p {
    padding: 0 32px 30px;

    color: #6b7280;

    font-size: 17px;

    line-height: 1.9;
}

/* ACTIVE */

.healthcare-faq-item.active {
    border-color: rgba(28, 63, 149, 0.18);
}

.healthcare-faq-item.active .healthcare-faq-answer {
    max-height: 300px;
}

.healthcare-faq-item.active .faq-icon {
    transform: rotate(45deg);

    background: #16306f;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {
    .healthcare-faq-section {
        padding: 80px 15px;
    }

    .healthcare-faq-heading {
        margin-bottom: 50px;
    }

    .healthcare-faq-heading h2 {
        font-size: 34px;
    }

    .healthcare-faq-heading p {
        font-size: 15px;
    }

    .healthcare-faq-wrapper {
        gap: 18px;
    }

    .healthcare-faq-question {
        padding: 20px;
    }

    .healthcare-faq-question span {
        font-size: 16px;
    }

    .faq-icon {
        width: 42px;
        height: 42px;

        min-width: 42px;

        font-size: 24px;
    }

    .healthcare-faq-answer p {
        padding: 0 20px 24px;

        font-size: 14px;
    }
}
