
/* HERO */
.hero-section{
    min-height:100vh;
    background:
    radial-gradient(
        circle at top left,
        rgba(34, 197, 94, 0.12),
        transparent 40%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(148, 0, 122, 0.12),
        transparent 90%
    ),
    #ffffff;
    overflow:hidden;
}

.hero-row{
    min-height:100vh;
}

/* LEFT SIDE */
.hero-left{
    padding-left:60px;
}

.hero-badge{
    display:inline-block;
    padding:10px 22px;
    border:1px solid #d9f5e3;
    border-radius:40px;
    color:#22c55e;
    font-weight:600;
    font-size:15px;
    margin-bottom:25px;
    background:white;
}

.hero-title{
    font-size:60px;
    font-weight:700;
    line-height:1.05;
    letter-spacing:-2px;
    color:#07111f;
    margin-bottom:20px;
}

.hero-title span{
    color:#22c55e;
}

.hero-subtitle{
    font-size:19px;   /* reduced from 26 */
    line-height:1.7;
    color:#667085;
    max-width:540px;
}

/* Buttons */
.hero-buttons{
    display:flex;
    gap:18px;
    margin-top:35px;
}

.demo-btn{
    background:#22c55e;
    color:white;
    padding:16px 34px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
}

.watch-btn{
    border:1px solid #22c55e;
    color:#111;
    padding:16px 34px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
}

/* Stats */
.stats-wrapper{
    display:flex;
    gap:60px;
    margin-top:60px;
}

.stat-box h3{
    font-size:38px;
    color:#22c55e;
    font-weight:700;
}

.stat-box p{
    color:#667085;
    font-size:16px;
}

/* RIGHT */
.hero-right{
    position:relative;
}

.hero-visual{
    position:relative;
    height:100vh;
}

/* Image */
.girl-img{
    position:absolute;
    bottom:0;
    right:0;
    width:900px;
    z-index:1;
}

/* WhatsApp */
.whatsapp-circle{
    position:absolute;
    top:170px;
    left:180px;
    width:80px;
    height:80px;
    background:#22c55e;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:40px;
    z-index:4;
}

/* Chat bubbles */
.chat{
    position:absolute;
    background:white;
    padding:20px 30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    font-size:18px;
    z-index:4;
    
    animation: floatChat 4s ease-in-out infinite;
}

.chat1{
    top:120px;
    right:80px;
    background:#eaffd8;
    animation-delay:0s;
}

.chat2{
    top:250px;
    right:180px;
    animation-delay:1s;
}

.chat3{
    top:390px;
    right:90px;
    background:#eaffd8;
    animation-delay:2s;
}

.chat4{
    top:520px;
    right:170px;
    animation-delay:3s;
}

/* Service cards */
.service{
    position:absolute;
    width:360px;
    background:white;
    padding:18px 24px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    font-size:18px;
    z-index:4;

    animation: floatCard 5s ease-in-out infinite;
}

.service1{
    bottom:250px;
    right:120px;
    animation-delay:0s;
}

.service2{
    bottom:140px;
    right:80px;
    animation-delay:1.5s;
}

.service3{
    bottom:30px;
    right:40px;
    animation-delay:2.5s;
}

/* Animations */
@keyframes floatChat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
}

@keyframes floatCard{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* Responsive */
@media(max-width:991px){

    .hero-title{
        font-size:42px;
    }

    .hero-subtitle{
        font-size:17px;
    }

    .stats-wrapper{
        gap:25px;
        flex-wrap:wrap;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .hero-visual{
        height:auto;
        margin-top:40px;
    }

    .girl-img{
        position:relative;
        width:100%;
    }

    .chat,
    .service,
    .whatsapp-circle{
        position:relative;
        top:auto;
        right:auto;
        left:auto;
        bottom:auto;
        margin-bottom:20px;
    }
}

/*End of Hero Section*/

/*Smart Healthcare Operation*/
.wits-business-automation-section {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(33, 33, 34, 0.12),
            transparent 40%),
        radial-gradient(circle at bottom right,
            rgba(16, 16, 16, 0.15),
            transparent 90%),
        #ffffff;
    overflow: hidden;
    position: relative;
}

/* Background blur effects */
.wits-business-automation-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(34, 197, 94, 0.08);
    filter: blur(100px);
    border-radius: 50%;
    top: 10%;
    left: 5%;
    z-index: 0;
}

.wits-business-automation-section::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(168, 85, 247, 0.08);
    filter: blur(120px);
    border-radius: 50%;
    bottom: 10%;
    right: 5%;
    z-index: 0;
}

/* Section Content */
.section-content {
    margin-top: 70px;
    position: relative;
    z-index: 2;
}

/* Main Heading */
.main-heading {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    max-width: 950px;
    margin: auto;
    color: #111827;
    position: relative;
    z-index: 2;
}

