/*==============================
 WHY CHOOSE PHYSIODOCTORS
==============================*/

.pdx-whychoose-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,
    rgba(109,40,217,.12) 0%,
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(16,185,129,.12) 0%,
    transparent 35%),

    linear-gradient(
    180deg,
    #ffffff,
    #f8f9ff
    );
}

/* Floating Blobs */

.pdx-whychoose-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:#7c3aed;
    opacity:.08;
    filter:blur(120px);
    top:-150px;
    left:-150px;
}

.pdx-whychoose-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background: #6bc214;
    opacity:.08;
    filter:blur(120px);
    bottom:-150px;
    right:-150px;
}

/* LEFT SIDE */

.pdx-content-side{
    position:relative;
    z-index:2;
}

.pdx-tagline{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff;
    color:#530286;

    padding:12px 22px;
    border-radius:50px;

    font-weight:700;

    box-shadow:
    0 15px 35px rgba(109,40,217,.12);
}

.pdx-content-side h2{
    font-size:58px;
    font-weight:800;
    color:#111827;
    line-height:1.1;
    margin:25px 0;
}

.pdx-content-side > p{
    color:#6b7280;
    line-height:1.9;
    margin-bottom:35px;
}

/* HIGHLIGHT BOX */

.pdx-highlight-box{
    display:flex;
    gap:20px;

    background:#fff;

    padding:25px;
    border-radius:24px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);

    border-left:5px solid #6bc214;
}

.pdx-highlight-icon{
    width:70px;
    height:70px;

    min-width:70px;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
  #530286,
    #821cad
    );

    display:flex;
    align-items:center;
    justify-content:center;
}

.pdx-highlight-icon i{
    color:#fff;
    font-size:28px;
}

.pdx-highlight-box h5{
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
}

.pdx-highlight-box p{
    margin:0;
    color:#6b7280;
}

/* FEATURE CARD */

.pdx-feature-card{
    position:relative;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(12px);

    padding:35px;

    height:100%;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.8);

    transition:.45s;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.pdx-feature-card:hover{
    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(109,40,217,.15);
}

.pdx-feature-card::before{
    content:'';
    position:absolute;

    width:180px;
    height:180px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #530286,
    #821cad
    );

    opacity:.08;

    top:-80px;
    right:-80px;
}

.pdx-icon-box{
    width:85px;
    height:85px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;

    background:
    linear-gradient(
    135deg,
    #530286,
    #821cad
    );

    box-shadow:
    0 20px 40px rgba(109,40,217,.18);
}

.pdx-icon-box i{
    color:#fff;
    font-size:34px;
}

.pdx-feature-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    color:#111827;
}

.pdx-feature-card p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

/* SHINE EFFECT */

.pdx-feature-card:hover::after{
    content:'';
    position:absolute;
    top:-120%;
    left:-120%;

    width:100%;
    height:250%;

    background:
    linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.7),
    transparent
    );

    transform:rotate(25deg);

    animation:pdxshine 1s linear;
}

@keyframes pdxshine{

    100%{
        top:100%;
        left:100%;
    }

}

/* MOBILE */

@media(max-width:991px){

.pdx-content-side h2{
    font-size:40px;
}

.pdx-content-side{
    margin-bottom:50px;
}

}

/* =================================
   DOCTOR PROFILE SECTION
================================= */

.drs-profile-section{
    padding:60px 0;
        margin-top: 43px;
    background:
    radial-gradient(circle at top left,
    rgba(109,40,217,.10),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(5,150,105,.12),
    transparent 35%),

    #ffffff;
}

.drs-profile-wrapper{
    background:#fff;
    border-radius:40px;
    padding:60px;
    position:relative;
    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

/* IMAGE */

.drs-image-area{
    position:relative;
}

.drs-bg-shape{
    position:absolute;
    width:100%;
    height:100%;
    background:
    linear-gradient(
    135deg,
    #530286,
    #6bc214
    );

    border-radius:35px;

    transform:rotate(-5deg);
}

.drs-image-area img{
    position:relative;
    z-index:2;

    border-radius:35px;

    width:100%;
    object-fit:cover;

    box-shadow:
    0 25px 50px rgba(0,0,0,.15);
}

/* EXPERIENCE CARD */

.drs-experience-card{
    position:absolute;

    bottom:25px;
    right:-20px;

    z-index:3;

    background:#fff;

    border-radius:20px;

    padding:20px;

    display:flex;
    gap:15px;

    align-items:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.15);
}

