@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700;800&family=Outfit:wght@400;600&display=swap');

:root {
    --primary-color: #0d47a1;
    --secondary-color: #c62828;
    --text-dark: #333333;
    --text-muted: #666666;
    --bg-white: #ffffff;
}

html {
    scrollbar-gutter: stable;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background:
        url(../images/bg-1.png) left top no-repeat fixed,
        url(../images/bg-2.png) right bottom no-repeat fixed;
    background-size: 70px auto, 70px auto;
    background-color: #fcfdfe;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.body-bg {
    background-attachment: fixed;
}

/* Force override Bootstrap's modal padding shift to prevent content jump */
body.modal-open {
    padding-right: 0 !important;
}

h1,
.bold-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

/* Background Abstract Waves */
.bg-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.wave {
    position: absolute;
    opacity: 0.4;
}

/* Main Layout */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 2rem 0;
    background: #0d436e;
}

.logo-container {
    margin-bottom: 4rem;
}

.logo-container img {
    height: 140px;
    border-radius: 13px;
}

/* .thank-you-section {
    min-height: 400px !important;
    height: 400px;
} */

/* .main-title {
    font-size: 6.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: #444;
    letter-spacing: -3px;
    text-transform: none;
} */

.main-title {
    font-size: clamp(36px, 8vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.logo-container {
    margin-bottom: 3rem;
    margin-left: -10px;
    /* Slight offset for visual balance */
}

/* Sliced Circle Quadrant Layout */
.quadrant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    margin-left: auto;
}

.quadrant-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.quadrant-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Perfect Circle Segments */
.q-tl {
    border-top-left-radius: 100%;
}

.q-tr {
    border-top-right-radius: 100%;
}

.q-bl {
    border-bottom-left-radius: 100%;
}

.q-br {
    border-bottom-right-radius: 100%;
}

/* Abstract Elements */
.abstract-line {
    position: absolute;
    z-index: -1;
}

.line-orange {
    stroke: #f57c00;
    stroke-width: 1;
}

.line-purple {
    stroke: #7b1fa2;
    stroke-width: 1;
}

/* Empowering Section Styles */
.empowering-section {
    min-height: 100vh;
    padding: 4rem 0;
    background-color: #fff;
    position: relative;
}

.ribbon-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    padding: 20px 0;
}

.ribbon-main {
    display: flex;
    align-items: stretch;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #FFB300;
    border-bottom: 4px solid #FFB300;
}

.ribbon-content {
    padding: 10px 40px;
}

.ribbon-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #444;
    margin: 0;
    text-transform: none;
}

.ribbon-accent-box {
    width: 100px;
    background: #FFB300;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
}

.ribbon-accent-box.left {
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
}

.ribbon-accent-box.right {
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0 100%);
}

.ribbon-accent-box .stripe {
    width: 6px;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    transform: skewX(-20deg);
}

/* Left Side: Flag and Logo */
.brand-focus-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.flag-box {
    text-align: center;
}

.flag-box img {
    width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flag-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #666;
}

.medvista-cross-large {
    width: 150px;
}

/* Central Hub */
.central-hub-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.central-hub-outer {
    width: 380px;
    height: 380px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.05), 0 20px 60px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.central-hub {
    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    font-weight: 800;
    font-size: 1.6rem;
    color: #222;
    line-height: 1.2;
    z-index: 2;
}

/* Right Side Steps */
.steps-container {
    position: relative;
    padding-left: 2rem;
}

.steps-arc {
    position: absolute;
    left: -40px;
    top: 55%;
    transform: translateY(-50%);
    width: 300px;
    height: 90%;
    border-left: 5px dotted #d1d9e6;
    border-radius: 50% 0 0 50%;
    z-index: 0;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.step-number-box {
    width: 130px;
    height: 130px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 3;
    margin-right: -65px;
    border: 8px solid #f8f9fa;
    flex-shrink: 0;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0d47a1;
}

.step-content {
    background: #0d47a1;
    color: #fff;
    padding: 1.5rem 2.5rem 1.5rem 5.5rem;
    border-radius: 0 65px 65px 0;
    width: 100%;
    min-height: 130px;
    display: flex;
    align-items: center;
    font-size: 1.15rem;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(13, 71, 161, 0.15);
    transition: all 0.3s ease;
}

.step-item:nth-child(even) .step-content {
    background: #fff;
    color: #0d47a1;
    border: 4px solid #0d47a1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.step-item:nth-child(5) .step-content {
    background: #001a33;
}

/* Specific offsets for the arc effect */
.step-item:nth-child(1) {
    transform: translateX(20px);
}

.step-item:nth-child(2) {
    transform: translateX(100px);
}

.step-item:nth-child(3) {
    transform: translateX(140px);
}

.step-item:nth-child(4) {
    transform: translateX(100px);
}

.step-item:nth-child(5) {
    transform: translateX(20px);
}

/* Connecting dots */
.arc-dot {
    position: absolute;
    width: 18px;
    height: 18px;
    background: #00acc1;
    border-radius: 50%;
    border: 3px solid #fff;
    left: -75px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 15px rgba(0, 172, 193, 0.4);
    z-index: 4;
}

/* map section */
.container_map {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 40px;
}

.content_map {
    flex: 1;
}


.map-wrapper {
    flex: 1;
    position: relative;
    max-width: 700px;
}

.map-wrapper img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

/* ========================= */
/* SVG LOCATION PIN STYLE */
/* ========================= */

.marker {
    position: absolute;
    width: 36px;
    height: 36px;

    /* Align bottom tip of pin to coordinate */
    /* transform:translate(-50%, -100%) rotate(-18deg); */
    transition: 0.3s ease;
}

/* Hover straighten effect */
.marker:hover {
    /* transform:translate(-50%, -100%) rotate(0deg) scale(1.1); */
    transform: scale(1.1);
}

.marker svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 8px 6px rgba(0, 0, 0, 0.3));
}

/* ========================= */
/* COORDINATES */
/* ========================= */

/* USA */
.usa {
    top: 18%;
    left: 11%;
}

/* UK */
.uk {
    top: 9%;
    left: 41.5%;
}

/* Europe */
.europe {
    top: 13%;
    left: 45%;
}

/* Saudi Arabia */
.saudi {
    top: 26%;
    left: 55.5%
}

/* India */
.india {
    top: 28%;
    left: 67%;
}

/* Australia */
.australia {
    top: 57%;
    left: 83%;
}



/* 3rd section */

/* Core Variables */

/* === Base Reset & Variables === */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --med-red: #bd2026;
    --med-blue: #004a87;
    --med-yellow: #f8c01b;
    --text-dark: #333333;
    --bg-color: #fcfdfe;

    /* Pill Colors from light to dark */
    --pill-1: #00679a;
    --pill-2: #082181;
    --pill-3: #1b7196;
    --pill-4: #004764;
    --pill-5: #001328;
}



.medvista-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

/* === Header Styling === */
.medvista-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
}

.header-title {
    text-align: center;
    padding: 0 40px;
}

.header-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #4a5568;
    line-height: 1.2;
}

/* Yellow Geometric Accents */
.accent-line {
    height: 6px;
    width: 120px;
    background-color: var(--med-yellow);
    position: relative;
}

.accent-left::before,
.accent-right::after {
    content: '';
    position: absolute;
    top: -12px;
    width: 40px;
    height: 30px;
    background-color: var(--med-yellow);
}

.accent-left::before {
    right: -15px;
    transform: skewX(-45deg);
}

.accent-right::after {
    left: -15px;
    transform: skewX(-45deg);
}


/* === Main Content Layout === */
.medvista-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
}

/* === Left Column: Flag & Logo === */
.col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1.5;
    z-index: 10;
}