.main-heading span {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Small badge title */
.small-title {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

/* Left Heading */
.left-heading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #111827;
}

/* Feature list */
.feature-list {
    margin-top: 20px;
}

/* Feature cards */
.feature-item {
    display: flex;
    align-items: flex-start;
    padding: 18px;
    background: #ffffff;
    border-radius: 18px;
    margin-bottom: 18px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 18px 40px rgba(0, 0, 0, 0.1);
}

/* Check icon */
.check-icon {
    min-width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-right: 15px;
    box-shadow: 0px 6px 18px rgba(34, 197, 94, 0.25);
}

/* Feature text */
.feature-item p {
    margin: 0;
    color: #6b7280;
    line-height: 1.7;
    font-size: 15px;
}

/* Right section */
.right-image-wrapper {
    position: relative;
    min-height: 600px;
}

/* Floating shapes */
.green-box,
.purple-box,
.pink-box {
    position: absolute;
    border-radius: 35px;
    animation: floatAnimation 6s ease-in-out infinite;
}

.green-box {
    width: 280px;
    height: 240px;
    background: linear-gradient(135deg, #008037, #00b34a);
    top: 0;
    left: 0;
}

.purple-box {
    width: 280px;
    height: 240px;
    background: linear-gradient(135deg, #c084fc, #e9d5ff);
    top: 20px;
    right: 0;
}

.pink-box {
    width: 280px;
    height: 220px;
    background: linear-gradient(135deg, #ffc1c1, #ffe4e6);
    bottom: 80px;
    left: 0;
}

/* Dashboard image */
.main-dashboard-img {
    position: absolute;
    width: 500px;
    top: 60px;
    right: 20px;
    z-index: 2;
    border-radius: 25px;
    box-shadow: 0px 25px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.main-dashboard-img:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Floating animation */
@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Tablet */
@media (max-width: 991px) {
    .wits-business-automation-section {
        padding: 80px 0;
    }

    .main-heading {
        font-size: 42px;
    }

    .left-heading {
        font-size: 30px;
    }

    .section-content {
        margin-top: 50px;
    }

    .right-image-wrapper {
        min-height: auto;
        margin-top: 50px;
        text-align: center;
    }

    .main-dashboard-img {
        position: relative;
        width: 100%;
        max-width: 500px;
        top: auto;
        right: auto;
    }

    .green-box,
    .purple-box,
    .pink-box {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .main-heading {
        font-size: 32px;
        line-height: 1.3;
    }

    .left-heading {
        font-size: 24px;
    }

    .feature-item {
        padding: 15px;
    }

    .feature-item p {
        font-size: 14px;
    }

    .small-title {
        font-size: 11px;
    }
}
/*End Of Smart Healthcare Operation*/


/*WITS powers your complete Healthcare Ecosystem*/
.wits-infinity-section {
    padding: 0px 0 100px;
    background: #ffffff;
    overflow: hidden;
}

/* Heading */
.infinity-heading {
    font-size: 52px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.infinity-heading span {
    color: #29C52F;
}

.infinity-subheading {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Wrapper */
.infinity-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 600px;
    margin: auto;
}

/* SVG Container */
.infinity-animation-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.infinity-svg {
    width: 100%;
    height: 100%;
}

/* Infinity Path */
.premium-infinity-path {
    fill: none;
    stroke: url(#infinityGradient);
    stroke-width: 45;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    filter: drop-shadow(0px 10px 25px rgba(165, 0, 132, 0.25));
    animation: drawInfinity 6s linear infinite;
}

@keyframes drawInfinity {
    0% {
        stroke-dashoffset: 2000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* Moving dots */
.moving-dot {
    fill: #A50084;
    filter: drop-shadow(0px 0px 12px rgba(165, 0, 132, 0.5));
}

.dot1 {
    animation: moveDot1 5s linear infinite;
}

.dot2 {
    animation: moveDot2 6s linear infinite;
}

@keyframes moveDot1 {
    0% { cx: 250; cy: 250; }
    25% { cx: 420; cy: 140; }
    50% { cx: 500; cy: 250; }
    75% { cx: 650; cy: 360; }
    100% { cx: 750; cy: 250; }
}

@keyframes moveDot2 {
    0% { cx: 750; cy: 250; }
    25% { cx: 650; cy: 140; }
    50% { cx: 500; cy: 250; }
    75% { cx: 350; cy: 360; }
    100% { cx: 250; cy: 250; }
}

/* Center WITS */
.center-wits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #A50084, #29C52F);
    color: white;
    padding: 20px 55px;
    border-radius: 60px;
    font-size: 30px;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0px 12px 35px rgba(165, 0, 132, 0.25);
}

/* Entity Tags */
.health-tag {
    position: absolute;
    background: white;
    padding: 18px 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0px 12px 35px rgba(0,0,0,0.08);
    font-weight: 600;
    color: #64748b;
    white-space: nowrap;
}

/* Icon Circle */
.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #A50084, #29C52F);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 3s ease-in-out infinite;
}

.icon-circle i {
    color: white;
    font-size: 24px;
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Desktop Positions */
.hospital {
    top: 40px;
    left: 60px;
}

.clinic {
    top: 40px;
    right: 60px;
}

.doctor {
    top: 250px;
    left: 120px;
}

.nurse {
    top: 250px;
    right: 120px;
}

.lab {
    bottom: 60px;
    left: 180px;
}

.medical {
    bottom: 60px;
    right: 180px;
}

/* Tablet */
@media(max-width:991px) {
    .infinity-heading {
        font-size: 38px;
    }

    .infinity-subheading {
        font-size: 16px;
    }

    .infinity-wrapper {
        height: 500px;
    }

    .center-wits {
        font-size: 22px;
        padding: 15px 35px;
    }

    .health-tag {
        padding: 12px 18px;
        font-size: 13px;
        gap: 10px;
    }

    .icon-circle {
        width: 42px;
        height: 42px;
    }

    .icon-circle i {
        font-size: 18px;
    }

    .hospital {
        left: 20px;
    }

    .clinic {
        right: 20px;
    }

    .doctor {
        left: 40px;
    }

    .nurse {
        right: 40px;
    }

    .lab {
        left: 70px;
    }

    .medical {
        right: 70px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .wits-infinity-section {
        padding: 70px 0;
    }

    .infinity-heading {
        font-size: 28px;
        line-height: 1.3;
    }

    .infinity-subheading {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .infinity-wrapper {
        height: 420px;
    }

    .premium-infinity-path {
        stroke-width: 30;
    }

    .center-wits {
        font-size: 18px;
        padding: 12px 24px;
    }

    .health-tag {
        padding: 8px 14px;
        font-size: 11px;
        gap: 8px;
        border-radius: 40px;
    }

    .icon-circle {
        width: 34px;
        height: 34px;
    }

    .icon-circle i {
        font-size: 14px;
    }

    /* Maintain same layout on mobile */
    .hospital {
        top: 20px;
        left: 10px;
    }

    .clinic {
        top: 20px;
        right: 10px;
    }

    .doctor {
        top: 180px;
        left: 10px;
    }

    .nurse {
        top: 180px;
        right: 10px;
    }

    .lab {
        bottom: 40px;
        left: 20px;
    }

    .medical {
        bottom: 40px;
        right: 20px;
    }
}

/*End Of WITS powers your complete Healthcare Ecosystem*/




/*Never miss a patient appointment*/
 .wits-hero {
    padding: 100px 0;
    background:
        radial-gradient(circle at top left,
            rgba(33, 33, 34, 0.12),
            transparent 40%),
        radial-gradient(circle at bottom right,
            rgba(16, 16, 16, 0.15),
            transparent 90%),
        #ffffff;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #6C63FF;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-title span {
    background: linear-gradient(135deg, #22c55e, #94007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 22px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.hero-highlight {
    font-size: 24px;
    font-style: italic;
    color: #7c3aed;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #22c55e, #94007a);
    color: #fff;
    padding: 16px 35px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(124,58,237,.25);
}

.btn-primary-custom:hover {
    transform: translateY(-4px);
    color: #fff;
}

.btn-outline-custom {
    padding: 16px 35px;
    border: 2px solid #7c3aed;
    border-radius: 14px;
    text-decoration: none;
    color: #7c3aed;
    font-weight: 700;
    transition: .4s;
}

.btn-outline-custom:hover {
    background: #7c3aed;
    color: #fff;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.hero-features li {
    margin-bottom: 18px;
    font-size: 18px;
    color: #334155;
    position: relative;
    padding-left: 35px;
}

.hero-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-size: 20px;
    font-weight: bold;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

.stats-card {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
}

.stats-card h4 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #4f46e5;
}

.stats-card p {
    margin: 0;
    color: #64748b;
}

.floating-card {
    position: absolute;
    top: 40px;
    right: -20px;
    background: linear-gradient(135deg, #22c55e, #94007a);
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(124,58,237,.3);
}

.floating-card span {
    display: block;
    font-size: 14px;
    opacity: .8;
}

.floating-card strong {
    display: block;
    margin-top: 5px;
    font-size: 18px;
}

@media(max-width:991px){

    .hero-title{
        font-size:50px;
    }

    .hero-image-wrapper{
        margin-top:50px;
    }

    .stats-card,
    .floating-card{
        position:relative;
        right:auto;
        left:auto;
        top:auto;
        bottom:auto;
        margin-top:20px;
    }

}
/*End Of Never miss a patient appointment*/


/*One Platform*/
.wits-marquee-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.heading-wrap {
    margin-bottom: 70px;
}

.heading-wrap span {
    color: #94007a;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.heading-wrap h2 {
    font-size: 60px;
    font-weight: 800;
    margin-top: 15px;
    color: #111827;
}

.heading-wrap h2 span {
   background: linear-gradient(135deg, #22c55e, #94007a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 25px;
    width: fit-content;
    animation: scroll 25s linear infinite;
}

.feature-card {
    width: 340px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(124,58,237,.08);
    box-shadow:
        0 20px 50px rgba(0,0,0,.05);
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(124,58,237,.15);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;

    background: linear-gradient(
        135deg,
        #eef2ff,
        #f5f3ff
    );
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #6b7280;
    margin: 0;
    line-height: 1.7;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}
/*End Of One Platform*/