﻿@media (min-width: 768px) {
    .text-md-right {
        text-align: right !important;
    }
}

.body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hospital {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 80vh;
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}

.left-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 20px;
}

    .left-side h1 {
        font-size: 3rem;
        text-align: center;
        margin: 0;
    }

.right-side {
    flex: 1;
    overflow: hidden; /* Ensures image doesn't spill out */
}

    .right-side img {
        width: 100%;
        height: 100%;
        object-fit: cover; /* This makes the image fill the area while keeping aspect ratio */
        object-position: center;
    }

/* Responsive for mobile */
@@media (max-width: 768px) {
    .hospital {
        flex-direction: column;
        height: auto;
    }

    .left-side h1 {
        font-size: 2rem;
    }

    .right-side {
        height: 300px; /* Fixed height on mobile */
    }
}

.left-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    padding: 20px;
    background-color: white; /* optional: to match the white container */
}

.title-text {
    text-align: center;
    line-height: 1.2; /* adjust spacing between lines */
}

.line1 {
    font-family: 'Arial Black', 'Arial', sans-serif; /* fallback to bold sans-serif */
    font-size: 2rem; /* adjust as needed for your layout */
    font-weight: 900; /* extra bold */
    color: #1a1a1a; /* dark gray-black */
    letter-spacing: 0.05em; /* slight spacing for modern look */
    text-transform: uppercase;
    /* Subtle 3D shadow effect */
    text-shadow: 2px 2px 0 #cccccc, 4px 4px 0 #bbbbbb, 6px 6px 0 #aaaaaa, 8px 8px 10px rgba(0,0,0,0.3);
}

.line2 {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 2rem; /* larger than line1 */
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    /* Same shadow but scaled up slightly for depth */
    text-shadow: 3px 3px 0 #cccccc, 6px 6px 0 #bbbbbb, 9px 9px 0 #aaaaaa, 12px 12px 15px rgba(0,0,0,0.3);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .line1 {
        font-size: 2rem;
    }

    .line2 {
        font-size: 3rem;
    }
}

.right {
    flex: 1;
    position: relative;
    background: url('@Url.Content("~/Images/digital.png")') center/cover no-repeat;
}

.bodys {
    font-family: 'Poppins', sans-serif;
    background: #ffffff; /* Pure white background */
    min-height: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden;

    position: relative;

}

    /* Subtle blue particle accents on white */
    .bodys::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: radial-gradient(circle, #42a5f5 1px, transparent 1px), radial-gradient(circle, #1976d2 1.5px, transparent 1.5px);
        background-size: 60px 60px, 90px 90px;
        background-position: 0 0, 40px 40px;
        opacity: 0.15;
        animation: particlesFloat 40s linear infinite;
    }

@keyframes particlesFloat {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(80px, -80px);
    }
}

.content {
    text-align: center;
    max-width: 90%;
    width:6481px;
    z-index: 10;
    animation: fadeSlideUp 1.8s ease-out;
}

h1 {
    font-size: 2.5vw;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0d47a1, #1976d2, #42a5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    animation: glowPulse 4s ease infinite alternate;
}
   h1::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 6px;
        background: linear-gradient(90deg, #1976d2, #42a5f5);
        border-radius: 3px;
        animation: underlineGrow 2s ease-out forwards;
    }

 

@keyframes underlineGrow {
    0% {
        width: 0;
    }

    100% {
        width: 120px;
    }
}

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 20px rgba(25, 118, 210, 0.4);
    }

    100% {
        text-shadow: 0 0 40px rgba(66, 165, 245, 0.6);
    }
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: #424242;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInText 2.2s ease-out 0.8s forwards;
    position: relative;
}
@keyframes fadeInLine {
    to {
        opacity: 0.6;
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInText {
    to {
        opacity: 1;
    }
}

/* Hover interaction */
.content:hover h1 {
    transform: scale(1.05);
    transition: transform 0.6s ease;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 9vw;
    }

    p {
        font-size: 4.5vw;
    }

    h1::after {
        height: 4px;
        width: 80px;
    }
}
.benefits {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 68vh;
    max-height:68vh;
    display: flex;
    justify-content: center;
    padding: 30px;
    padding-top:0px;
}

.recognition-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 223px;
    text-align: center;
}