.brand-group {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.flag-box {
    text-align: center;
}

.flag-box img {
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.flag-box p {
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    line-height: 1.3;
}

.logo-box {
    display: flex;
    align-items: center;
}

.med-logo-svg {
    width: 140px;
    height: 140px;
}

/* === Center Column: 3D Circle === */
.col-center {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 10;
}

.center-circle {
    width: 300px;
    height: 300px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 2rem; */
    /* Creates the 3D concentric ring effect */
    box-shadow:
        inset 0 0 25px rgba(0, 0, 0, 0.03),
        0 0 0 1px #e2e8f0,
        0 0 0 15px #f8fafc,
        0 0 0 16px #e2e8f0,
        -20px 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.center-circle h3 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.5;
    color: #1a202c;
}

/* Connecting lines from center */
.connect-line-left {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 150px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 4px;
    transform: translateY(-50%);
    z-index: -1;
}

.center-circle img {
    width: 300px;
}


/* === Right Column: Curved Timeline === */
.col-right {
    flex: 2;
    position: relative;
    padding-left: 120px;
    /* Space for the curve */
}

.timeline-arc {
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: -160px;
    /* Adjusted to align with nodes */
    width: 200px;
    border: 2px dashed #cbd5e1;
    border-right: none;
    border-radius: 200px 0 0 200px / 50% 0 0 50%;
    z-index: 0;
}

.timeline-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

/* Timeline Nodes (Teal dots on the arc) */
.node {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 4px solid #00a2b1;
    background: #ffffff;
    border-radius: 50%;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

/* Dotted horizontal connectors */
.line {
    position: absolute;
    height: 0;
    border-top: 2px dashed #a8b2bd;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

/* Pill Grouping */
.pill-group {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 550px;
    transition: all 0.3s ease;
}

.pill-group:hover {
    scale: 1.05;
}

/* Outer Track styling around the pill */
.track {
    position: absolute;
    inset: -8px -15px -8px -10px;
    border: 2px solid #e2e8f0;
    border-radius: 60px;
    z-index: -1;
}

.track::before,
.track::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    border-radius: 50%;
}

.row-odd .track::before {
    top: -6px;
    left: 60px;
}

.row-odd .track::after {
    bottom: -6px;
    right: 60px;
}

.row-even .track::before {
    bottom: -6px;
    left: 60px;
}

.row-even .track::after {
    top: -6px;
    right: 60px;
}

/* The Number Circle */
.circle {
    width: 80px;
    height: 80px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: -10px;
    z-index: 2;
}

/* The Content Box */
.box {
    flex: 1;
    margin-left: 30px;
    padding: 20px 30px 20px 60px;
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.4;
    min-height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Dynamic Positions for the curve connection */
.row-1 .node {
    left: -105px;
}

.row-1 .line {
    left: -95px;
    width: 95px;
}

.row-1 .circle {
    color: var(--pill-1);
}

.row-1 .box {
    background: var(--pill-1);
}

.row-2 .node {
    left: -135px;
}

.row-2 .line {
    left: -125px;
    width: 125px;
}

.row-2 .circle {
    color: var(--pill-2);
}

.row-2 .box {
    background: var(--pill-2);
}

.row-3 .node {
    left: -145px;
}

.row-3 .line {
    left: -135px;
    width: 135px;
}

.row-3 .circle {
    color: var(--pill-3);
}

.row-3 .box {
    background: var(--pill-3);
}

.row-4 .node {
    left: -135px;
}

.row-4 .line {
    left: -125px;
    width: 125px;
}

.row-4 .circle {
    color: var(--pill-4);
}

.row-4 .box {
    background: var(--pill-4);
}

.row-5 .node {
    left: -105px;
}

.row-5 .line {
    left: -95px;
    width: 95px;
}

.row-5 .circle {
    color: var(--pill-5);
}

.row-5 .box {
    background: var(--pill-5);
}


/* === Responsive Media Queries === */
@media (max-width: 1200px) {
    .medvista-layout {
        flex-direction: column;
        gap: 60px;
    }

    .col-left {
        flex-direction: row;
        max-width: 100%;
        justify-content: center;
    }

    .connect-line-left,
    .timeline-arc,
    .node,
    .line {
        display: none;
    }

    .col-right {
        padding-left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .medvista-header {
        flex-direction: column;
        gap: 15px;
    }

    .accent-line {
        width: 80px;
    }

    .accent-left::before {
        right: -5px;
    }

    .accent-right::after {
        left: -5px;
    }

    .col-left {
        flex-direction: column;
    }

    .center-circle {
        width: 220px;
        height: 220px;
    }

    .center-circle h3 {
        font-size: 1rem;
    }

    .track {
        display: none;
    }

    /* Hide track on mobile for cleaner look */
    .box {
        padding: 15px 20px 15px 50px;
        font-size: 0.85rem;
        border-radius: 20px;
    }

    .circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .pill-group {
        max-width: 100%;
        padding: 0 10px;
    }
}



:root {
    --item-yellow: #ffb300;
    --item-teal: #26a69a;
    --item-red: #e53935;
    --item-pink: #d81b60;
    --item-blue: #039be5;
    --item-purple: #8e24aa;
    --item-orange: #fb8c00;
    --item-lime: #7cb342;
}

/* Orbit Section Refined Styles */
.orbit-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column; /* Stack header and orbit container vertically */
    align-items: center;
    justify-content: center;
    /* padding: 100px 0; */
    overflow: hidden;
}

.orbit-container {
    position: relative;
    width: 1000px;
    height: 800px;
}

.center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* width:400px; */
    /* height: 320px; */
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, 0.06),
        inset 0 0 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    /* border: 12px solid #f8fafc; */
}

.center-hub h2 {
    font-size: 1.25rem;
    color: #5c7cfa;
    /* Brighter blue for "ABOUT" */
    margin: 0;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.center-hub h1 {
    font-size: 4rem;
    color: #1a202c;
    /* Deep black/navy for "Medvista" */
    margin: -5px 0 0 0;
    font-weight: 800;
    line-height: 1;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    z-index: 10;
}

.orbit-item {
    position: absolute;
    display: flex;
    align-items: center;
    width: 400px;
    z-index: 30;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.orbit-item:hover {
    transform: translateY(-8px);
}

.orbit-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 5;
    flex-shrink: 0;
}

.orbit-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 5px solid var(--border-color, #e2e8f0);
}

.orbit-icon .material-icons-outlined {
    font-size: 4.5rem;
    color: var(--icon-color, #64748b);
    transition: transform 0.3s ease;
}

.orbit-item:hover .orbit-icon .material-icons-outlined {
    transform: scale(1.15);
}

.orbit-item .content {
    padding: 0 12px;
}

.orbit-item .content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 3px;
    line-height: 1.2;
}

.orbit-item .content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Base side styles */
.pos-left {
    text-align: right;
    justify-content: flex-end;
    left: -20px;
}

.pos-left .orbit-icon {
    order: 2;
    margin-left: 20px;
}

.pos-right {
    text-align: left;
    justify-content: flex-start;
    right: -20px;
}

.pos-right .orbit-icon {
    margin-right: 20px;
}

/* Precise Placements */
.pos-innovating {
    top: 10%;
    left: 10px;
    --border-color: var(--item-yellow);
    --icon-color: var(--item-yellow);
    --glow-color: rgba(255, 179, 0, 0.3);
}

.pos-integrated {
    top: 10%;
    right: 10px;
    --border-color: var(--item-lime);
    --icon-color: var(--item-lime);
    --glow-color: rgba(124, 179, 66, 0.3);
}

.pos-efficiency {
   top: 29.5%;
    left: -127px;
    --border-color: var(--item-teal);
    --icon-color: var(--item-teal);
    --glow-color: rgba(38, 166, 154, 0.3);
}

.pos-growth {
  top: 30.5%;
    right: -126px;
    --border-color: var(--item-orange);
    --icon-color: var(--item-orange);
    --glow-color: rgba(251, 140, 0, 0.3);
}

.pos-smart {
    top: 52%;
    left: -125px;
    --border-color: var(--item-red);
    --icon-color: var(--item-red);
    --glow-color: rgba(229, 57, 53, 0.3);
}

.pos-data {
   top: 52%;
    right: -140px;
    --border-color: var(--item-purple);
    --icon-color: var(--item-purple);
    --glow-color: rgba(142, 36, 170, 0.3);
}

.pos-purpose {
   top: 75%;
    left: 6px;
    --border-color: var(--item-pink);
    --icon-color: var(--item-pink);
    --glow-color: rgba(216, 27, 96, 0.3);
}

.pos-patient {
   top: 76%;
    right: 30px;
    --border-color: var(--item-blue);
    --icon-color: var(--item-blue);
    --glow-color: rgba(3, 155, 229, 0.3);
}
.center-hub img {
    width: 340px;
}

/* Orbit Dots on the Ring */

/* Orbit Dots on the Ring */
.ring-dot {
    position: absolute;
    width: 24px;
    /* Larger dots */
    height: 24px;
    background: #fff;
    border: 5px solid var(--dot-color, #e2e8f0);
    border-radius: 50%;
    z-index: 25;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.orbit-item:hover .orbit-icon {
    box-shadow: 0 25px 50px var(--glow-color);
}

@media (max-width: 1024px) {
    .orbit-container {
        transform: scale(0.85);
        height: auto;
        display: block;
    }
}

@media (max-width: 768px) {
    .orbit-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        transform: none;
        width: 100%;
        margin: 80px 0;
    }

    .orbit-ring,
    .ring-dot,
    .center-hub::before {
        display: none;
    }

    .orbit-item {
        position: static;
        width: 100%;
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        margin-bottom: 30px;
    }

    .orbit-icon {
        order: 1 !important;
        margin: 10px 0 20px 0 !important;
        width: 110px;
        height: 110px;
    }

    .orbit-icon .material-icons-outlined {
        font-size: 3.5rem;
    }

    .orbit-item .content {
        padding: 0 !important;
    }

    .center-hub {
        position: relative;
        transform: none;
        left: auto;
        top: auto;
        margin-bottom: 80px;
        width: 280px;
        height: 280px;
    }

    .center-hub h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .center-hub {
        width: 220px;
        height: 220px;
    }
    .center-hub h1 {
        font-size: 2rem;
    }
    .orbit-icon {
        width: 90px;
        height: 90px;
    }
    .orbit-icon .material-icons-outlined {
        font-size: 2.8rem;
    }
}





   .background-pattern {
            background-image: radial-gradient(circle at 2px 2px, rgba(0,0,0,0.05) 1px, transparent 0);
            background-size: 24px 24px;
        }
        .dark .background-pattern {
            background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.05) 1px, transparent 0);
        }
        .wave-top-left {
            position: absolute;
            top: -50px;
            left: -50px;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }
        .wave-bottom-right {
            position: absolute;
            bottom: -50px;
            right: -50px;
            z-index: 0;
            opacity: 0.15;
            pointer-events: none;
        }

.head-sect {
    width: 100%;
    z-index: 60;
}

/* Mission, Vision & Core Values Section */
.values-section {
    position: relative;
    padding: 100px 0;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 10;
}

.hubs-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
}

.hub-circle {
    width: 80%; max-width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px;
    text-align: center;
    box-shadow: inset 0 0 30px rgba(0,0,0,0.05), 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hub-circle:hover {
    transform: translateY(-10px);
}

.hub-circle h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #444;
}

.hub-circle p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #666;
}

.mission-hub {
    border: 14px solid #f97316; /* Orange */
}

.vision-hub {
    border: 14px solid #06b6d4; /* Teal */
}

.hub-icon-pop {
    position: absolute;
    width: 160px;
    height: 160px;
    z-index: 2;
}

.mission-pop {
    top: -20px;
    left: -40px;
}

.vision-pop {
    top: 50px;
    right: -60px;
}

.hub-icon-pop img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

/* Core Values Center */
.core-values-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    margin-top: 40px;
}

.center-hub-values {
    width: 320px;
    height: 320px;
    background: #fff;
    border-radius: 50%;
    border: 10px solid #fbbf24; /* Yellow/Orange */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    z-index: 10;
    position: relative;
    margin: 30px;
}

.puzzle-hands {
    position: absolute;
    top: -110px;
    width: 220px;
}

.puzzle-hands img {
    width: 100%;
}

.center-hub-values h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #444;
    line-height: 1.1;
    margin-top: 40px;
}

/* Value Columns */
.value-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    max-width: 400px;
}

.col-left-values {
    align-items: flex-end;
}

.col-right-values {
    align-items: flex-start;
}

/* Value Pills */
.value-pill {
    background: #fdf6e3;
    padding: 20px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.value-pill:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.pill-left {
    flex-direction: row;
}

/* .pill-right {
    flex-direction: row-reverse;
} */

.pill-content {
    flex: 1;
}

.pill-left .pill-content {
    text-align: right;
}

.pill-right .pill-content {
    text-align: left;
}

.pill-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.pill-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 5px 0 0 0;
    line-height: 1.3;
}

.pill-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #fff;
    background: #eee;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.pill-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1200px) {
    .hubs-container {
        gap: 40px;
    }
    .hub-circle {
        width: 380px;
        height: 380px;
        padding: 40px;
    }
    .hub-circle h2 { font-size: 2rem; }
    .values-section {
    position: relative;
    padding: 20px 0;

}
}