.drs-experience-card i{
    font-size:35px;
    color:#530286;
}

.drs-experience-card strong{
    display:block;
    font-size:15px;
}

.drs-experience-card span{
    font-size:13px;
    color:#6b7280;
}

/* CONTENT */

.drs-subtitle{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #f3e8ff,
    #ecfdf5
    );

    color:#530286;
    font-weight:700;
}

.drs-content h2{
    font-size:58px;
    font-weight:800;
    margin-top:25px;
    margin-bottom:10px;
    color:#111827;
}

.drs-content h5{
    color: #6bc214;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.drs-content p{
    color:#6b7280;
    line-height:1.9;
    text-align:justify;
}

/* INFO BLOCK */

.drs-info-block{
    margin-top:35px;
}

.drs-info-block h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:20px;
    color:#111827;
}

.drs-info-block h4 i{
    color:#530286;
    margin-right:10px;
}

.drs-tags{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.drs-tags span{
    padding:12px 18px;

    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    #f3e8ff,
    #ecfdf5
    );

    color:#374151;
    font-weight:600;
}

/* QUOTE */

.drs-quote-box{
    margin-top:35px;

    background:
    linear-gradient(
    135deg,
   #530286,
    #410a5d
    );

    padding:30px;

    border-radius:25px;
}

.drs-quote-box i{
    font-size:35px;
    color:#fff;
}

.drs-quote-box p{
    color:#fff;
    margin-top:15px;
    margin-bottom:0;
    font-size:18px;
}

/* BUTTON */

.drs-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    margin-top:35px;

    background:
    linear-gradient(
    135deg,
    #0e510b,
     #6bc214
    );

    color:#fff;
    text-decoration:none;

    padding:16px 34px;

    border-radius:60px;

    font-weight:700;

    transition:.4s;
}

.drs-btn:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

.drs-profile-wrapper{
    padding:30px;
}

.drs-content{
    margin-top:50px;
}

.drs-content h2{
    font-size:38px;
}

.drs-experience-card{
    position:relative;
    right:0;
    bottom:0;
    margin-top:20px;
}

}
/*=============================
 PHYSIOTHERAPY SERVICES
=============================*/

.phy-services-showcase{
    padding:60px 0;
    background:#fff;
}

.phy-sec-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.phy-mini-title{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:50px;

    background:#f3f4ff;
    color:#530286;
    font-weight:700;
}


.phy-sec-heading h2{
    font-size:58px;
    font-weight:800;
    margin:25px 0;
    color:#111827;
}

.phy-sec-heading p{
    color:#6b7280;
    line-height:1.9;
}

/* CARD */

.phy-service-card{
    background:#fff;
    border-radius:24px;
    padding:35px 25px;
    text-align:center;
    height:100%;

    transition:.4s;

    border:2px solid #eee;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.phy-service-card:hover{
    transform:translateY(-10px);
}

.phy-service-card i{
    font-size:42px;
    margin-bottom:18px;
    display:block;
}

.phy-service-card h5{
    font-size:18px;
    font-weight:700;
    margin:0;
    line-height:1.5;
}

/* COLORS */

.phy-purple{
    border-color:#e9d5ff;
}

.phy-purple i{
    color:#7c3aed;
}

.phy-purple:hover{
    box-shadow:
    0 20px 45px rgba(124,58,237,.18);
}

.phy-green{
    border-color:#bbf7d0;
}

.phy-green i{
    color:#6bc214;
}

.phy-green:hover{
    box-shadow:
    0 20px 45px rgba(5,150,105,.18);
}

.phy-orange{
    border-color:#fed7aa;
}

.phy-orange i{
    color:#ea580c;
}

.phy-orange:hover{
    box-shadow:
    0 20px 45px rgba(234,88,12,.18);
}

.phy-blue{
    border-color:#bfdbfe;
}

.phy-blue i{
    color:#2563eb;
}

.phy-blue:hover{
    box-shadow:
    0 20px 45px rgba(37,99,235,.18);
}

.phy-red{
    border-color:#fecaca;
}

.phy-red i{
    color:#dc2626;
}

.phy-red:hover{
    box-shadow:
    0 20px 45px rgba(220,38,38,.18);
}

/* BOTTOM */

.phy-bottom-area{
    margin-top:70px;
}

.phy-bottom-area p{
    max-width:850px;
    margin:auto;
    color:#6b7280;
    line-height:1.9;
    margin-bottom:30px;
}

.phy-service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:18px 36px;

    text-decoration:none;
    color:#fff;

    border-radius:60px;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #09520f,
    #6bc214

    );
}

.phy-service-btn:hover{
    color:#fff;
}

/* MOBILE */

@media(max-width:991px){

.phy-sec-heading h2{
    font-size:38px;
}

}

/*=========================
 TRUST SECTION
=========================*/

.phy-trust-section{
    padding:80px 0;
    background:#2c3138;
    position:relative;
    overflow:hidden;
}

/* Glow Background */

.phy-trust-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#530286;
    opacity:.08;
    filter:blur(120px);
    top:-100px;
    left:-100px;
}

.phy-trust-section::after{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:#6bc214;
    opacity:.08;
    filter:blur(120px);
    right:-100px;
    bottom:-100px;
}

/* Heading */

.phy-trust-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.phy-trust-heading span{
    display:inline-block;
    padding:12px 24px;
    border-radius:50px;

    background:rgba(255,255,255,.08);
    color:#fff;

    font-weight:600;
}

.phy-trust-heading h2{
    color:#fff;
    font-size:54px;
    font-weight:800;
    margin:25px 0 20px;
}

.phy-trust-heading p{
    color:#c8d0da;
    line-height:1.9;
}

/* Cards */

.phy-trust-card{
    position:relative;

    background:#ffffff;
    padding:40px 35px;

    border-radius:30px;
    height:100%;

    transition:.4s;

    overflow:hidden;
}

.phy-trust-card:hover{
    transform:translateY(-12px);
}

.phy-trust-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
}

.phy-trust-card:nth-child(1)::before{
    background:#530286;
}

.phy-trust-card:nth-child(2)::before{
    background:#6bc214;
}

.phy-trust-card:nth-child(3)::before{
    background:linear-gradient(
    90deg,
    #530286,
    #6bc214
    );
}

/* Icons */

.phy-trust-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:25px;
}

.phy-trust-icon i{
    color:#fff;
    font-size:34px;
}

.phy-trust-icon.purple{
    background:#530286;
}

.phy-trust-icon.green{
    background:#6bc214;
}

.phy-trust-icon.mix{
    background:linear-gradient(
    135deg,
    #530286,
    #310846
    );
}

/* Text */

.phy-trust-card h3{
    font-size:26px;
    font-weight:700;
    margin-bottom:18px;
    color:#111827;
}

.phy-trust-card p{
    color:#6b7280;
    line-height:1.9;
    margin:0;
    text-align:justify;
}

/* Mobile */

@media(max-width:991px){

.phy-trust-heading h2{
    font-size:38px;
}

.phy-trust-card{
    padding:30px;
}

}

/*=========================
COUNTER SECTION
=========================*/

.pdc-counter-section{
    padding:80px 0;
    background:
    radial-gradient(circle at top left,
    rgba(109,40,217,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(5,150,105,.08),
    transparent 35%),

    #ffffff;
}

.pdc-counter-heading{
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.pdc-counter-heading span{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;

    background:#f4f0ff;
    color:#530286;

    font-weight:700;
}

.pdc-counter-heading h2{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin:25px 0 15px;
}

.pdc-counter-heading p{
    color:#6b7280;
    line-height:1.8;
}

.pdc-counter-card{
    background:#fff;

    border-radius:28px;

    padding:40px 25px;

    text-align:center;

    height:100%;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.pdc-counter-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 50px rgba(109,40,217,.12);
}

.pdc-counter-icon{
    width:85px;
    height:85px;

    border-radius:24px;

    margin:0 auto 25px;

    display:flex;
    align-items:center;
    justify-content:center;
}

.pdc-counter-icon i{
    color:#fff;
    font-size:34px;
}

.pdc-counter-icon.purple{
    background:#530286;
}

.pdc-counter-icon.green{
    background:#6bc214;
}

.pdc-counter-icon.blue{
    background:#3e064c;
}

.pdc-counter-icon.mix{
    background:linear-gradient(
    135deg,
     #18b61d,
    #09561b
    );
}

.pdc-counter-card h3{
    font-size:52px;
    font-weight:800;
    color:#111827;
    margin-bottom:10px;
}

.pdc-counter-card p{
    color:#6b7280;
    margin:0;
    font-weight:500;
}

@media(max-width:991px){

.pdc-counter-heading h2{
    font-size:38px;
}

.pdc-counter-card h3{
    font-size:42px;
}

}

/* ===================================
   CLINIC HIGHLIGHTS TIMELINE
=================================== */

.clinic-highlight-timeline{
    padding:60px 0;
    background:#fff;
}

.cht-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:80px;
}

.cht-heading span{
    color:#530286;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.cht-heading h2{
    font-size:58px;
    font-weight:800;
    color:#111827;
    margin:20px 0;
}

.cht-heading p{
    color:#6b7280;
    line-height:1.9;
}

/* Timeline */

.cht-timeline{
    position:relative;
    max-width:1100px;
    margin:auto;
}

.cht-line{
    position:absolute;
    left:50%;
    top:0;
    transform:translateX(-50%);

    width:4px;
    height:100%;

    background:
    linear-gradient(
    to bottom,
    #530286,
    #6bc214
    );
}

.cht-item{
    position:relative;
    width:50%;
    padding:20px 50px;
}

.cht-item.left{
    left:0;
}

.cht-item.right{
    left:50%;
}

.cht-item::before{
    content:'';
    position:absolute;

    width:22px;
    height:22px;

    background:#fff;
    border:4px solid #530286;

    border-radius:50%;

    top:60px;
    z-index:5;
}

.cht-item.left::before{
    right:-11px;
}

.cht-item.right::before{
    left:-11px;
}

/* Cards */

.cht-card{
    background:#fff;

    border-radius:25px;

    padding:35px;

    border:1px solid rgba(83,2,134,.10);

    box-shadow:
    0 15px 35px rgba(0,0,0,.05);

    transition:.4s;
}

.cht-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(83,2,134,.12);
}

.cht-icon{
    width:70px;
    height:70px;

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:20px;

    background:
    linear-gradient(
    135deg,
    #530286,
    #6bc214
    );
}

.cht-icon i{
    color:#fff;
    font-size:28px;
}

.cht-card h4{
    font-size:24px;
    font-weight:700;
    margin-bottom:12px;
}

.cht-card p{
    color:#6b7280;
    line-height:1.8;
    margin:0;
}

.cht-bottom-text{
    margin-top:70px;
    text-align:center;
}

.cht-bottom-text p{
    font-size:22px;
    font-weight:600;
    color:#000000;
}

/* Mobile */

@media(max-width:991px){

    .cht-line{
        left:20px;
    }

    .cht-item,
    .cht-item.right{
        width:100%;
        left:0;
        padding-left:60px;
        padding-right:0;
    }

    .cht-item.left::before,
    .cht-item.right::before{
        left:9px;
        right:auto;
    }

    .cht-heading h2{
        font-size:38px;
    }
}

/*==================================
 GALLERY SECTION
==================================*/

.pgc-gallery-section{
    padding:120px 0;
    background:#fff;
}

.pgc-gallery-heading{
    max-width:850px;
    margin:auto;
    margin-bottom:70px;
}

.pgc-gallery-heading span{
    color:#530286;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.pgc-gallery-heading h2{
    font-size:58px;
    font-weight:800;
    margin:20px 0;
    color:#111827;
}

.pgc-gallery-heading p{
    color:#6b7280;
    line-height:1.9;
}

/* Gallery Item */

.pgc-gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    cursor:pointer;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);
}

.pgc-gallery-item img{
    width:100%;
    height:380px;
    object-fit:cover;

    transition:.6s;
}

.pgc-gallery-item:hover img{
    transform:scale(1.08);
}

/* Overlay */

.pgc-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(83,2,134,.75),
    rgba(107,194,20,.35)
    );

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    transition:.4s;
}

.pgc-gallery-item:hover .pgc-overlay{
    opacity:1;
}

.pgc-overlay i{
    color:#fff;
    font-size:45px;
}

/* Button */

.pgc-gallery-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:18px 35px;

    border-radius:60px;

    text-decoration:none;
    color:#fff;

    font-weight:700;

    background:
    linear-gradient(
    135deg,
    #530286,
    #6bc214
    );
}

.pgc-gallery-btn:hover{
    color:#fff;
}

/*==================================
 LIGHTBOX
==================================*/

.pgc-lightbox{
    position:fixed;
    inset:0;

    background:rgba(0,0,0,.92);

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    opacity:0;
    visibility:hidden;

    transition:.4s;
}

.pgc-lightbox.active{
    opacity:1;
    visibility:visible;
}

.pgc-lightbox img{
    max-width:90%;
    max-height:90vh;

    border-radius:20px;
}

.pgc-close{
    position:absolute;

    top:30px;
    right:40px;

    color:#fff;

    font-size:32px;
    cursor:pointer;
}

/* Mobile */

@media(max-width:991px){

.pgc-gallery-heading h2{
    font-size:38px;
}

.pgc-gallery-item img{
    height:300px;
}

}


.ortho-service{
    padding:120px 0;
    background:
    radial-gradient(circle at top left,
    rgba(124,58,237,.08),
    transparent 40%),

    radial-gradient(circle at bottom right,
    rgba(107,194,20,.08),
    transparent 40%),

    #fff;
    overflow:hidden;
}

/* Badge */

.service-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;
    background:rgba(124,58,237,.1);
    color:#6d28d9;
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:25px;
}

/* Heading */

.ortho-service h2{
    font-size:40px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-bottom:25px;
}

.ortho-service p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
}

/* Image */

.ortho-image-box{
    position:relative;
}

.ortho-image-box img{
    width:100%;
    border-radius:35px;
    display:block;
    box-shadow:
    0 30px 60px rgba(0,0,0,.08);
}

/* Floating Card */

.floating-card{
    position:absolute;
    right:-20px;
    bottom:40px;

    background:#fff;
    padding:20px 25px;

    border-radius:22px;

    display:flex;
    gap:15px;
    align-items:center;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);
}

.floating-card i{
    width:65px;
    height:65px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:18px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #5b21b6);

    color:#fff;
    font-size:24px;
}

.floating-card h5{
    margin:0;
    font-weight:700;
}

.floating-card span{
    color:#6b7280;
    font-size:14px;
}

/* Conditions */

.conditions-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:35px;
}

.condition{
    background:#fff;

    border:1px solid #ececec;

    padding:16px 20px;

    border-radius:16px;

    font-weight:600;

    transition:.3s;
}

.condition:hover{
    transform:translateY(-5px);

    border-color:#7c3aed;

    box-shadow:
    0 15px 35px rgba(124,58,237,.12);
}

.condition i{
    color:#6bc214;
    margin-right:10px;
}

/* Benefits */

.benefits{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.benefit-item{
    padding:14px 22px;
    border-radius:50px;

    background:
    linear-gradient(
    135deg,
    rgba(124,58,237,.08),
    rgba(107,194,20,.08));

    color:#111827;
    font-weight:600;
}

.benefit-item i{
    color:#7c3aed;
    margin-right:8px;
}

/* Button */

.ortho-btn{
    margin-top:40px;

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 34px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #5b21b6);

    color:#fff;
    text-decoration:none;

    border-radius:60px;

    font-weight:700;

    transition:.4s;
}

.ortho-btn:hover{
    color:#fff;

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(124,58,237,.35);
}

/* Responsive */

@media(max-width:991px){

    .ortho-service h2{
        font-size:40px;
    }

    .conditions-list{
        grid-template-columns:1fr;
    }

    .floating-card{
        right:20px;
        bottom:20px;
    }

}
.neuro-service .service-badge{
    background:rgba(107,194,20,.12);
    color:#4d7f0d;
}

.neuro-service .floating-card i{
    background:linear-gradient(
        135deg,
        #6bc214,
        #4d8d0d
    );
}

.neuro-service .condition:hover{
    border-color:#6bc214;
    box-shadow:0 15px 35px rgba(107,194,20,.15);
}
.sports-service .service-badge{
    background:rgba(124,58,237,.12);
    color:#6d28d9;
}

.sports-service .floating-card i{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #5b21b6
    );
}

.sports-service .condition:hover{
    border-color:#7c3aed;
    box-shadow:0 15px 35px rgba(124,58,237,.15);
}
.post-op-service .service-badge{
    background:rgba(107,194,20,.12);
    color:#4d8d0d;
}

.post-op-service .floating-card i{
    background:linear-gradient(
        135deg,
        #6bc214,
        #4f8f10
    );
}

.post-op-service .condition:hover{
    border-color:#6bc214;
    box-shadow:0 15px 35px rgba(107,194,20,.15);
}

.dry-needling-service .service-badge{
    background:rgba(124,58,237,.12);
    color:#6d28d9;
}

.dry-needling-service .floating-card i{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #5b21b6
    );
}

.dry-needling-service .condition:hover{
    border-color:#7c3aed;
    box-shadow:0 15px 35px rgba(124,58,237,.15);
}

.electrotherapy-service .service-badge{
    background:rgba(107,194,20,.12);
    color:#4d8d0d;
}

.electrotherapy-service .floating-card i{
    background:linear-gradient(
        135deg,
        #6bc214,
        #4f8f10
    );
}

.electrotherapy-service .condition:hover{
    border-color:#6bc214;
    box-shadow:0 15px 35px rgba(107,194,20,.15);
}
.exercise-therapy-service .service-badge{
    background:rgba(124,58,237,.12);
    color:#6d28d9;
}

.exercise-therapy-service .floating-card i{
    background:linear-gradient(
        135deg,
        #7c3aed,
        #5b21b6
    );
}

.exercise-therapy-service .condition:hover{
    border-color:#7c3aed;
    box-shadow:0 15px 35px rgba(124,58,237,.15);
}

.home-physio-service .service-badge{
    background:rgba(107,194,20,.12);
    color:#4d8d0d;
}

.home-physio-service .floating-card i{
    background:linear-gradient(
        135deg,
        #6bc214,
        #4f8f10
    );
}

.home-physio-service .condition:hover{
    border-color:#6bc214;
    box-shadow:0 15px 35px rgba(107,194,20,.15);
}
.motioncare-services-overview{
    padding:120px 0;
    background:
    radial-gradient(circle at top left,
    rgba(124,58,237,.08),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(107,194,20,.08),
    transparent 35%),

    #fff;
}

/* Heading */

.motioncare-label{
    display:inline-block;
    padding:10px 20px;
    border-radius:50px;
    background:rgba(124,58,237,.10);
    color:#6d28d9;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.motioncare-overview-content h2{
    font-size:56px;
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-bottom:25px;
}

.motioncare-overview-content p{
    color:#6b7280;
    line-height:1.9;
    font-size:17px;
}

/* Highlights */

.motioncare-highlights{
    margin-top:35px;
}

.motioncare-highlight{
    margin-bottom:15px;
    font-weight:600;
    color:#374151;
}

.motioncare-highlight i{
    color:#6bc214;
    margin-right:10px;
}

/* Service Grid */

.motioncare-service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.motioncare-service-card{
    background:#fff;
    padding:35px 25px;
    border-radius:24px;

    border:1px solid #eef1f5;

    text-align:center;

    transition:.4s;

    box-shadow:
    0 15px 35px rgba(0,0,0,.04);
}

.motioncare-service-card:hover{

    transform:translateY(-8px);

    border-color:#7c3aed;

    box-shadow:
    0 25px 50px rgba(124,58,237,.15);
}

.motioncare-service-card i{
    font-size:42px;
    margin-bottom:20px;

    background:linear-gradient(
    135deg,
    #7c3aed,
    #6bc214);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.motioncare-service-card h4{
    font-size:18px;
    font-weight:700;
    margin:0;
}

/* Process */

.motioncare-process-section{
    margin-top:90px;
}

.motioncare-process-card{
    background:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:20px;
    border:1px solid #edf2f7;
}

.motioncare-process-card i{
    font-size:34px;
    color:#7c3aed;
    margin-bottom:15px;
}

/* CTA Banner */

.motioncare-bottom-banner{

    margin-top:80px;

    padding:50px;

    border-radius:30px;

    background:
    linear-gradient(
    135deg,
    #7c3aed,
    #5b21b6,
    #6bc214);

    color:#fff;
}

.motioncare-bottom-banner h3{
    font-size:36px;
    font-weight:800;
    margin-bottom:15px;
}

.motioncare-btn{

    display:inline-block;

    background:#fff;

    color:#7c3aed;

    padding:16px 34px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;
}

.motioncare-btn:hover{
    color:#7c3aed;
}

@media(max-width:991px){

    .motioncare-overview-content h2{
        font-size:40px;
    }

    .motioncare-service-grid{
        grid-template-columns:1fr;
    }

    .motioncare-bottom-banner{
        padding:35px;
        text-align:center;
    }

}