.central-character {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.character-img {
    width: 350px;
    height:70vh;   
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
}
.character-img {
    width: clamp(300px, 38vw, 450px); /* scales nicely from mobile → desktop */
    height: 70vh;
    object-fit: contain;
    object-position: center top; /* feet near bottom, good for characters */
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    display: block;
}
.recognition-item {

    position: absolute;
    width: 260px;
    text-align: center;
    transition: all 0.35s ease;
}


    .recognition-item:hover {
        transform: translateY(-12px) scale(1.04);
    }

.circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    display: flex;
    justify-content: center;
    font-size: 2.6rem;
    margin: 0 auto 14px;
    transition: transform 0.3s ease;
}

.title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1e293b;
}

.description {
    font-size: 0.96rem;
    color: #64748b;
    line-height: 1.45;
}

/* Positions */
.top-left {
    top: 8%;
    left: 6%;
}

.top-right {
    top: 8%;
    right: 6%;
}

.bottom-left {
    bottom: 12%;
    left: 8%;
}

.bottom-right {
    bottom: 12%;
    right: 8%;
}

/* Colors */
.purple {
    background: #8b5cf6;
    color: white;
}

.blue {
    background: #3b82f6;
    color: white;
}

.orange {
    background: #f97316;
    color: white;
}

.red {
    background: #ef4444;
    color: white;
}

.page-number {
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

@media (max-width: 992px) {
    .recognition-container {
        height: 900px;
    }

    .character-img {
        width: 220px;
    }

    .recognition-item {
        width: 220px;
    }

    .circle-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }

    .top-left, .top-right {
        top: 2%;
    }

    .bottom-left, .bottom-right {
        bottom: 38%;
    }
}

@media (max-width: 768px) {
    .recognition-container {
        height: 1100px;
    }

    .top-left {
        top: 5%;
        left: 50%;
        transform: translateX(-50%);
    }

    .top-right {
        top: 28%;
        left: 50%;
        transform: translateX(-50%);
    }

    .bottom-left {
        bottom: 38%;
        left: 50%;
        transform: translateX(-50%);
    }

    .bottom-right {
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
    }
}
@keyframes float {
    0%, 100%

{
    transform: translateY(0);
}

50% {
    transform: translateY(-12px);
}

}   
.recognition-item {
    display: flex; /* ← This is the key line */
    flex-direction: row; /* left → right */
    align-items: center; /* vertical center alignment */
    gap: 20px; /* space between icon-title-description */
    width: 456px;
    text-align: left; /* better for horizontal layout */
    padding: 20px;
    background: white;
        transition: all 0.35s ease;
}

.circle-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    flex-shrink: 0; /* icon won't shrink */
    margin: 0; /* remove previous margin */
}

.title {
    font-size: 1rem;
    margin: 0;
    color: #1e293b;
}

.description {
    font-size: 0.92rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
    font-weight:600;
}

/* Optional: make title + description stack vertically together */
.recognition-item .text-part {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.recognition-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
}

.circle-icon {
    flex-shrink: 0;
}

.title + .description {
    margin-top: 4px;
}
.benefits-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d47a1;
    letter-spacing: 1px;
}
.benefits-headings {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #0d47a1;
    letter-spacing: 1px;
}
    .benefits-heading::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
        border-radius: 4px;
    }
/* Left side - three levels */
.left-1 {
    top: 12%;
    left: 6%;
}

.left-2 {
    top: 48%;
    left: 3%;
}

.left-3 {
    bottom: -16%;
    left: 5%;
}

/* Right side - three levels */
.right-1 {
    top: 12%;
    right: 6%;
}

.right-2 {
    top: 45%;
    right: 3%;
}

.right-3 {
    bottom: -19%;
    right: 5%;
}
.nebula-void {
    min-height: 18vh;
    color: #f0f4ff;
    overflow: hidden;
}

.cosmic-text-nexus {
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



    .stellar-void-canvas::before {
        content: '';
        position: absolute;
        inset: 0;
        justify-content:center;
    }

.glow-heading {
    text-shadow: 0 0 30px rgba(120,100,255,0.6);
}

@media (max-width: 991px) {
    .stellar-void-canvas {
        min-height: 60vh;
    }
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .benefits-list .recognition-item {
        margin-bottom: 18px;
    }

/* Optional: nicer tick icon styling */
.circle-icons {
    width: 36px;
    height: 36px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}


/* New class for simple vertical list */
.benefit-point {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    margin-bottom: 14px; /* ← most important! */
    background: rgba(255,255,255,0.07);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.25s ease;
}

    .benefit-point:hover {
        background: rgba(59,130,246,0.12);
        transform: translateX(8px);
    }

    .benefit-point .circle-icon {
        width: 42px;
        height: 42px;
        background: #3b82f6;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        font-weight: bold;
        flex-shrink: 0;
    }

    .benefit-point .text-part {
        flex: 1;
    }

    .benefit-point .title {
        margin: 0;
        font-size: 1.1rem;
        font-weight: 700;
        color: #e0e7ff;
    }

    .benefit-point .description {
        margin: 4px 0 0 0;
        font-size: 0.96rem;
        color: #a0aec0;
        line-height: 1.45;
    }

/* Make sure list takes proper width */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0 0;
    width: 100%;
    max-width: 520px;
}
.why-choose-item {
    display: flex; /* ← This makes icon + text in row */
    flex-direction: row; /* left → right */
    align-items: center; /* vertically center icon with text */
    gap: 16px; /* space between icon and text */
    padding: 0px 20px;
    margin-bottom: 16px; /* space between different items */
    background: rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 540px;
}
/* ================= MOBILE VIEW FIX ================= */
@media (max-width: 768px) {

    .benefits {
        min-height: auto;
        max-height: none;
        padding: 20px;
    }

    .recognition-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        gap: 20px;
    }

    /* Remove absolute layout on mobile */
    .recognition-item,
    .central-character {
        position: static !important;
        transform: none !important;
        width: 100%;
        max-width: 500px;
    }

    /* Order control */
    .left-1 {
        order: 1;
    }

    .left-2 {
        order: 2;
    }

    .left-3 {
        order: 3;
    }

    .central-character {
        order: 4;
        margin: 30px 0;
    }

    .right-1 {
        order: 5;
    }

    .right-2 {
        order: 6;
    }

    .right-3 {
        order: 7;
    }

    /* Image responsive */
    .character-img {
        width: 100%;
        max-width: 527px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Card look */
    .recognition-item {
        background: #ffffff;
        border-radius: 14px;
    }

    /* Center icons on mobile */
    .circle-icon {
        width: 65px;
        height: 65px;
    }

    .description {
        text-align: left;
        font-size:22px;
    }

    .page-number {
        position: static;
        margin-top: 20px;
    }
}
@media (max-width: 768px) {

    .hospital {
        flex-direction: column;
        height: auto;
    }

    .left-side {
        padding: 30px 20px;
    }

    .title-text {
        text-align: center;
    }

    .line1 {
        font-size: 1.6rem;
        text-shadow: 1px 1px 0 #ccc, 3px 3px 8px rgba(0,0,0,0.25);
    }

    .line2 {
        font-size: 2.2rem;
        text-shadow: 2px 2px 0 #ccc, 4px 4px 10px rgba(0,0,0,0.25);
    }

    .right-side,
    .right {
        height: 260px;
        width: 100%;
    }

        .right-side img {
            object-fit: cover;
        }
}
@media (max-width: 480px) {

    .left-side {
        padding: 20px 15px;
    }

    .line1 {
        font-size: 2rem;
        letter-spacing: 0.03em;
    }

    .line2 {
        font-size: 2.4rem;
    }

    .right-side,
    .right {
        height: 220px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {

    .hospital {
        flex-direction: column;
        height: auto;
    }
    .hospital {
        height: 70vh;
    }

    .line1 {
        font-size: 2.2rem;
    }

    .line2 {
        font-size: 2.6rem;
    }
}
@media(min-width:768px ) and (max-width:1024px){
    .benefits {
        min-height: auto;
        max-height: none;
        padding: 20px;
    }

    .recognition-container {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        gap: 20px;
    }

    /* Remove absolute layout on mobile */
    .recognition-item,
    .central-character {
        position: static !important;
        transform: none !important;
        width: 100%;
        max-width: 100%;
    }

    /* Order control */
    .left-1 {
        order: 1;
    }

    .left-2 {
        order: 2;
    }

    .left-3 {
        order: 3;
    }

    .central-character {
        order: 4;
        margin: 30px 0;
    }

    .right-1 {
        order: 5;
    }

    .right-2 {
        order: 6;
    }

    .right-3 {
        order: 7;
    }
    .right-1,
    .right-2,
    .right-3 {
        align-self: flex-end;
        text-align: right;
    }


    /* Image responsive */
    .character-img {
        width: 100%;
        max-width: 527px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Card look */
    .recognition-item {
        background: #ffffff;
        border-radius: 14px;
    }

    /* Center icons on mobile */
    .circle-icon {
        width: 65px;
        height: 65px;
    }

    .description {
        text-align: left;
        font-size: 22px;
    }

    .page-number {
        position: static;
        margin-top: 20px;
    }
}



    .xai-gk-2col-vortex-phi-1741628395067-zeta .left-content-core {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

        .xai-gk-2col-vortex-phi-1741628395067-zeta .left-content-core h2 {
            font-weight: 800;
            letter-spacing: -0.5px;
            margin-bottom: 1.5rem;
            color: #0f172a;
        }

    .xai-gk-2col-vortex-phi-1741628395067-zeta .feature-points-ultra {
        font-size: 1.125rem;
        line-height: 1.8;
        list-style: none;
        padding-left: 0;
    }

        .xai-gk-2col-vortex-phi-1741628395067-zeta .feature-points-ultra li {
            margin-bottom: 1.25rem;
            position: relative;
            padding-left: 2.2rem;
        }

         
    .xai-gk-2col-vortex-phi-1741628395067-zeta .image-portal-container {
        border-radius: 16px;
        overflow: hidden;
    }

        .xai-gk-2col-vortex-phi-1741628395067-zeta .image-portal-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .xai-gk-2col-vortex-phi-1741628395067-zeta .image-portal-container:hover img {
            transform: scale(1.06);
        }

@media (max-width: 991px) {
    .xai-gk-2col-vortex-phi-1741628395067-zeta {
        padding: 4rem 0;
    }

    .left-content-core {
        margin-bottom: 3.5rem;
    }

    .image-portal-container {
        min-height: 340px;
    }
}
.xai-gk-2col-vortex-phi-1741628395067-zeta .feature-points-ultra li {
    margin-bottom: 1.25rem;
    position: relative;
    padding-left: 3rem; /* more space for bigger circle */
    min-height: 2.2rem;
}
.xai-gk-2col-vortex-phi-1741628395067-zeta .feature-points-ultra .custom-bullet {
    position: absolute;
    left: 0;
    top: 0.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem; /* slightly larger for nicer look */
    height: 2.2rem;
    background: white; /* pure white center */
    color: #1e40af; /* deep blue for number – or try #2563eb */
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50%;
    line-height: 1;
    /* Blue gradient border */
    border-image: linear-gradient(to right, #3b82f6, #6366f1, #8b5cf6) 1;
    /* fallback solid color if border-image not supported */
    border-color: #6366f1;
    /* Optional: subtle glow / shadow */
    box-shadow: 0 0 0 6px rgba(30, 64, 175, 0.35), inset 0 1px 4px rgba(0,0,0,0.10);
    border-image: linear-gradient(to right, #1d4ed8, #3b82f6, #60a5fa) 1;
}

/* Hover effect – optional but looks modern */
.xai-gk-2col-vortex-phi-1741628395067-zeta .feature-points-ultra li:hover .custom-bullet {
    transform: scale(1.12);
    transition: transform 0.25s ease;
}