@media (max-width: 991px) {
    .hubs-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .hub-circle {
        width: 100%;
        max-width: 450px;
        height: auto;
        aspect-ratio: 1;
    }
    .core-values-layout {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .value-column {
        max-width: 100%;
        align-items: center !important;
    }
    .pill-left .pill-content, .pill-right .pill-content {
        text-align: center;
    }
    .value-pill {
        flex-direction: column !important;
        text-align: center;
        border-radius: 30px;
        padding: 30px 20px;
    }
    .center-hub-values {
        margin: 20px 0;
        order: -1;
    }
}

@media (max-width: 480px) {
    .hub-circle {
        padding: 30px 20px;
    }
    .hub-circle h2 { font-size: 1.5rem; }
    .hub-circle p { font-size: 0.95rem; }
    .hub-icon-pop {
        width: 100px;
        height: 100px;
    }
    .mission-pop { left: -10px; top: -10px; }
    .vision-pop { right: -10px; top: 20px; }
    .center-hub-values {
        width: 260px;
        height: 260px;
    }
    .center-hub-values h2 { font-size: 1.8rem; }
}



  .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 1px 1px 40px -15px rgb(0 0 0 / 37%);
        }
        .dark .glass-card {
            background: rgba(30, 41, 59, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.1);
           box-shadow: 1px 1px 40px -15px rgb(0 0 0 / 37%);
        }
        /* .logo-container {
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
            background: #ffffff;
        } */
        .dark .logo-container {
            background: #1e293b;
            box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.2);
        }
        .abstract-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }
        .line-pattern {
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle at center, transparent 0%, transparent 100%),
                        repeating-linear-gradient(45deg, rgba(234, 179, 8, 0.05) 0px, rgba(234, 179, 8, 0.05) 2px, transparent 2px, transparent 20px),
                        repeating-linear-gradient(-45deg, rgba(168, 85, 247, 0.05) 0px, rgba(168, 85, 247, 0.05) 2px, transparent 2px, transparent 20px);
            transform: rotate(-15deg);
            top: -25%;
            left: -25%;
        }
        .overlap-icon {
            transform: translateY(24px);
            z-index: 10;
        }

        .overlap-icon img {
            width: 90px;
            height: 90px;
            object-fit: contain;
            border-radius: 0.5rem;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 1px 1px 40px -15px rgb(0 0 0 / 37%);
            display: flex;
            flex-direction: column;
            overflow: visible !important;
            border-radius: 2rem;
            transition: transform 0.3s ease;
        }

        .glass-card:hover {
            scale: 1.05;
        }

        /* Prevent modal from scaling on hover */
        .modal-content.glass-card:hover {
            scale: 1 !important;
        }

        .glass-card .content-box {
            flex-grow: 1;
            margin-bottom: 1.5rem;
        }

        .product-logo-box {
            background: #fff;
            padding: 12px 24px;
            border-radius: 12px;
            border: 1px solid #f1f5f9;
            box-shadow: inset 0px 0px 4px rgb(0 0 0 / 44%);
            margin-bottom: 2rem;
        }

        .text-vista-red { color: #bd2026; }
        .text-vista-blue { color: #004a87; }

        .btn-demo {
            background-color: #0d47a1;
            color: #ffffff !important;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-demo:hover {
    background-color: #002e5a;
    box-shadow: 0 10px 20px rgba(13, 71, 161, 0.3);
    scale: 1.05;
    color: #ffffff !important;
}

        .min-h-550 {
            min-height: 450px;
        }

        /* Dark mode support */
        .dark .glass-card {
            background: rgba(30, 41, 59, 0.7);
            border-color: rgba(255, 255, 255, 0.1);
        }
        .dark .text-vista-blue { color: #60a5fa; }
        .dark .product-logo-box {
            background: #1e293b;
            border-color: rgba(255, 255, 255, 0.1);
        }



/* Modules Section Styles */
.modules-section {
    padding: 60px 0;
    background: transparent;
}

.module-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 0.75rem;
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    width: 100%;
    cursor: pointer;
    text-decoration: none;
}

.module-card:hover {
    scale: 1.05;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.module-card:hover .icon-wrapper {
    transform: rotate(5deg) scale(1.1);
}

.icon-wrapper .material-icons-outlined {
    font-size: 2rem;
}

.module-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    text-align: center;
    line-height: 1.25;
    letter-spacing: 0.01em;
    padding: 0 5px;
}

/* Icon Background Variants */
.bg-red-light { background-color: #fef2f2; color: #ef4444; }
.bg-blue-light { background-color: #eff6ff; color: #3b82f6; }
.bg-indigo-light { background-color: #eef2ff; color: #6366f1; }
.bg-emerald-light { background-color: #ecfdf5; color: #10b981; }
.bg-slate-light { background-color: #f8fafc; color: #64748b; }
.bg-amber-light { background-color: #fffbeb; color: #f59e0b; }
.bg-purple-light { background-color: #faf5ff; color: #a855f7; }
.bg-sky-light { background-color: #f0f9ff; color: #0ea5e9; }
.bg-rose-light { background-color: #fff1f2; color: #e11d48; }
.bg-cyan-light { background-color: #ecfeff; color: #06b6d4; }
.bg-teal-light { background-color: #f0fdfa; color: #14b8a6; }
.bg-zinc-light { background-color: #f4f4f5; color: #71717a; }
.bg-pink-light { background-color: #fdf2f8; color: #ec4899; }
.bg-orange-light { background-color: #fff7ed; color: #f97316; }
.bg-violet-light { background-color: #f5f3ff; color: #8b5cf6; }
.bg-lime-light { background-color: #f7fee7; color: #84cc16; }

/* Custom Row Cols for 10 items */
@media (min-width: 1200px) {
    .row-cols-xl-10 > * {
        flex: 0 0 auto;
        width: 10%;
    }
}
@media (min-width: 1400px) {
    .row-cols-xxl-10 > * {
        flex: 0 0 auto;
        width: 10%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }



/* section 10 */

.section10-wrapper {
            max-width: 1300px;
            margin: 80px auto;
            padding: 0 20px;
        }

        .section10-container {
            display: grid;
            grid-template-columns: 1fr 320px 1fr;
            align-items: center;
            gap: 40px;
        }

        .section10-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .section10-card {
            background: #fff;
            padding: 25px;
            /* height: 100px; */
            border-radius: 14px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
            display: flex;
            gap: 18px;
            align-items: flex-start;
            transition: 0.3s ease;
            border: 1px solid #f1f1f1;
        }

        .section10-card:hover {
    scale: 1.05;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

        /* ICON WRAPPER */
        .section10-icon {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
        }

        .section10-icon svg {
            width: 100%;
            height: 100%;
        }

        /* Typography */
        .section10-card h3 {
            margin: 0 0 8px;
            font-size: 17px;
            font-weight: 600;
        }

        .section10-card p {
            margin: 0;
            font-size: 14px;
            color: #555;
            line-height: 1.6;
        }

        /* Six Accent Colors */
        .section10-blue {
            border-left: 5px solid #0b73b6;
        }

        .section10-teal {
            border-left: 5px solid #00a8a8;
        }

        .section10-green {
            border-left: 5px solid #57b847;
        }

        .section10-purple {
            border-left: 5px solid #7a5af8;
        }

        .section10-orange {
            border-left: 5px solid #f97316;
        }

        .section10-yellow {
            border-left: 5px solid #f4b400;
        }

        /* Center Circle */
        .section10-center {
            position: relative;
            width: 320px;
            height: 320px;
            margin: auto;
            border-radius: 50%;
            background: linear-gradient(145deg, #ffffff, #f3f3f3);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.08),
                inset 0 4px 20px rgba(0, 0, 0, 0.03);
        }

        .section10-center::before {
            content: "";
            position: absolute;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            border: 3px dashed #e5e5e5;
        }

        .section10-center h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 0;
            line-height: 1.4;
        }

        .section10-center span {
            display: block;
            color: #0b73b6;
        }

        @media(max-width:992px) {
            .section10-container {
                grid-template-columns: 1fr;
            }

            .section10-center {
                order: -1;
                margin-bottom: 40px;
            }
        }


         .sec11-container {
            width: 1300px;
            margin: auto;

            display: flex;
            justify-content: center;
            /* border: 1px solid red; */

            position: relative;
        }

        .img {
            position: absolute;
            transition: transform 0.3s;
            /* border: 10px solid gray;  */
            border: 10px solid white;
            width: 100px;
            height: 100px;
        }

        .img:hover {
            transform: scale(1.05);
        }

        .img1 {
            top: 0%;
            left: 45.5%;
        }

        .img2 {
            top: 21%;
            left: 69%;
        }

        .img3 {
            top: 51%;
            left: 74%;
        }

        .img4 {
            top: 84%;
            left: 65%;
        }

        .img5 {
            top: 83%;
            left: 26.5%;
        }

        .img6 {
            top: 54%;
            left: 18%;
        }

        .img7 {
            top: 20%;
            left: 20%;
        }




/* ===== SECTION CONTAINER ===== */
.section13-container{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(5, auto);
    align-items: center;
    gap: 20px 60px;
    max-width: 1400px;
    margin: 80px auto;
    justify-content: center;
}

/* ===== CENTER CIRCLE ===== */
.section13-center{
    grid-column: 2;
    grid-row: 1 / span 5;
    width:340px;
    /* height:340px; */
    /* background:#f3f5f7; */
    border-radius:50%;
    margin: 0;
    justify-self: center;
    align-self: center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    /* padding:40px; */
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
    z-index:3;
    transition:all .4s ease;
}

.section13-center h2{
    font-size:30px;
    line-height:1.3;
    margin:0;
    font-weight:600;
    color:#111;
}

/* Center hover */
.section13-center:hover{
    transform: scale(1.05);
    box-shadow:0 25px 60px rgba(13,76,120,0.25);
}

/* ===== COLORED RING ===== */
.section13-ring{
    grid-column: 2;
    grid-row: 1 / span 5;
    width:450px;
    height:450px;
    border-radius:50%;
    justify-self: center;
    align-self: center;
    background:conic-gradient(
        #0e3a5a 0deg 45deg,
        #123f67 45deg 90deg,
        #0b5fa5 90deg 135deg,
        #1a8ac2 135deg 180deg,
        #37b7c9 180deg 225deg,
        #219ab5 225deg 270deg,
        #166c92 270deg 315deg,
        #0e3a5a 315deg 360deg
    );
    -webkit-mask: radial-gradient(circle 185px at center, transparent 99%, black 100%);
    mask: radial-gradient(circle 185px at center, transparent 99%, black 100%);
    z-index:1;
    transition:transform 2s linear;
}

/* Rotate ring when hovering entire section */
.section13-container:hover .section13-ring{
    transform: rotate(360deg);
}

/* ===== BUBBLE BOX ===== */
.section13-box{
    width:300px;
    background:#f7f7f7;
    padding:18px 22px;
    border-radius:50px;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
    z-index:4;
    transition:all .35s ease;
    cursor:pointer;
    border: 2px solid rgb(238, 238, 238);
    display: flex;
    flex-direction: row;
    align-items: center; /* Center icon vertically with the text block */
    gap: 15px;
}

.section13-icon {
    font-size: 32px; /* Slightly larger for the row layout */
    color: #1a8ac2;
    flex-shrink: 0; /* Prevent icon from squeezing */
}

.section13-text {
    display: flex;
    flex-direction: column;
}

.section13-box h4{
    margin:0 0 6px;
    font-size:15px;
    font-weight:600;
    color:#111;
}

.section13-box p{
    margin:0;
    font-size:13px;
    line-height:1.5;
    color:#555;
}

/* Bubble Hover Effect */
.section13-box:hover{
    scale: 1.05;
    box-shadow:0 18px 35px rgba(13,76,120,0.25);
    background:#ffffff;
    border:1px solid #1a8ac2;
}

/* ===== LEFT POSITIONS ===== */
.section13-box.l1{ grid-column: 1; grid-row: 1; justify-self: end; }
.section13-box.l2{ grid-column: 1; grid-row: 2; justify-self: end; }
.section13-box.l3{ grid-column: 1; grid-row: 3; justify-self: end; }
.section13-box.l4{ grid-column: 1; grid-row: 4; justify-self: end; }
.section13-box.l5{ grid-column: 1; grid-row: 5; justify-self: end; }

/* ===== RIGHT POSITIONS ===== */
.section13-box.r1{ grid-column: 3; grid-row: 1; justify-self: start; }
.section13-box.r2{ grid-column: 3; grid-row: 2; justify-self: start; }
.section13-box.r3{ grid-column: 3; grid-row: 3; justify-self: start; }
.section13-box.r4{ grid-column: 3; grid-row: 4; justify-self: start; }
.section13-box.r5{ grid-column: 3; grid-row: 5; justify-self: start; }

/* ===== RESPONSIVE ===== */
@media(max-width:1200px){
    .section13-container{
        display: flex;
        flex-direction: column;
        width:100%;
        height:auto;
        padding-bottom:100px;
    }
    .section13-ring{
        display:none;
    }
    .section13-center{
        margin:0 auto 40px;
    }
    .section13-box{
        margin:20px auto;
    }
}


.margin-bt-0{
    margin-bottom: 0;
}


/* ========================= */
/* PREMIUM INFOGRAPHIC SECTION */
/* ========================= */

.infographic-wrapper {
    padding: 30px 0;
    position: relative;
    overflow: hidden;
}

.infographic-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 660px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center Hub */
.hub-master {
    position: relative;
    width: 280px;
    height: 280px;
    z-index: 20;
}

.info-hub-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* padding: 35px; */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 10px solid #f8fafc;
    position: relative;
    z-index: 30;
}

.info-hub-circle h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.3;
    margin: 0;
}

/* Petals / Flags */
.hub-flags {
    position: absolute;
    inset: -30px;
    pointer-events: none;
    z-index: 10;
}

.petal-flag {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 100px;
    margin-left: -25px;
    margin-top: -150px; /* Offset from center */
    transform-origin: 25px 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.petal-flag span {
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
}

.petal-1 { transform: rotate(0deg); background-color: #facc15; }
.petal-2 { transform: rotate(45deg); background-color: #fb923c; }
.petal-3 { transform: rotate(90deg); background-color: #22d3ee; }
.petal-4 { transform: rotate(135deg); background-color: #34d399; }
.petal-5 { transform: rotate(225deg); background-color: #6366f1; }
.petal-6 { transform: rotate(270deg); background-color: #ec4899; }
.petal-7 { transform: rotate(315deg); background-color: #a3e635; }

.petal-1 span { transform: rotate(0deg); }
.petal-2 span { transform: rotate(-45deg); }
.petal-3 span { transform: rotate(-90deg); }
.petal-4 span { transform: rotate(-135deg); }
.petal-5 span { transform: rotate(-225deg); }
.petal-6 span { transform: rotate(-270deg); }
.petal-7 span { transform: rotate(-315deg); }

/* Segment Content */
.segment-item {
    position: absolute;
    width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 40;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.segment-item:hover {
    scale: 1.05;
}

.segment-icon-box {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.segment-icon-box .material-icons-outlined {
    font-size: 2.2rem;
}

.segment-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}

/* Positioning of items - Fixed Radius of 280px */
.segment-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.seg-1 { top: calc(50% - 280px); left: 50%; }
.seg-2 { top: calc(50% - 198px); left: calc(50% + 198px); }
.seg-3 { top: 50%; left: calc(50% + 280px); }
.seg-4 { top: calc(50% + 198px); left: calc(50% + 198px); }
.seg-5 { top: calc(50% + 198px); left: calc(50% - 198px); }
.seg-6 { top: 50%; left: calc(50% - 280px); }
.seg-7 { top: calc(50% - 198px); left: calc(50% - 198px); }

@media (max-width: 1100px) {
    .infographic-container {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    .hub-master { order: -1; margin: 0 auto 40px; }
    .segment-item {
        position: static;
        width: 100%;
        max-width: 500px;
        flex-direction: row;
        text-align: left;
        transform: none !important;
        background: #ffffff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }
    .segment-icon-box { flex-shrink: 0; }
    .hub-flags { display: none; }
}

.dark .info-hub-circle, .dark .segment-icon-box, .dark .segment-item { background: #1e293b; border-color: #334155; }
.dark .info-hub-circle h3, .dark .segment-text h4 { color: #f1f5f9; }




/* ===== Wrapper ===== */
        .section15-wrapper {
            display: flex;
            flex-direction: column; /* Stack header and content vertically */
            align-items: center;
            justify-content: center;
            padding: 80px 20px;
            box-sizing: border-box;
        }

        /* ===== Container ===== */
        .section15-container {
            width: 100%;
            max-width: 1320px;
        }

        /* ===== Layout Grid ===== */
        .section15-grid {
            display: block; /* Remove 2-column grid to follow the new header layout */
            width: 100%;
        }



        /* ===== Content Area ===== */
        .section15-content {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        /* ===== Card Rows ===== */
        .section15-top,
        .section15-bottom {
            display: flex;
            justify-content: space-between;
            gap: 40px;
        }

        /* ===== Cards ===== */
        .section15-card {
            /* border: 1px solid red; */
            flex: 0 0 32%;
            min-width: 280px;
        }

        .section15-icon {
            width: 50px;
            height: 50px;
            /* margin-bottom: 15px; */
        }

        .section15-card h3 {
            /* font-size: 20px; */
            margin: 0 0 10px;
            font-weight: 700;
        }

        .section15-card p {
            font-size: 15px;
            /* line-height: 1.6; */
            margin: 0;
            color: #444;
        }

        /* ===== Arrow Strip ===== */
        .section15-arrows {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .section15-arrow {
            width: 120px;
            height: 120px;
            background: linear-gradient(180deg, #2da7b9, #1d5f86);
            clip-path: polygon(50% 0%, 100% 60%, 75% 60%, 75% 100%, 25% 100%, 25% 60%, 0% 60%);
        }

        .section15-arrow.down {
            transform: rotate(180deg);
        }

        .section15-strip {
            flex: 1;
            height: 60px;
            background: linear-gradient(90deg, #2da7b9, #1d5f86);
            border-radius: 40px;
            margin: 0 -10px;
        }

        @media (max-width:1200px) {
            .section15-top,
            .section15-bottom {
                flex-wrap: wrap;
                gap: 20px;
            }

            .section15-card {
                flex: 0 0 48%;
            }
        }

        @media (max-width: 768px) {
            .section15-card {
                flex: 0 0 100%;
            }
            .section15-arrows {
                display: none;
            }
        }

        .arrow-image{
            /* border: 1px solid red; */
            /* height: 250px; */
            width: 95%;
        }



        /* section 18 */


          /* Wrapper */
        .section18-wrapper {
            max-width: 1300px;
            margin: auto;
            padding: 0 20px;
        }

        .section18-title {
            text-align: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
        }

        /* =======================
   TOP GRID
======================= */
        .section18-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 300px));
            justify-content: center;
            gap: 20px;
        }

        @media (max-width: 1200px) {
            .section18-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 991px) {
            .section18-grid { grid-template-columns: repeat(3, 1fr); }
        }
        @media (max-width: 768px) {
            .section18-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .section18-grid { grid-template-columns: 1fr; }
        }

        .section18-card {
            position: relative;
            background: #fff;
            border-radius: 20px;
            padding: 10px 15px;
            overflow: hidden;
            /* min-height: 440px; */
            text-align: center;
            transition: .4s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        /* Gradient Accent */
        .section18-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
        }

        .section18-card:nth-child(1)::before {
            background: linear-gradient(90deg, #4facfe, #00f2fe);
        }

        .section18-card:nth-child(2)::before {
            background: linear-gradient(90deg, #f093fb, #f5576c);
        }

        .section18-card:nth-child(3)::before {
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .section18-card:nth-child(4)::before {
            background: linear-gradient(90deg, #43e97b, #38f9d7);
        }

        /* Abstract Blob */
        .section18-card::after {
            content: "";
            position: absolute;
            width: 180px;
            height: 180px;
            top: -60px;
            right: -60px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent 70%);
        }

        .section18-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
        }

        /* Shine */
        .section18-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.6), transparent 70%);
            transform: skewX(-20deg);
            transition: .8s;
        }

        .section18-card:hover .section18-shine,
        .section18-small-card:hover .section18-shine {
            left: 120%;
        }

        .section18-card h3 {
            /* font-size: 26px; */
            /* margin-bottom: 25px; */
            position: relative;
            z-index: 2;
        }

        .section18-image {
            width: 100px;
            aspect-ratio: 1/1;
            /* height: 140px; */
            object-fit: contain;
            /* margin: 0 auto 25px; */
            position: relative;
            z-index: 2;
        }

        .section18-logos {
            /* border: 1px solid red; */
            width: 100%;
            aspect-ratio: 1/1;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            /* gap: 15px; */
            position: relative;
            z-index: 2;
        }

        .section18-logos img {
            /* height: 40px; */
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: .3s;
        }

        .section18-logos img:hover {
            transform: scale(1.1);
        }

        /* =======================
   BOTTOM SECTION
======================= */
        .section18-bottom {
            margin-top: 20px;
            display: grid;
            /* grid-template-columns: repeat(3, 1fr);  */
            grid-template-columns: repeat(3, minmax(0, 300px));
            justify-content: center;
            gap: 30px;
        }

        .section18-small-card {
            position: relative;
            background: #fff;
            border-radius: 20px;
            padding: 10px 15px;
            text-align: center;
            overflow: hidden;
            transition: .4s ease;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        }

        /* Gradient accent per bottom card */
        .section18-small-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
        }

        .section18-small-card:nth-child(1)::before {
            background: linear-gradient(90deg, #ff9966, #ff5e62);
        }

        .section18-small-card:nth-child(2)::before {
            background: linear-gradient(90deg, #36d1dc, #5b86e5);
        }

        .section18-small-card:nth-child(3)::before {
            background: linear-gradient(90deg, #11998e, #38ef7d);
        }

        /* Blob */
        .section18-small-card::after {
            content: "";
            position: absolute;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            top: -50px;
            right: -50px;
            background: radial-gradient(circle, rgba(0, 0, 0, 0.05), transparent 70%);
        }

        .section18-small-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .section18-small-card h4 {
            font-size: 20px;
            /* margin-bottom: 20px; */
        }

        .section18-small-card img {
            /* height:45px; */
            height: 100px;
            /* margin: 12px 15px; */
            object-fit: contain;
            transition: .3s;
        }

        .section18-small-card img:hover {
            transform: scale(1.15);
        }

        /* =======================
   RESPONSIVE
======================= */
        @media(max-width:992px) {
            .section18-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .section18-bottom {
                grid-template-columns: 1fr;
            }
        }

        @media(max-width:600px) {
            .section18-grid {
                grid-template-columns: 1fr;
            }
        }




          /* wrapper */
        /* .section12-wrapper {
            padding: 80px 20px;
        } */

        .section12-container {
            width: 100%;
            max-width: 1400px;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr 420px 1fr;
            align-items: center;
            /* row-gap: 10px; */
            column-gap: 15px;
        }

        /* columns */
        .section12-col {
            display: flex;
            flex-direction: column;
            gap: 10px;
            padding:10px;
        }

        /* items */
        .section12-item {
            display: flex;
            align-items: center;
            gap: 18px;
            transition: .4s;
        }

        .section12-item:hover {
            transform: translateY(-6px);
        }

        .section12-content {
            flex: 1;
        }

        .section12-content h3 {
            font-size: 18px;
            margin: 0 0 8px;
            font-weight: 600;
        }

        .section12-content p {
            font-size: 14px;
            margin: 0;
            line-height: 1.6;
            color: #444;
        }

        /* icon box */
        .section12-hex {
            width: 110px;
            height: 110px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            background: linear-gradient(135deg, #e8f5fb, #ffffff);
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
            transition: .4s;
        }

        .section12-item:hover .section12-hex {
            transform: scale(1.08);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .section12-hex svg {
            width: 50px;
            height: 50px;
            stroke: #0f5c8e;
            fill: none;
            stroke-width: 2;
        }

        /* center */
        .section12-center {
            /* border: 1px solid red; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .section12-circle {
            width: 320px;
            height: 320px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #0f5c8e, #18a7c9);
            color: #fff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            position: relative;
            transition: .4s;
        }

        .section12-circle:hover {
            transform: scale(1.05);
        }

        .section12-circle::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            border: 3px dashed #0f5c8e;
            animation: section12-rotate 18s linear infinite;
        }

        @keyframes section12-rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .section12-circle h2 {
            font-size: 26px;
            line-height: 1.3;
            margin: 0;
            z-index: 2;
        }

        /* LEFT COLUMN ALTERNATE */
        .section12-col:first-child .section12-item:nth-child(odd) {
            flex-direction: row;
            text-align: right;
        }

        .section12-col:first-child .section12-item:nth-child(even) {
            flex-direction: row-reverse;
            text-align: left;
        }

        /* RIGHT COLUMN ALTERNATE */
        .section12-col:last-child .section12-item:nth-child(odd) {
            flex-direction: row-reverse;
            text-align: left;
        }

        .section12-col:last-child .section12-item:nth-child(even) {
            flex-direction: row;
            text-align: right;
        }

        /* responsive */
        @media(max-width:1200px) {

            .section12-container {
                grid-template-columns: 1fr;
                gap: 70px;
            }

            .section12-item {
                flex-direction: row !important;
                text-align: left !important;
            }

            .section12-circle {
                width: 200px;
                height: 200px;
            }

            .section12-circle::before {
                width: 250px;
                height: 250px;
            }

        }




/* Wrapper */
.section16-wrapper{
    max-width:1400px;
    margin:90px auto;
    display:grid;
    grid-template-columns: 1fr;
    gap:50px;
    align-items:start;
}
/* LEFT SIDE */
.section16-left h2{
    font-size:36px;
    font-weight:700;
    color:#4a4a4a;
    line-height:1.2;
    margin-bottom:30px;
}

.section16-left img{
    width:100%;
    border-radius:8px;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

/* Grid */
.section16-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

/* Card */
.section16-card{
    position:relative;
    background:#f2f3f5;
    border-radius:20px;
    padding:20px 50px 20px 20px;
    box-shadow:0 20px 35px rgba(0,0,0,0.15);
    overflow:hidden;
    cursor:pointer;
    transition:all .4s ease;
}

.section16-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(255,255,255,.4), rgba(255,255,255,0));
    opacity:0;
    transition:opacity .4s ease;
}

.section16-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 50px rgba(0,0,0,0.25);
}

.section16-card:hover::before{
    opacity:1;
}

.section16-card h3{
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin:0 0 8px 0;
}

.section16-card p{
    font-size:15px;
    color:#333;
    margin:0;
    text-align:justify;
}

/* Number Strip */
.section16-strip{
    position:absolute;
    top:0;
    right:0;
    width:30px;
    height:100%;
    border-top-right-radius:20px;
    border-bottom-right-radius:20px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    padding-top:25px;
}

.section16-strip span{
    font-size:26px;
    font-weight:700;
    color:#fff;
}

/* Gradients */
.section16-1{background:linear-gradient(to bottom,#F5A623,#F8D24A);}
.section16-2{background:linear-gradient(to bottom,#E94E1B,#F57C4E);}
.section16-3{background:linear-gradient(to bottom,#8B6F5A,#B89A84);}
.section16-4{background:linear-gradient(to bottom,#1E8E3E,#6AC259);}
.section16-5{background:linear-gradient(to bottom,#0E7C86,#4FC3C8);}
.section16-6{background:linear-gradient(to bottom,#1F4E8C,#4F7DBD);}
.section16-7{background:linear-gradient(to bottom,#3A4A6A,#7B8DAE);}
.section16-8{background:linear-gradient(to bottom,#6A2C91,#A66BCF);}
.section16-9{background:linear-gradient(to bottom,#E91E63,#F06292);}

/* Responsive */

@media(max-width:1100px){

.section16-wrapper{
    grid-template-columns:1fr;
}

.section16-left{
    max-width:600px;
}

.section16-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.section16-grid{
    grid-template-columns:1fr;
}

}



   .imageWrapper {
            /* border: 1px solid blue; */
            /* background-image: url("./images/section17/bg.jpg");
            background-repeat: no-repeat;
            background-position: 110% 110%;   */
            /* background-size: 200px; */
        }


        .image {
            /* border: 1px solid red; */
            height: auto;
            max-width: 700px;
            margin: 40px auto;
        }

        .image img {
            width: 100%;
            height: 100%;
            filter: drop-shadow(0px 0px 10px rgb(229, 229, 229));
        }



     /* ================= WRAPPER ================= */
.section19-wrapper{
    max-width:1400px;
    margin:40px auto;
    min-height:500px;
    padding:80px 20px;
    position:relative;
}

/* ================= CENTER ================= */
.section19-center{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:230px;
    height:230px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    z-index:10;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.section19-center h2{
    font-size:20px;
    font-weight:700;
    color:#333;
    line-height:1.3;
}

/* ================= DECOR ================= */
.section19-petal{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    z-index:1;
}

.section19-petal.one{
    width:320px;
    height:320px;
    background:conic-gradient(#7ED957,#00C2A8,#3B82F6,#7C3AED,#7ED957);
    animation:rotate 25s linear infinite;
}

.section19-petal.two{
    width:360px;
    height:360px;
    background:conic-gradient(#00C2A8,#3B82F6,#7C3AED,#7ED957,#00C2A8);
    opacity:.25;
    filter:blur(25px);
}

@keyframes rotate{
    from{transform:translate(-50%,-50%) rotate(0deg);}
    to{transform:translate(-50%,-50%) rotate(360deg);}
}

/* ================= ORBIT ================= */
.section19-orbit{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
}

/* ================= LINES ================= */
.section19-line{
    position:absolute;
    top:0;
    left:0;
    height:2px;
    background:#d1d5db;
    transform-origin:0 0;
}

.section19-line::after{
    content:"";
    position:absolute;
    right:0;
    top:-4px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:inherit;
}

/* ================= NODES ================= */
.section19-node{
    position:absolute;
    width:95px;
    height:95px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 6px 25px rgba(0,0,0,0.08);
    transform:translate(-50%,-50%);
    transition:.3s;
}

.section19-node:hover{
    transform:translate(-50%,-50%) scale(1.08);
}

.section19-node img{
    width:65%;
    height:auto;
    object-fit:contain;
}

/* ================= TABLET ================= */
@media (max-width:768px){

    .section19-center{
        width:160px;
        height:160px;
    }

    .section19-center h2{
        font-size:16px;
    }

    .section19-node{
        width:70px;
        height:70px;
    }
}

/* ================= MOBILE GRID ================= */
@media(max-width:600px){

    .section19-orbit{
        position:static;
        transform:none;
        display:grid;
        grid-template-columns: repeat(3, 1fr);
        gap:20px;
        margin-top:30px;
    }

    .section19-line{
        display:none;
    }

    .section19-node{
        position:static;
        transform:none;
        margin:auto;
    }

    .section19-center{
        position:static;
        transform:none;
        margin:0 auto 30px;
    }

    .section19-petal{
        display:none;
    }
}




  /* Layout & Grid setup */
    .cards-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 pairs per row */
        gap: 30px;
        max-width: 1300px;
        margin: 0 auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    /* The dotted border wrapping 2 cards */
    .card-pair {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        /* border: 2px dotted #d1b5ba; */
        /* Subtle dotted red/pink */
        border-radius: 40px;
        padding: 15px;
    }

    /* Individual card setup */
    .card-wrapper {
        position: relative;
        padding: 15px;
        /* Creates padding so the side arrows don't clip */
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px dotted gray;
        border-radius: 21px !important;
        /* padding: 10px; */
    }

    .card {
        background: #ffffff;
        border-radius: 16px;
        /* border-radius: 50px;  */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        /* padding: 30px 20px; */
        padding: 15px;
        text-align: center;
        z-index: 2;
        /* Keeps the white card above the colored accent */
        width: 100%;
        /* min-height: 70%; */
        height: 90%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .card img {
        margin-bottom: 10px;
        object-fit: contain;
        width: 70px;
        height: 70px;
    }

    .card h3 {
        font-size: 15px;
        font-weight: 800;
        margin: 0 0 12px 0;
        color: #111;
        text-transform: uppercase;
        line-height: 1.3;
    }

    .card p {
        font-size: 12px;
        color: #444;
        line-height: 1.5;
        margin: 0;
    }

    /* -- Accent Shapes (Colored background boxes) -- */
    .accent-shape {
        position: absolute;
        top: 25px;
        top: 0;
        bottom: 25px;
        width: 60%;
        z-index: 1;
        height: 100%;
        border-radius: 20px !important;
        /* Puts it behind the white card */
    }

    /* Right-facing accent (Columns 1 & 2) */
    .card-wrapper.right .accent-shape {
        right: 0px;
        border-radius: 0 30px 30px 0;
    }

    .card-wrapper.right .accent-shape::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -14px;
        transform: translateY(-50%);
        border-width: 14px 0 14px 14px;
        border-style: solid;
    }

    /* Left-facing accent (Columns 3 & 4) */
    .card-wrapper.left .accent-shape {
        left: 0px;
        border-radius: 30px 0 0 30px;
    }

    .card-wrapper.left .accent-shape::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -14px;
        transform: translateY(-50%);
        border-width: 14px 14px 14px 0;
        border-style: solid;
    }

    /* -- Color Themes -- */
    /* Blue Theme */
    .card-wrapper.blue .accent-shape {
        background: #4f6b8b;
    }

    .card-wrapper.blue.right .accent-shape::after {
        border-color: transparent transparent transparent #4f6b8b;
    }

    .card-wrapper.blue.left .accent-shape::after {
        border-color: transparent #4f6b8b transparent transparent;
    }

    /* Red Theme */
    .card-wrapper.red .accent-shape {
        background: #ee2951;
    }

    .card-wrapper.red.right .accent-shape::after {
        border-color: transparent transparent transparent #ee2951;
    }

    .card-wrapper.red.left .accent-shape::after {
        border-color: transparent #ee2951 transparent transparent;
    }

    /* Responsive adjustment for smaller screens */
    @media (max-width: 1024px) {
        .cards-layout {
            grid-template-columns: 1fr;
            /* Switch to 1 pair per row */
        }
    }

    @media (max-width: 600px) {
        .card-pair {
            grid-template-columns: 1fr;
            /* Stack cards inside the pair */
        }

        .card-wrapper.left .accent-shape {
            left: auto;
            right: 0px;
            /* Switch to right arrows for neat mobile stacking */
            border-radius: 0 30px 30px 0;
        }

        .card-wrapper.left .accent-shape::after {
            left: auto;
            right: -14px;
            border-width: 14px 0 14px 14px;
        }

        .card-wrapper.blue.left .accent-shape::after {
            border-color: transparent transparent transparent #4f6b8b;
        }

        .card-wrapper.red.left .accent-shape::after {
            border-color: transparent transparent transparent #ee2951;
        }
    }

     /* ===== Wrapper ===== */
        .section21-wrapper {
            /* border: 1px solid blue; */
            max-width: 1300px;
            margin: auto;
            /* padding: 60px 20px; */
            position: relative;
        }

        /* ===== Layout ===== */
        .section21-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            justify-content: center;
            /* gap: 40px; */
        }

        /* ===== Left Content ===== */
        .section21-left {
            /* border: 1px solid pink; */
            width: 50%;
        }

        .section21-logo {
            /* border: 1px solid red; */
            width: 250px;
            /* height: 60px; */
            object-fit: contain;
            /* margin-bottom: 30px; */
        }

        .section21-title-red {
            font-size: 64px;
            font-weight: 900;
            color: #e52b2b;
            letter-spacing: 3px;
            margin: 0;
        }

        .section21-title-blue {
            font-size: 52px;
            font-weight: 900;
            color: #243d6b;
            line-height: 1.15;
            margin: 10px 0 25px;
        }

        .section21-subtitle {
            font-size: 26px;
            font-weight: 700;
            color: #1f5fa7;
            margin-bottom: 20px;
        }

        .section21-desc {
            font-size: 18px;
            line-height: 1.6;
            color: #355c7d;
            max-width: 520px;
        }

        /* ===== Right Image ===== */
        .section21-right {
            /* border: 1px solid red; */
            width: 45%;
            position: relative;
        }

        .section21-robot {
            /* border: 1px solid green; */
            /* width: 520px; */
            /* height: 620px; */
            object-fit: contain;
            width: 100%;
        }

        /* ===== Decorative graphics ===== */
        .section21-wave-left {
            position: absolute;
            top: 0;
            left: -60px;
            width: 180px;
            height: 240px;
            object-fit: contain;
        }

        .section21-wave-right {
            position: absolute;
            top: 0;
            right: -60px;
            width: 220px;
            height: 160px;
            object-fit: contain;
        }

        .section21-hex {
            position: absolute;
            right: 0;
            top: 260px;
            width: 120px;
            height: 120px;
            object-fit: contain;
        }



          .section22 {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
            text-align: center;
        }

        /* heading */

        .section22-head-wrap {
            position: relative;
            width: 100%; max-width: 720px;
            margin: 0 auto 100px;
        }

        .section22-head-bg {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%; max-width: 420px;
            height: 90px;
            background: #e8e8e8;
            border-radius: 6px;
            box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
        }

        .section22-heading {
            position: relative;
            padding: 28px 40px;
            background: linear-gradient(135deg, #6f8fb5, #2c3e5f);
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.35;
            border-radius: 20px;
            box-shadow:
                0 15px 35px rgba(0, 0, 0, .25),
                inset 0 2px 0 rgba(255, 255, 255, .2);
            transition: .35s;
            text-align: center;
        }

        .section22-heading:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .35);
        }

        /* steps */

        .section22-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        /* card */

        .section22-card {
            width: 150px;
            position: relative;
            text-align: center;
            transition: .35s;
            cursor: pointer;
        }

        .section22-card.up {
            transform: translateY(-60px);
        }

        .section22-card.down {
            transform: translateY(60px);
        }

        .section22-card:hover {
            transform: translateY(-10px) scale(1.05);
        }

        /* octagon */

        .section22-shape {
            width: 120px;
            height: 120px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;

            clip-path: polygon(30% 0%, 70% 0%,
                    100% 30%, 100% 70%,
                    70% 100%, 30% 100%,
                    0% 70%, 0% 30%);

            filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .35));
            transition: .35s;
        }

        .section22-card:hover .section22-shape {
            filter: drop-shadow(0 14px 20px rgba(0, 0, 0, .45));
            transform: scale(1.08);
        }

        /* gradients */

        .section22-c1 {
            background: linear-gradient(135deg, #ff256b, #ff5c5c);
        }

        .section22-c2 {
            background: linear-gradient(135deg, #ff5533, #ffb84d);
        }

        .section22-c3 {
            background: linear-gradient(135deg, #2da8ff, #0052a3);
        }

        .section22-c4 {
            background: linear-gradient(135deg, #6d2df7, #b44cff);
        }

        .section22-c5 {
            background: linear-gradient(135deg, #0db36d, #27e08f);
        }

        /* icons */

        .section22-shape svg {
            width: 50px;
            height: 50px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
            transition: .35s;
        }

        .section22-card:hover svg {
            transform: scale(1.15) rotate(5deg);
        }

        /* number */

        .section22-num {
            position: absolute;
            left: -10px;
            bottom: 55px;
            width: 44px;
            height: 44px;
            background: #e9e9e9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
            transition: .35s;
        }

        .section22-card:hover .section22-num {
            background: #fff;
            transform: scale(1.15);
            box-shadow: 0 8px 16px rgba(0, 0, 0, .35);
        }

        /* title */

        .section22-title {
            margin-top: 14px;
            font-weight: 600;
            color: #666;
            transition: .3s;
        }

        .section22-card:hover .section22-title {
            color: #111;
            transform: translateY(3px);
        }

        /* connectors */

        .section22-line {
            width: 50px;
            height: 2px;
            background: #cfcfcf;
            position: relative;
            overflow: hidden;
        }

        .section22-line::after {
            content: "";
            position: absolute;
            left: -100%;
            top: 0;
            height: 100%;
            width: 100%;
            background: linear-gradient(90deg, transparent, #999, transparent);
            animation: section22Flow 4s linear infinite;
        }

        @keyframes section22Flow {
            to {
                left: 100%;
            }
        }

        /* quote */

        .section22-quote {
            max-width: 820px;
            margin: 90px auto 0;
            font-style: italic;
            color: #444;
            font-size: 18px;
            line-height: 1.6;
            opacity: .85;
            transition: .3s;
        }

        .section22-quote:hover {
            opacity: 1;
            transform: translateY(-3px);
        }




           .section23-wrapper {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
        }

        /* heading */
        .section23-head-wrap {
            position: relative;
            width: 100%; max-width: 720px;
            margin: 0 auto 30px;
        }

        .section23-head-bg {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%; max-width: 420px;
            height: 90px;
            background: #e8e8e8;
            border-radius: 6px;
            box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
        }

        .section23-heading {
            position: relative;
            padding: 28px 40px;
            background: linear-gradient(135deg, #6f8fb5, #2c3e5f);
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.35;
            border-radius: 20px;
            box-shadow:
                0 15px 35px rgba(0, 0, 0, .25),
                inset 0 2px 0 rgba(255, 255, 255, .2);
            transition: .35s;
            text-align: center;
        }

        .section23-heading:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .35);
        }


        /* rows */
        .section23-list {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* row */
        .section23-row {
            display: flex;
            align-items: center;
            gap: 30px;
            justify-content: center;
            transition: transform .35s;
        }

        .section23-row:hover {
            transform: translateY(-6px);
        }

        /* cube */
        .section23-cube {
            width: 150px;
            height: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            flex-shrink: 0;
            transition: transform .45s, box-shadow .45s;
        }

        .section23-row:hover .section23-cube {
            transform: rotateY(20deg) rotateX(10deg) scale(1.05);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
        }

        /* cube colors */
        .section23-cube.orange {
            background: linear-gradient(145deg, #ffb400, #ff5a00);
        }

        .section23-cube.teal {
            background: linear-gradient(145deg, #00bcd4, #007d8a);
        }

        .section23-cube.dark {
            background: linear-gradient(145deg, #4b5964, #1f2a33);
        }

        /* icon */
        .section23-icon {
            width: 70px;
            height: 70px;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            transition: transform .4s;
        }

        .section23-row:hover .section23-icon {
            transform: scale(1.15);
        }

        /* text */
        .section23-item h3 {
            margin: 0 0 10px 0;
            font-size: 20px;
            letter-spacing: 1px;
        }

        .section23-item p {
            margin: 0;
            font-size: 18px;
            line-height: 1.6;
            color: #666;
            max-width: 750px;
            text-align: justify;
        }

        /* line */
        /* .section23-wrapper .line {
            height: 7px;
            width: 50px;
            border-radius: 100px;
            transition: width .4s;
            flex-shrink: 0;
        } */

        .section23-row:hover .line {
            width: 80px;
        }

        /* colors */
        .section23-wrapper .orange {
            background: linear-gradient(145deg, #ffb400, #ff5a00);
        }

        .section23-wrapper .teal {
            background: linear-gradient(145deg, #00bcd4, #007d8a);
        }

        .section23-wrapper .dark {
            background: linear-gradient(145deg, #4b5964, #1f2a33);
        }


          /* wrapper */
        .section24-wrapper {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
        }

        /* layout */
        .section24-grid {
            display: grid;
            grid-template-columns: 1fr 160px 1fr;
            align-items: center;
        }

        /* cards */
        .section24-card {
            background: linear-gradient(145deg, #f8f8f8, #e9e9e9);
            padding: 40px 45px;
            border-radius: 40px;
            position: relative;
            z-index: 1;
            /* height: 450px; */

            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow:
                0 20px 40px rgba(0, 0, 0, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);

            transition: all .35s ease;
        }

        /* card hover */
        .section24-card:hover {
            transform: translateY(-10px);
            box-shadow:
                0 30px 60px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
        }

        /* subtle light */
        .section24-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
            border-radius: 40px 40px 0 0;
            pointer-events: none;
        }

        /* headings */
        .section24-left h2 {
            color: rgb(14, 8, 98);
            margin-top: 0;
            text-align: center;
        }

        .section24-right h2 {
            color: #d32f2f;
            margin-top: 0;
            text-align: center;
        }

        /* list */
        .section24-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .section24-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 6px 10px;
            border-radius: 12px;
            transition: all .25s ease;
        }

        /* item hover */
        .section24-item:hover {
            background: rgba(0, 0, 0, 0.05);
            transform: translateX(6px);
        }

        .section24-icon {
            width: 22px;
            height: 22px;
            margin-right: 12px;
            flex-shrink: 0;
            transition: transform .25s ease;
        }

        /* icon rotate */
        .section24-item:hover .section24-icon {
            transform: scale(1.15) rotate(-8deg);
        }

        .section24-item b {
            display: block;
            margin-bottom: 4px;
        }

        .section24-desc {
            font-size: 14px;
            color: #444;
        }

        /* center container */
        .section24-middle {
            position: relative;
            height: 420px;
        }

        /* green blob */
        .section24-green {
            position: absolute;
            top: 0;
            left: -10px;
            width: 120px;
            height: 210px;
            background: linear-gradient(#2ecc71, #1fbfa3);
            border-radius: 0 80px 80px 0;
            display: flex;
            align-items: center;
            justify-content: center;

            animation: section24Pulse 4s infinite ease-in-out;
        }

        /* red blob */
        .section24-red {
            position: absolute;
            bottom: 0;
            right: -10px;
            width: 120px;
            height: 210px;
            background: linear-gradient(#ff6a6a, #f44336);
            border-radius: 80px 0 0 80px;
            display: flex;
            align-items: center;
            justify-content: center;

            animation: section24Pulse 4s infinite ease-in-out reverse;
        }

        /* pulse animation */
        @keyframes section24Pulse {
            0% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.04)
            }

            100% {
                transform: scale(1)
            }
        }

        /* white circles */
        .section24-circle {
            width: 72px;
            height: 72px;
            background: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
            transition: all .3s ease;
        }

        /* hover circle */
        .section24-circle:hover {
            transform: scale(1.12);
        }

        /* icons */
        .section24-check {
            fill: #1fbfa3;
            width: 34px;
        }

        .section24-cross {
            width: 34px;
            stroke: #e53935;
            stroke-width: 3;
            fill: none;
        }

        /* heading block */
        .section24-head-wrap {
            position: relative;
            width: 100%; max-width: 720px;
            margin: 0 auto 30px;
        }

        .section24-head-bg {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%; max-width: 420px;
            height: 90px;
            background: #e8e8e8;
            border-radius: 6px;
            box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
        }

        .section24-heading {
            position: relative;
            padding: 28px 40px;
            background: linear-gradient(135deg, #6f8fb5, #2c3e5f);
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.35;
            border-radius: 20px;
            box-shadow:
                0 15px 35px rgba(0, 0, 0, .25),
                inset 0 2px 0 rgba(255, 255, 255, .2);
            transition: .35s;
            text-align: center;
        }

        .section24-heading:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .35);
        }

        /* ===== Map & Brand Focus Responsive ===== */
        @media (max-width: 991px) {
            .container_map {
                flex-direction: column;
                padding: 40px 20px;
                text-align: center;
            }
            .map-wrapper { width: 100%; max-width: 100%; }
            .brand-focus-container { flex-direction: column; text-align: center; }
            .flag-box img { width: 100%; max-width: 400px; }
            .medvista-cross-large { width: 100px; }
            .central-hub-outer { width: 300px; height: 300px; }
            .central-hub { width: 220px; height: 220px; font-size: 1.2rem; }
            .steps-container { padding-left: 0; }
            .steps-arc, .arc-dot { display: none; }
            .step-item { transform: none !important; margin-bottom: 2rem; }
            .step-number-box { width: 80px; height: 80px; margin-right: -40px; border-width: 4px; }
            .step-number { font-size: 2rem; }
            .step-content { padding: 1rem 1.5rem 1rem 3.5rem; text-align: left; font-size: 1rem; border-radius: 0 40px 40px 0; }
        }

        @media (max-width: 768px) {
            .medvista-header h2 { font-size: 1.8rem; }
            .accent-line { width: 60px; }
        }

        /* Fluid Typography & Layout Safety */
        img {
            max-width: 100%;
            height: auto;
        }

        .container, .container-fluid {
            overflow-x: hidden;
        }

        h1, h2, h3 { overflow-wrap: break-word; }

        /* ===== Responsive Media Queries ===== */

        @media (max-width: 1200px) {
            .section21-row {
                gap: 20px;
            }
            .section21-title-red { font-size: 50px; }
            .section21-title-blue { font-size: 42px; }
            .section24-grid { grid-template-columns: 1fr 120px 1fr; }
        }

        @media (max-width: 991px) {
            .section21-row {
                flex-direction: column;
                text-align: center;
            }
            .section21-left, .section21-right {
                width: 100%;
            }
            .section21-desc {
                margin: 0 auto 30px;
            }
            .section21-robot {
                max-width: 400px;
                margin: 0 auto;
            }
            .section22-steps {
                flex-wrap: wrap;
                gap: 30px;
            }
            .section22-line { display: none; }
            .section22-card.up, .section22-card.down {
                transform: translateY(0);
            }
            .section23-row {
                flex-direction: column;
                text-align: center;
                gap: 20px;
            }
            .section23-item p { text-align: center; font-size: 16px; }
            .section23-cube { width: 120px; height: 120px; }
            .section23-icon { width: 60px; height: 60px; }
            .section23-wrapper .line { display: none; }
            .section24-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .section24-middle {
                display: none;
            }
            .section25-row {
                flex-direction: column;
                align-items: center;
            }
            .section25-row::before { display: none; }
            .section25-step { width: 100%; max-width: 300px; }

            .main-title { font-size: 60px; line-height: 1.1; }
            .quadrant-grid { margin: 40px auto 0; max-width: 400px; }
            .image { height: auto !important; width: 100%; aspect-ratio: auto; max-width: 700px; }
        }

        @media (max-width: 768px) {
            .medvista-header h2 { font-size: 1.8rem; }
            .accent-line { width: 60px; }
            .section22-head-wrap, .section23-head-wrap, .section24-head-wrap {
                width: 95%;
            }
            .section22-heading, .section23-heading, .section24-heading {
                font-size: 1.2rem;
                padding: 20px;
            }
            .section22-head-bg, .section23-head-bg, .section24-head-bg {
                width: 80%;
            }
            .section21-title-red { font-size: 40px; }
            .section21-title-blue { font-size: 32px; }
            .section21-subtitle { font-size: 20px; }
            .section23-item p { font-size: 15px; }

            .main-title { font-size: 45px; }
            .logo-container img { height: 100px; }

            .section22-card { width: 140px; }
            .section22-shape { width: 100px; height: 100px; }
            .section22-shape svg { width: 40px; height: 40px; }
            .section24-card h2 { font-size: 1.5rem; }
            .section23-item h3 { font-size: 1.1rem; }
            .image { max-width: 100%; }
        }

        @media (max-width: 480px) {
            .section21-title-red { font-size: 32px; }
            .section21-title-blue { font-size: 26px; }
            .section24-card { padding: 25px 15px; border-radius: 20px; }
            .section24-card::before { border-radius: 20px 20px 0 0; }
            .section24-item { padding: 4px 5px; }
            .section24-desc { font-size: 13px; }
            .section23-item p { font-size: 14px; }
            .main-title { font-size: 36px; }
            .quadrant-grid { max-width: 300px; }
            .section22-card { width: 100px; }
            .section22-shape { width: 70px; height: 70px; }
            .section22-shape svg { width: 35px; height: 35px; }
            .image { max-width: 100%; height: auto !important; }
        }

        /* Global Responsive Utilities */
        img {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }


 .section25 {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
            text-align: center;
        }

        /* heading */
        .section25-title {
            display: inline-block;
            padding: 30px 120px;
            border-radius: 0 0 25px 25px;
            background: linear-gradient(180deg, #5f7fa7, #1e3560);
            color: #fff;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            margin-bottom: 80px;
        }

        /* row */
        .section25-row {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            position: relative;
        }

        /* connector */
        .section25-row::before {
            content: "";
            position: absolute;
            top: 70px;
            left: 8%;
            width: 84%;
            height: 6px;
            background: linear-gradient(90deg, #ff8a00, #7b3ff2, #1da1ff, #00c853);
            border-radius: 10px;
        }

        /* step */
        .section25-step {
            flex: 1;
            position: relative;
            transition: .35s;
        }

        /* icon hex */
        .section25-icon {
            width: 150px;
            height: 150px;
            margin: auto;
            display: flex;
            align-items: center;
            justify-content: center;

            clip-path: polygon(25% 5%, 75% 5%,
                    100% 35%, 100% 65%,
                    75% 95%, 25% 95%,
                    0% 65%, 0% 35%);

            color: #fff;
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
            transition: .35s;
            position: relative;
            z-index: 2;
        }


        /* gradients */
        .section25-step:nth-child(1) .section25-icon {
            background: linear-gradient(135deg, #ffd3a3 0%, #ff8a00 100%);
        }

        .section25-step:nth-child(2) .section25-icon {
            background: linear-gradient(135deg, #c7a9ff 0%, #7b3ff2 100%);
        }

        .section25-step:nth-child(3) .section25-icon {
            background: linear-gradient(135deg, #a8dbff 0%, #1da1ff 100%);
        }

        .section25-step:nth-child(4) .section25-icon {
            background: linear-gradient(135deg, #8ff0b5 0%, #00c853 100%);
        }

        /* svg */
        .section25-icon svg {
            width: 56px;
            height: 56px;
            stroke: #fff;
            stroke-width: 2;
            fill: none;
        }

        /* connector drop */
        .section25-drop {
            width: 4px;
            height: 45px;
            background: #d7d7d7;
            margin: auto;
            transition: .35s;
        }

        /* card */
        .section25-card {
            background: #fff;
            border-radius: 12px;
            padding: 22px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            max-width: 230px;
            margin: auto;
            transition: .35s;
        }

        .section25-card h3 {
            margin: 0 0 10px;
            font-size: 18px;
        }

        .section25-card p {
            font-size: 14px;
            color: #555;
            margin: 0;
            line-height: 1.5;
        }

        /* INTERACTIVITY */

        .section25-step:hover .section25-icon {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
        }

        .section25-step:hover .section25-card {
            transform: translateY(-6px);
            box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
        }

        .section25-step:hover .section25-drop {
            background: #999;
        }

        /* subtle glow */
        .section25-step:hover .section25-icon::after {
            content: "";
            position: absolute;
            width: 90px;
            height: 90px;
            border-radius: 20px;
            filter: blur(20px);
            opacity: .6;
            background: inherit;
            z-index: -1;
        }


        /* heading block */
        .section24-head-wrap {
            position: relative;
            width: 100%; max-width: 720px;
            margin: 0 auto 30px;
        }

        .section24-head-bg {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%; max-width: 420px;
            height: 90px;
            background: #e8e8e8;
            border-radius: 6px;
            box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
        }

        .section24-heading {
            position: relative;
            padding: 28px 40px;
            background: linear-gradient(135deg, #6f8fb5, #2c3e5f);
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.35;
            border-radius: 20px;
            box-shadow:
                0 15px 35px rgba(0, 0, 0, .25),
                inset 0 2px 0 rgba(255, 255, 255, .2);
            transition: .35s;
            text-align: center;
        }

        .section24-heading:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .35);
        }




          /* wrapper */
        .section26 {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
        }

        /* grid layout */
        .section26-grid {
            display: grid;
            grid-template-columns: 1fr 420px 1fr;
            /* align-items: center; */
        }

        /* columns */
        .section26-col {
            /* border: 1px solid red; */
            display: flex;
            flex-direction: column;
            gap: 70px;
        }

        /* item card */
        .section26-item {
            position: relative;
            padding: 20px 20px 20px 25px;
            border-radius: 10px;
            transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
        }

        /* accent line */
        .section26-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            bottom: 8px;
            width: 4px;
            background: linear-gradient(180deg, #ff4da6, #ff9f43);
            border-radius: 4px;
            transform: scaleY(0);
            transform-origin: center;
            transition: transform .3s ease;
        }

        /* text */
        .section26-item h3 {
            margin: 0 0 10px 0;
            font-size: 22px;
            font-weight: 700;
            color: #111;
        }

        .section26-item p {
            margin: 0;
            color: #666;
            line-height: 1.6;
            font-size: 16px;
            text-align: justify;
        }

        /* icon */
        .section26-icon {
            margin-bottom: 15px;
            transition: transform .3s ease;
        }

        .section26-icon svg {
            width: 36px;
            height: 36px;
            stroke: #666;
            transition: stroke .3s ease, transform .3s ease;
        }

        /* hover interaction */
        .section26-item:hover {
            background: #fff;
            transform: translateY(-4px);
            box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
        }

        .section26-item:hover::before {
            transform: scaleY(1);
        }

        .section26-item:hover .section26-icon {
            transform: scale(1.1);
        }

        .section26-item:hover svg {
            stroke: #ff4da6;
        }

        /* center image */
        .section26-center {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .section26-center img {
            width: 380px;
            height: 380px;
            object-fit: contain;
            animation: section26float 6s ease-in-out infinite;
        }

        /* floating animation */
        @keyframes section26float {
            0% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }

            100% {
                transform: translateY(0)
            }
        }

        /* responsive */
        @media(max-width:1000px) {

            .section26-grid {
                grid-template-columns: 1fr;
            }

            .section26-center {
                order: -1;
                margin-bottom: 40px;
            }

            .section26-col {
                gap: 40px;
            }

        }




          .section27 {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
            text-align: center;
        }

        /* layout */

        .section27-grid {
            display: grid;
            grid-template-columns: 1fr 320px 1fr;
            gap: 70px;
            align-items: center;
        }

        /* columns */

        .section27-col {
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        /* center */

        .section27-center {
            width: 320px;
            height: 140px;
            margin: auto;
            border-radius: 120px;

            background: radial-gradient(circle at 50% 40%, #ffffff 0%, #e6ecf6 60%, #d7deea 100%);

            display: flex;
            align-items: center;
            justify-content: center;

            font-size: 28px;
            font-weight: 600;

            /* box-shadow:
                0 18px 40px rgba(0, 0, 0, 0.18),
                inset 0 4px 10px rgba(255, 255, 255, 0.6),
                inset 0 -6px 12px rgba(0, 0, 0, 0.08); */

            border: 3px solid rgba(255, 255, 255, 0.7);

            position: relative;
            transition: all .35s ease;
        }

        /* glowing ring */

        .section27-center::before {
            content: "";
            position: absolute;
            inset: -8px;
            border-radius: 130px;
            background: linear-gradient(135deg, #e83e8c, #ff8c3a, #8cc63f, #2db6a3, #2f6bd6);
            opacity: .15;
            filter: blur(10px);
        }

        /* hover interaction */

        .section27-center:hover {
            transform: translateY(-6px) scale(1.03);
            box-shadow:
                0 30px 55px rgba(0, 0, 0, 0.28),
                inset 0 4px 10px rgba(255, 255, 255, 0.7);
        }

        /* step */

        .section27-step {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            text-align: left;
            padding: 14px;
            border-radius: 10px;
            transition: all .3s ease;
            cursor: pointer;
        }

        .section27-step:hover {
            background: #f7f9fc;
            transform: translateY(-4px);
        }

        .section27-right .section27-step {
            flex-direction: row-reverse;
            text-align: right;
        }

        /* icon */

        .section27-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: #fff;
            transition: all .3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        /* colors */

        .section27-c1 {
            background: #e83e8c;
        }

        .section27-c2 {
            background: #ff8c3a;
        }

        .section27-c3 {
            background: #8cc63f;
        }

        .section27-c4 {
            background: #2db6a3;
        }

        .section27-c5 {
            background: #2f6bd6;
        }

        /* hover glow */

        .section27-step:hover .section27-icon {
            transform: scale(1.08);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
        }

        /* titles */

        .section27-step h3 {
            margin: 0 0 6px;
            font-size: 18px;
        }

        .section27-step p {
            margin: 0;
            font-size: 16px;
            line-height: 1.5;
            color: #555;
            text-align: justify;
        }

        /* reasoning bottom */

        .section27-bottom {
            /* margin-top: 60px; */
            display: flex;
            justify-content: center;
        }

        .section27-bottom .section27-step {
            max-width: 420px;
            text-align: center;
            flex-direction: column;
            align-items: center;
        }

        /* center reaction */

        .section27-step:hover~.section27-center,
        .section27:hover .section27-center {
            transform: scale(1.05);
            background: #f0f4ff;
        }

        /* responsive */

        @media(max-width:900px) {

            .section27-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section27-right .section27-step {
                flex-direction: row;
                text-align: left;
            }

            .section27-center {
                margin: 40px auto;
            }

            .section27-head-bg {
                width: 100% !important;
            }

        }


        /* heading */
        .section27-head-wrap {
            position: relative;
            width: 100%;
            max-width: 720px;
            margin: 0 auto 30px;
        }

        .section27-head-bg {
            position: absolute;
            top: -25px;
            left: 50%;
            transform: translateX(-50%);
            width: 420px;
            height: 90px;
            background: #e8e8e8;
            border-radius: 6px;
            box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
        }

        .section27-heading {
            position: relative;
            padding: 28px 40px;
            background: linear-gradient(135deg, #6f8fb5, #2c3e5f);
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.35;
            border-radius: 20px;
            box-shadow:
                0 15px 35px rgba(0, 0, 0, .25),
                inset 0 2px 0 rgba(255, 255, 255, .2);
            transition: .35s;
            text-align: center;
        }

        .section27-heading:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 45px rgba(0, 0, 0, .35);
        }

        .section27-image {
            width: 90%;
            height: 90%;
            object-fit: contain;
        }


          .section28-wrapper {
            max-width: 1300px;
            margin: auto;
            padding: 80px 20px;
            /* font-family: Segoe UI, Arial, sans-serif; */
        }

        /* logo */

        .section28-logo {
            text-align: center;
            margin-bottom: 20px;
        }

        .section28-logo img {
            width: 300px;
            object-fit: contain;
        }

        /* grid */

        .section28-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px 80px;
        }

        /* cards */

        .section28-card {
            padding: 40px 40px 40px 90px;
            border-radius: 120px;
            position: relative;
            color: #222;
            cursor: pointer;

            /* box-shadow:
                inset 0 8px 20px rgba(255, 255, 255, 0.6),
                0 15px 30px rgba(0, 0, 0, 0.15); */

            transition: all .35s ease;
        }

        /* hover lift */

        .section28-card:hover {
            transform: translateY(-10px) scale(1.03);

            /* box-shadow:
                inset 0 8px 20px rgba(255, 255, 255, 0.8),
                0 30px 50px rgba(0, 0, 0, 0.25); */
        }

        /* icon */

        .section28-icon {
            position: absolute;
            left: 35px;
            top: 40px;
            width: 40px;
            height: 40px;

            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section28-icon svg {
            transition: transform .35s ease;
        }

        /* icon animation */

        .section28-card:hover .section28-icon svg {
            transform: scale(1.2) rotate(6deg);
        }

        /* text */

        .section28-card h3 {
            margin: 0 0 10px 0;
            font-size: 22px;
        }

        .section28-card p {
            margin: 0;
            font-size: 15px;
            line-height: 1.5;
            color: #333;
        }

        /* gradients */

        .section28-purple {
            background: linear-gradient(90deg, #e7dcff, #b9a5f5);
        }

        .section28-green {
            background: linear-gradient(90deg, #dce9d9, #a8b7a1);
        }

        .section28-red {
            background: linear-gradient(90deg, #ffd9d9, #e7a2a2);
        }

        .section28-teal {
            background: linear-gradient(90deg, #d9f0f2, #9dc6cc);
        }

        /* hover gradient shift */

        .section28-purple:hover {
            background: linear-gradient(90deg, #d9c9ff, #a48af0);
        }

        .section28-green:hover {
            background: linear-gradient(90deg, #cfe2ca, #8ea084);
        }

        .section28-red:hover {
            background: linear-gradient(90deg, #ffc6c6, #db8a8a);
        }

        .section28-teal:hover {
            background: linear-gradient(90deg, #c7e6ea, #86b5bb);
        }

        /* responsive */

        @media (max-width: 900px) {

            .section28-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .section28-card {
                border-radius: 40px;
                padding: 40px;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
            }

            .section28-icon {
                position: relative;
                left: 0;
                top: 0;
                margin-bottom: 20px;
                width: auto;
                height: auto;
            }

            .section28-icon svg {
                width: 45px;
                height: 45px;
            }

        }

        .section12-item img {
    width: 60px;
}


.cir-one {
    left: -170px;
    top: 31px;
}

.cir-two {
    top: 32px;
    left: -92px;
}

.cir-three {
    top: 34px;
    left: -50px;
}
.cir-four {
    top: 31px;
    left: -90px;
}

.cir-five {
    top: 27px;
    left: -160px;
}

 @media (max-width: 500px) {

.cir-one {
    left: 0;
    top: 0;
}

.cir-two {
    top: 0;
    left: 0;
}

.cir-three {
    top: 0;
    left: 0;
}
.cir-four {
    top: 0;
    left: 0px;
}

    .cir-five {
        top: 0;
        left: -0;
    }
}

/* --- SCROLL REVEAL ANIMATIONS --- */

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Optional directional variants */
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-left.is-visible,
.reveal-right.is-visible {
    transform: translateX(0);
}

/* Staggered delay classes for grid items */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }
