body{
    /*background:#f7f7f8;*/
    font-family: 'Inter', sans-serif;
}

.medical-hero-wrapper{
    overflow:hidden;
}

/* NAVBAR */

.medical-navbar{
    padding:22px 0;
    background:#fff;
    border-bottom:1px solid #ececec;
}

.navbar-brand{
    font-size:24px;
}

.logo-dot{
    width:12px;
    height:12px;
    background:linear-gradient(135deg,#5f5fff,#8d4dff);
    display:inline-block;
    border-radius:50%;
    margin-right:7px;
}

.nav-link{
    font-size:14px;
    color:#000 !important;
    font-weight:600;
    transition:.3s;
}

.nav-link:hover{
    color:#5f5fff !important;
}

.assessment-btn{
    padding:12px 24px;
    border-radius:999px;
    background:linear-gradient(90deg,#2f6bff,#8d4dff);
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.assessment-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

/* HERO */

.hero-section{
    padding:40px 0;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 16px;
    background:#fff;
    border-radius:999px;
    font-size:13px;
    color:#5b5b5b;
    margin-bottom:28px;
    box-shadow:0 4px 15px rgba(0,0,0,.04);
}

.hero-tag span{
    width:8px;
    height:8px;
    background:#00d38d;
    border-radius:50%;
}

.hero-title{
    font-size:70px;
    line-height:1.1;
    font-weight:600;
    letter-spacing:-3px;
    color:#121212;
}

.hero-title .blue{
    color:#536dff;
}

.hero-title .orange{
    color:#ffb018;
}

.gradient-text{
    background:linear-gradient(90deg,#ff6b6b,#ffb347);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-desc{
    margin-top:25px;
    color:#6f6f6f;
    font-size:17px;
    line-height:1.8;
    max-width:480px;
}

.hero-desc span{
    color:#4d5dff;
    font-weight:600;
}

.hero-btns{
    display:flex;
    gap:16px;
    margin-top:35px;
    flex-wrap:wrap;
}

.primary-btn{
    padding:15px 32px;
    background:linear-gradient(90deg,#2f6bff,#8d4dff);
    color:#fff;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    box-shadow:0 10px 25px rgba(82,93,255,.25);
}

.primary-btn:hover{
    color:#fff;
}

.secondary-btn{
    padding:15px 30px;
    background:#fff;
    border:1px solid #e7e7e7;
    color:#333;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
}

.secondary-btn:hover{
    color:#000;
}

/* FEATURES */

.hero-features{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.feature-box{
    background:#fff;
    border-radius:18px;
    padding:18px 26px;
    min-width:160px;
    border:1px solid #ededed;
    box-shadow:0 10px 20px rgba(0,0,0,.04);
}

/* MRI */
.feature-box:nth-child(1) h5{
    background:linear-gradient(104deg,#3154d9 0%, #703ee9 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* CT */
.feature-box:nth-child(2) h5{
    background:linear-gradient(104deg,#00bcd4 0%, #00d4aa 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* AI */
.feature-box:nth-child(3) h5{
    background:linear-gradient(104deg,#ff9f43 0%, #ff6b57 100%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.feature-box h5{
    margin:0;
    font-size:30px;
    font-weight:600;
    /*color:#5d64ff;*/
}

.feature-box p{
    margin:0;
    color:#888;
    font-size:11px;
    letter-spacing:1px;
}

/* IMAGE */

.hero-image-box{
    position:relative;
    max-width:500px;
    margin:auto;
}

.hero-img{
    width:100%;
    border-radius:30px;
    border:10px solid #fff;
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.floating-card{
    position: absolute;
    background: #fff;
    padding: 7px 13px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.floating-card strong{
    display:block;
    font-size:14px;
}

.floating-card p{
    margin:0;
    font-size:12px;
    color:#888;
}

.left-card{
    bottom:18px;
    left:18px;
}

.right-card{
    bottom:18px;
    left:220px;
}

.card-icon{
    width:40px;
    height:40px;
    border-radius:12px;
}

.purple{
    background:linear-gradient(135deg,#5d64ff,#9b4dff);
}

.green{
    background:linear-gradient(135deg,#00c98d,#8ce99a);
}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-section{
        padding:40px 0;
    }

    .hero-title{
        font-size:58px;
    }

    .hero-image-box{
        margin-top:20px;
    }

}

@media(max-width:767px){

    .hero-title{
        font-size:33px;
        letter-spacing:-1px;
    }

    .hero-desc{
        font-size:15px;
    }

    .feature-box{
        width:100%;
    }

    .floating-card{
        transform:scale(.88);
    }

}


/* CARD 1 */
.col-xl-4:nth-child(1) .mgservices-link-btn{
    color:#3154d9;
}

/* CARD 2 */
.col-xl-4:nth-child(2) .mgservices-link-btn{
    color:#00c897;
}

/* CARD 3 */
.col-xl-4:nth-child(3) .mgservices-link-btn{
    color:#7b3ff2;
}

/* CARD 4 */
.col-xl-4:nth-child(4) .mgservices-link-btn{
    color:#ff9f43;
}

/* CARD 5 */
.col-xl-4:nth-child(5) .mgservices-link-btn{
    color:#ff5b5b;
}

/* CARD 6 */
.col-xl-4:nth-child(6) .mgservices-link-btn{
    color:#2563eb;
}

.higher{
color: #00d8b3 !important;
}
.scans{
    color: #0066cc !important;
}


/*next-generation*/

.mg-nextgen-area{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f6f9ff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

.mg-nextgen-area::before{
    content:'';
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,#ffffff 0%, transparent 70%);
    top:-250px;
    right:-250px;
    opacity:.9;
}

.mg-nextgen-area::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#dfeeff 0%, transparent 70%);
    bottom:-250px;
    left:-200px;
    opacity:.8;
}

/* IMAGE */

.mg-nextgen-image-wrap{
    position:relative;
    max-width:520px;
    margin:auto;
}

.mg-nextgen-main-image{
    width:100%;
    border-radius:30px;
    border:10px solid #fff;
    box-shadow:0 25px 50px rgba(16,24,40,.12);
    position:relative;
    z-index:2;
}

/* FLOAT CARD */

.mg-nextgen-float-card{
    position:absolute;
    padding:14px 18px;
    display:flex;
    align-items:center;
    gap:14px;
    z-index:5;
     background:linear-gradient(135deg,#c445d7 0%, #a855f7 35%, #ff5f6d 100%);
    border-radius:22px;
    box-shadow:0 18px 35px rgba(196,69,215,.28);
}

.mg-nextgen-float-card h6{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#fff;
}

.mg-nextgen-float-card p{
    margin:0;
    font-size:12px;
    color:#f1f1f1;
}

.mg-nextgen-top-card{
    top:-25px;
    right:-20px;
}

.mg-nextgen-bottom-card{
    bottom:-25px;
    left:-20px;
}

/* FLOAT ICON */

.mg-nextgen-float-icon{
    width:48px;
    height:48px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.mg-nextgen-purple-bg{
    background:linear-gradient(135deg,#4f46ff,#8b5cf6);
}

.mg-nextgen-pink-bg{
    background:linear-gradient(135deg,#ff5ba5,#8b5cf6);
}

/* BADGE */

.mg-nextgen-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#edf4ff;
    padding:9px 18px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    color:#3970ff;
    margin-bottom:28px;
}

.mg-nextgen-badge span{
    width:7px;
    height:7px;
    background:#3970ff;
    border-radius:50%;
}

/* TITLE */

.mg-nextgen-title{
    font-size:55px;
    line-height:55px;
    font-weight:600;
    color:#161616;
    letter-spacing:-2px;
    margin-bottom:25px;
}

.mg-nextgen-title span{
    background:linear-gradient(90deg,#3d63ff,#14bebd);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* DESCRIPTION */

.mg-nextgen-description{
    color:#7a7a7a;
    font-size:16px;
    line-height:1.9;
    margin-bottom:30px;
    max-width:580px;
}

/* STATS */

.mg-nextgen-mini-stats{
    display:flex;
    gap:24px;
    flex-wrap:wrap;
    margin-bottom:32px;
}

.mg-nextgen-mini-item{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #4b5563;
    background: #fff;
    padding: 5px 15px;
    border-radius: 10px;
}

.mg-nextgen-dot{
    width:10px;
    height:10px;
    border-radius:50%;
}

.mg-nextgen-dot-blue{
    background:#3970ff;
}

.mg-nextgen-dot-green{
    background:#00c896;
}

.mg-nextgen-dot-purple{
    background:#8b5cf6;
}

/* FEATURE GRID */

.mg-nextgen-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-bottom:35px;
}

.mg-nextgen-feature-card{
    background:#fff;
    border-radius:10px;
    padding:10px;
    display:flex;
    align-items:flex-start;
    gap:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border:1px solid #eef1f7;
    transition:.3s;
}

.mg-nextgen-feature-card:hover{
    transform:translateY(-4px);
}

.mg-nextgen-feature-card h5{
    margin:0 0 5px;
    font-size:16px;
    font-weight:700;
    color:#1f2937;
}

.mg-nextgen-feature-card p{
    margin:0;
    font-size:13px;
    color:#8a8a8a;
    line-height:1.6;
}

/* FEATURE ICON */

.mg-nextgen-feature-icon{
    width:40px;
    height:40px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    flex-shrink:0;
}

.mg-nextgen-blue-icon{
    background:linear-gradient(135deg,#4f46ff,#3b82f6);
}

.mg-nextgen-pink-icon{
    background:linear-gradient(135deg,#ff5ba5,#9b5cff);
}

.mg-nextgen-orange-icon{
    background:linear-gradient(135deg,#ff9d43,#ff6b6b);
}

.mg-nextgen-gold-icon{
    background:linear-gradient(135deg,#ffb347,#4facfe);
}

/* BUTTON */

.mg-nextgen-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 30px;
    background:linear-gradient(90deg,#2563eb,#7c3aed);
    color:#fff;
    text-decoration:none;
    border-radius:999px;
    font-weight:600;
    box-shadow:0 15px 35px rgba(79,70,229,.25);
    transition:.3s;
}

.mg-nextgen-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .mg-nextgen-title{
        font-size:58px;
    }

}

@media(max-width:991px){

    .mg-nextgen-area{
        padding:40px 0;
    }

    .mg-nextgen-title{
        font-size:50px;
    }

    .mg-nextgen-image-wrap{
        margin-bottom:40px;
    }

}

@media(max-width:767px){

    .mg-nextgen-title{
        font-size:30px;
        line-height:1.1;
    }

    .mg-nextgen-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .mg-nextgen-float-card{
        transform:scale(.88);
    }

    .mg-nextgen-top-card{
        right:0;
    }

    .mg-nextgen-bottom-card{
        left:0;
    }

    .mg-nextgen-description{
        font-size:15px;
    }

}

/* =========================================
WHO WE WORK WITH
========================================= */

.mgclient-area-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f9fbff 0%, #f4f8ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND SHAPE */

.mgclient-bg-shape{
    position:absolute;
    top:-150px;
    left:-150px;
    width:700px;
    height:700px;
    background:linear-gradient(135deg,rgba(99,102,241,0.05),rgba(0,212,255,0.03));
    transform:rotate(35deg);
    border-radius:80px;
}

/* TITLE */

.mgclient-heading-wrap{
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.mgclient-small-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#edf4ff;
    border-radius:999px;
    color:#3970ff;
    font-size:12px;
    font-weight:700;
    margin-bottom:25px;
}

.mgclient-small-badge span{
    width:7px;
    height:7px;
    background:#3970ff;
    border-radius:50%;
}

.mgclient-main-title{
    font-size:68px;
    font-weight:800;
    color:#141414;
    line-height:1.1;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.mgclient-main-title span{
    background:linear-gradient(90deg,#365cff,#5d8cff,#31d2ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mgclient-subtitle{
    font-size:16px;
    color:#7d7d7d;
    max-width:700px;
    margin:auto;
}

/* CARD */

.mgclient-service-card{
    background:#fff;
    border-radius:26px;
    padding:40px 28px;
    text-align:center;
    position:relative;
    z-index:2;
    height:100%;
    border:1px solid #eef2ff;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s ease;
    overflow:hidden;
}

/* HOVER EFFECT */

.mgclient-service-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    left:0;
    bottom:0;
    background:linear-gradient(180deg,rgba(79,70,229,.04),rgba(56,189,248,.06));
    transition:.4s;
    z-index:-1;
}

.mgclient-service-card:hover::before{
    height:100%;
}

.mgclient-service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

/* ICON */

.mgclient-icon-box{
    width:72px;
    height:72px;
    border-radius:22px;
    margin:auto auto 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    box-shadow:0 12px 25px rgba(0,0,0,.15);
}

.mgclient-blue-gradient{
    background:linear-gradient(135deg,#4f46ff,#6d7dff);
}

.mgclient-cyan-gradient{
    background:linear-gradient(135deg,#00c6ff,#00e1c6);
}

.mgclient-pink-gradient{
    background:linear-gradient(135deg,#ff5ea8,#9b5cff);
}

.mgclient-orange-gradient{
    background:linear-gradient(135deg,#ff9f43,#ff6b6b);
}

/* TEXT */

.mgclient-service-card h4{
    font-size:22px;
    font-weight:700;
    color:#181818;
    margin-bottom:16px;
}

.mgclient-service-card p{
    font-size:14px;
    line-height:1.8;
    color:#7b7b7b;
    margin:0;
}

/* ANIMATION */

@keyframes mgclientFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
    100%{
        transform:translateY(0px);
    }
}

.mgclient-icon-box{
    animation:mgclientFloat 4s ease-in-out infinite;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .mgclient-main-title{
        font-size:56px;
    }

}

@media(max-width:991px){

    .mgclient-area-section{
        padding:40px 0;
    }

    .mgclient-main-title{
        font-size:48px;
    }

}

@media(max-width:767px){

    .mgclient-main-title{
        font-size:30px;
        letter-spacing:-1px;
    }

    .mgclient-subtitle{
        font-size:15px;
    }

    .mgclient-service-card{
        padding:35px 22px;
    }

}


/* =========================================
HOW WE WORK SECTION
========================================= */

.mgworkflow-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f7faff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND */

.mgworkflow-bg-shape{
    position:absolute;
    width:700px;
    height:700px;
    background:linear-gradient(135deg,rgba(99,102,241,0.04),rgba(14,165,233,0.03));
    top:-200px;
    left:-200px;
    transform:rotate(35deg);
    border-radius:80px;
}

/* TITLE */

.mgworkflow-title-wrap{
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.mgworkflow-main-title{
    font-size:60px;
    font-weight:800;
    color:#161616;
    line-height:1.1;
    margin-bottom:16px;
    letter-spacing:-2px;
}

.mgworkflow-subtitle{
    color:#7d7d7d;
    font-size:17px;
}

/* PROCESS AREA */

.mgworkflow-process-area{
    position:relative;
    z-index:2;
}

/* LINE */

.mgworkflow-line{
    position:absolute;
    top:54px;
    left:50%;
    transform:translateX(-50%);
    width:88%;
    height:4px;
    background:linear-gradient(90deg,#2563eb,#00c6ff,#8b5cf6);
    border-radius:999px;
}

/* STEP */

.mgworkflow-step-box{
    position:relative;
    text-align:center;
    padding:0 10px;
    transition:.4s;
}

.mgworkflow-step-box:hover{
    transform:translateY(-8px);
}

/* NUMBER */

.mgworkflow-step-number{
    position:absolute;
    top:-18px;
    right:30%;
    width:28px;
    height:28px;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
    z-index:3;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.mgworkflow-green-number{
    background:#10b981;
}

.mgworkflow-purple-number{
    background:#8b5cf6;
}

.mgworkflow-orange-number{
    background:#f59e0b;
}

.mgworkflow-red-number{
    background:#ff6b6b;
}

/* ICON */

.mgworkflow-step-icon{
    width:78px;
    height:78px;
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    position:relative;
    z-index:2;
    border:6px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    animation:mgworkflowFloat 4s ease-in-out infinite;
}

.mgworkflow-blue{
    background:linear-gradient(135deg,#4f46ff,#3b82f6);
}

.mgworkflow-cyan{
    background:linear-gradient(135deg,#00c6ff,#00d4aa);
}

.mgworkflow-pink{
    background:linear-gradient(135deg,#ff5ea8,#9b5cff);
}

.mgworkflow-orange{
    background:linear-gradient(135deg,#ff9f43,#ff6b6b);
}

.mgworkflow-yellow{
    background:linear-gradient(135deg,#ffb347,#ffcc33);
}

/* TEXT */

.mgworkflow-step-box h4{
    margin-top:22px;
    font-size:22px;
    font-weight:700;
    color:#1a1a1a;
}

.mgworkflow-step-box p{
    font-size:14px;
    line-height:1.7;
    color:#7d7d7d;
    max-width:170px;
    margin:10px auto 0;
}

/* ANIMATION */

@keyframes mgworkflowFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* CTA */

.mgworkflow-cta-wrap{
    margin:40px auto 0;
    max-width:760px;
    background:#fff;
    border-radius:24px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.08);
    border:1px solid #edf2ff;
    position:relative;
    z-index:2;
}

.mgworkflow-cta-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:linear-gradient(135deg,#4f46ff,#8b5cf6);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
    flex-shrink:0;
}

.mgworkflow-cta-content{
    flex:1;
    color:#4b5563;
    font-size:15px;
    font-weight:500;
}

.mgworkflow-cta-btn{
    padding:15px 28px;
    border-radius:999px;
    background:linear-gradient(90deg,#2563eb,#7c3aed);
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.mgworkflow-cta-btn:hover{
    transform:translateY(-3px);
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .mgworkflow-main-title{
        font-size:58px;
    }

}

@media(max-width:991px){

    .mgworkflow-section{
        padding:40px 0;
    }

    .mgworkflow-main-title{
        font-size:48px;
    }

    .mgworkflow-line{
        display:none;
    }

    .mgworkflow-step-box{
        margin-bottom:50px;
    }

}

@media(max-width:767px){

    .mgworkflow-main-title{
        font-size:30px;
        letter-spacing:-1px;
    }

    .mgworkflow-subtitle{
        font-size:15px;
    }

    .mgworkflow-step-icon{
        width:68px;
        height:68px;
        font-size:26px;
    }

    .mgworkflow-step-box h4{
        font-size:20px;
    }

    .mgworkflow-cta-wrap{
        flex-direction:column;
        text-align:center;
        padding:30px 20px;
    }

    .mgworkflow-cta-btn{
        width:100%;
        text-align:center;
    }

}

/* =========================================
UNIQUE WHY CHOOSE SECTION
========================================= */

.mguniquechoose-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND */

.mguniquechoose-bg-one{
    position:absolute;
    width:650px;
    height:650px;
    background:radial-gradient(circle,rgba(79,70,229,.05),transparent 70%);
    top:-260px;
    left:-220px;
    border-radius:50%;
}

.mguniquechoose-bg-two{
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,198,255,.04),transparent 70%);
    bottom:-320px;
    right:-320px;
    border-radius:50%;
}

/* HEADING */

.mguniquechoose-heading{
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.mguniquechoose-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:#edf4ff;
    color:#3970ff;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
}

.mguniquechoose-badge span{
    width:7px;
    height:7px;
    background:#3970ff;
    border-radius:50%;
}

.mguniquechoose-title{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    color:#171717;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.mguniquechoose-title span{
    background:linear-gradient(90deg,#365cff,#5f6fff,#25d0ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mguniquechoose-subtitle{
    color:#7d7d7d;
    font-size:16px;
}

/* CARD */

.mguniquechoose-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:36px 28px;
    height:100%;
    border:1px solid #edf2ff;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s ease;
    overflow:hidden;
    z-index:2;
}

/* HOVER */

.mguniquechoose-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    left:0;
    bottom:0;
    background:linear-gradient(180deg,rgba(79,70,229,.04),rgba(56,189,248,.04));
    transition:.4s;
    z-index:-1;
}

.mguniquechoose-card:hover::before{
    height:100%;
}

.mguniquechoose-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

/* ICON */

.mguniquechoose-icon{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:28px;
    box-shadow:0 14px 30px rgba(0,0,0,.14);
    animation:mguniquechooseFloat 4s ease-in-out infinite;
}

.mguniquechoose-purple{
    background:linear-gradient(135deg,#4f46ff,#6d7dff);
}

.mguniquechoose-cyan{
    background:linear-gradient(135deg,#00c6ff,#00d4aa);
}

.mguniquechoose-pink{
    background:linear-gradient(135deg,#ff5ea8,#9b5cff);
}

.mguniquechoose-orange{
    background:linear-gradient(135deg,#ff9f43,#ff6b6b);
}

/* TEXT */

.mguniquechoose-card h4{
    font-size:24px;
    font-weight:700;
    color:#191919;
    margin-bottom:16px;
    line-height:1.3;
}

.mguniquechoose-card p{
    font-size:14px;
    line-height:1.9;
    color:#7d7d7d;
    margin:0;
}

/* ANIMATION */

@keyframes mguniquechooseFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:1199px){

    .mguniquechoose-title{
        font-size:56px;
    }

}

@media(max-width:991px){

    .mguniquechoose-section{
        padding:40px 0;
    }

    .mguniquechoose-title{
        font-size:30px;
    }

}

@media(max-width:767px){

    .mguniquechoose-title{
        font-size:30px;
        letter-spacing:-1px;
    }

    .mguniquechoose-subtitle{
        font-size:15px;
    }

    .mguniquechoose-card{
        padding:32px 24px;
        text-align:center;
    }

    .mguniquechoose-icon{
        margin-left:auto;
        margin-right:auto;
    }

}

/* =========================================
OUR SERVICES SECTION
========================================= */

.mgservices-area-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f7fbff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND */

.mgservices-bg-shape-one{
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(79,70,229,.05),transparent 70%);
    top:-300px;
    left:-300px;
    border-radius:50%;
}

.mgservices-bg-shape-two{
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,198,255,.04),transparent 70%);
    bottom:-320px;
    right:-320px;
    border-radius:50%;
}

/* HEADING */

.mgservices-heading-wrap{
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.mgservices-mini-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:999px;
    background:#edf4ff;
    color:#3970ff;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
}

.mgservices-mini-badge span{
    width:7px;
    height:7px;
    background:#3970ff;
    border-radius:50%;
}

.mgservices-main-title{
    font-size:68px;
    font-weight:800;
    line-height:1;
    color:#161616;
    letter-spacing:-2px;
    margin-bottom:24px;
}

.mgservices-main-title span{
    background:linear-gradient(90deg,#365cff,#5f6fff,#25d0ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mgservices-subtitle{
    font-size:16px;
    color:#7a7a7a;
    max-width:700px;
    margin:auto;
    line-height:1.9;
}

/* CARD */

.mgservices-card-box{
    position:relative;
    background:#fff;
    border-radius:28px;
    padding:22px;
    height:100%;
    overflow:hidden;
    border:1px solid #edf2ff;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    transition:.4s;
    z-index:2;
}

.mgservices-card-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 55px rgba(0,0,0,.10);
}

/* THUMB */

.mgservices-thumb-wrap{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:22px;
    margin-bottom:24px;
}

.mgservices-thumb-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s;
}

.mgservices-card-box:hover .mgservices-thumb-img{
    transform:scale(1.08);
}

/* NUMBER */

.mgservices-number{
    font-size:14px;
    font-weight:800;
    margin-bottom:14px;
}

.mgservices-blue-text{
    color:#365cff;
}

.mgservices-green-text{
    color:#00c896;
}

.mgservices-purple-text{
    color:#8b5cf6;
}

.mgservices-orange-text{
    color:#ff9f43;
}

.mgservices-red-text{
    color:#ff6b6b;
}

/* TEXT */

.mgservices-card-box h4{
    font-size: 20px;
    font-weight: 600;
    color: #191919;
    line-height: 1;
    margin-bottom: 12px;
}

.mgservices-card-box p{
    font-size:14px;
    line-height:1.9;
    color:#7d7d7d;
    margin-bottom:28px;
}

/* BOTTOM */

.mgservices-bottom{
    display:flex;
    align-items:center;
    /*justify-content:space-between;*/
}

.mgservices-link-btn{
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    color:#365cff;
    transition:.3s;
    margin-right: 30px;
}

.mgservices-link-btn:hover{
    color:#8b5cf6;
}

/* DOTS */

.mgservices-dots{
    display:flex;
    gap:6px;
}

.mgservices-dots span{
    width:8px;
    height:8px;
    border-radius:50%;
}

.mgservices-dot-blue{
    background:#365cff;
}

.mgservices-dot-cyan{
    background:#00c6ff;
}

.mgservices-dot-purple{
    background:#8b5cf6;
}

.mgservices-dot-green{
    background:#00c896;
}

.mgservices-dot-orange{
    background:#ff9f43;
}

.mgservices-dot-pink{
    background:#ff5ea8;
}

.mgservices-dot-red{
    background:#ff6b6b;
}

/* RESPONSIVE */

@media(max-width:1199px){

    .mgservices-main-title{
        font-size:56px;
    }

}

@media(max-width:991px){

    .mgservices-area-section{
        padding:40px 0;
    }

    .mgservices-main-title{
        font-size:48px;
    }

}

@media(max-width:767px){

    .mgservices-main-title{
        font-size:38px;
        letter-spacing:-1px;
    }

    .mgservices-subtitle{
        font-size:15px;
    }

    .mgservices-card-box{
        padding:20px;
    }

    .mgservices-thumb-wrap{
        height:200px;
    }

    .mgservices-card-box h4{
        font-size:22px;
    }

}

/* =========================================
OUR EXPERTISE SECTION
========================================= */

.mgexpertise-section-area{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f7fbff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND SHAPE */

.mgexpertise-bg-shape-one{
    position:absolute;
    width:700px;
    height:700px;
    background:linear-gradient(135deg,rgba(79,70,229,.04),rgba(0,198,255,.03));
    top:-260px;
    left:-260px;
    transform:rotate(35deg);
    border-radius:90px;
}

.mgexpertise-bg-shape-two{
    position:absolute;
    width:650px;
    height:650px;
    background:radial-gradient(circle,rgba(0,198,255,.04),transparent 70%);
    bottom:-300px;
    right:-300px;
    border-radius:50%;
}

/* HEADING */

.mgexpertise-heading-wrap{
    margin-bottom:80px;
    position:relative;
    z-index:2;
}

.mgexpertise-mini-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    background:#edf4ff;
    border-radius:999px;
    color:#3970ff;
    font-size:12px;
    font-weight:700;
    margin-bottom:24px;
}

.mgexpertise-mini-badge span{
    width:7px;
    height:7px;
    background:#3970ff;
    border-radius:50%;
}

.mgexpertise-main-title{
    font-size:68px;
    font-weight:800;
    line-height:1.1;
    color:#181818;
    letter-spacing:-2px;
    margin-bottom:18px;
}

.mgexpertise-main-title span{
    background:linear-gradient(90deg,#365cff,#5f6fff,#25d0ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.mgexpertise-subtitle{
    color:#7a7a7a;
    font-size:16px;
}

/* CARD */

.mgexpertise-card-box{
    position: relative;
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .4s ease;
    overflow: hidden;
    z-index: 2;
}

.mgexpertise-card-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:0%;
    left:0;
    bottom:0;
    background:linear-gradient(180deg,rgba(79,70,229,.04),rgba(56,189,248,.04));
    transition:.4s;
    z-index:-1;
}

.mgexpertise-card-box:hover::before{
    height:100%;
}

.mgexpertise-card-box:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.10);
}

/* ICON */

.mgexpertise-icon-box{
    width:74px;
    height:74px;
    border-radius:22px;
    margin:auto auto 28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    box-shadow:0 15px 30px rgba(0,0,0,.14);
    animation:mgexpertiseFloat 4s ease-in-out infinite;
}

.mgexpertise-orange-gradient{
    background:linear-gradient(135deg,#ff9f43,#ff6b6b);
}

.mgexpertise-blue-gradient{
    background:linear-gradient(135deg,#4f46ff,#3b82f6);
}

.mgexpertise-pink-gradient{
    background:linear-gradient(135deg,#ff5ea8,#9b5cff);
}

.mgexpertise-gold-gradient{
    background:linear-gradient(135deg,#ffb347,#ffcc33);
}

.mgexpertise-cyan-gradient{
    background:linear-gradient(135deg,#00c6ff,#00d4aa);
}

/* TEXT */

.mgexpertise-card-box h4{
    font-size:18px;
    font-weight:700;
    color:#181818;
    margin-bottom:14px;
    line-height:1.4;
}

.mgexpertise-card-box p{
    font-size:14px;
    line-height:20px;
    color:#7d7d7d;
    margin:0;
}

/* ANIMATION */

@keyframes mgexpertiseFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0px);
    }

}

/* RESPONSIVE */

@media(max-width:1199px){

    .mgexpertise-main-title{
        font-size:56px;
    }

}

@media(max-width:991px){

    .mgexpertise-section-area{
        padding:90px 0;
    }

    .mgexpertise-main-title{
        font-size:48px;
    }

}

@media(max-width:767px){

    .mgexpertise-main-title{
        font-size:38px;
        letter-spacing:-1px;
    }

    .mgexpertise-subtitle{
        font-size:15px;
    }

    .mgexpertise-card-box{
        padding:32px 22px;
    }

}


/* =========================================
CTA SECTION
========================================= */

.mgradiologycta-section{
    position:relative;
    padding:80px 0;
    overflow:hidden;
    background:linear-gradient(180deg,#f7fbff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* BACKGROUND SHAPES */

.mgradiologycta-bg-one{
    position:absolute;
    width:750px;
    height:750px;
    background:radial-gradient(circle,rgba(79,70,229,.05),transparent 70%);
    top:-320px;
    left:-320px;
    border-radius:50%;
}

.mgradiologycta-bg-two{
    position:absolute;
    width:700px;
    height:700px;
    background:radial-gradient(circle,rgba(0,198,255,.04),transparent 70%);
    bottom:-340px;
    right:-340px;
    border-radius:50%;
}

.mgradiologycta-bg-three{
    position:absolute;
    width:900px;
    height:900px;
    background:linear-gradient(135deg,rgba(255,255,255,.30),rgba(255,255,255,0));
    top:-200px;
    right:-250px;
    transform:rotate(35deg);
    border-radius:120px;
}

/* WRAPPER */

.mgradiologycta-wrapper{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:auto;
}

/* TITLE */

.mgradiologycta-title{
    font-size: 70px;
    font-weight: 600;
    line-height: 72px;
    color: #161616;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.mgradiologycta-title span{
    background:linear-gradient(90deg,#2563eb,#5b5ff8,#12c6ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.mgradiologycta-text{
    max-width:720px;
    margin:auto auto 45px;
    font-size:17px;
    line-height:1.9;
    color:#7b7b7b;
}

/* BUTTON AREA */

.mgradiologycta-btn-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

/* PRIMARY BUTTON */

.mgradiologycta-primary-btn{
    padding:18px 38px;
    border-radius:999px;
    background:linear-gradient(90deg,#2563eb,#7c3aed);
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    box-shadow:0 18px 40px rgba(79,70,229,.24);
    transition:.4s ease;
}

.mgradiologycta-primary-btn:hover{
    transform:translateY(-5px);
    color:#fff;
    box-shadow:0 25px 50px rgba(79,70,229,.32);
}

/* SECONDARY BUTTON */

.mgradiologycta-secondary-btn{
    padding:18px 36px;
    border-radius:999px;
    background:#fff;
    color:#181818;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    border:1px solid #edf2ff;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    transition:.4s ease;
}

.mgradiologycta-secondary-btn:hover{
    transform:translateY(-5px);
    color:#181818;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

/* RESPONSIVE */

@media(max-width:1199px){

    .mgradiologycta-title{
        font-size:62px;
    }

}

@media(max-width:991px){

    .mgradiologycta-section{
        padding:40px 0;
    }

    .mgradiologycta-title{
        font-size:52px;
    }

}

@media(max-width:767px){

    .mgradiologycta-title{
        font-size:30px;
        letter-spacing:-1px;
        line-height:1.1;
    }

    .mgradiologycta-text{
        font-size:15px;
    }

    .mgradiologycta-btn-wrap{
        flex-direction:column;
    }

    .mgradiologycta-primary-btn,
    .mgradiologycta-secondary-btn{
        width:100%;
        text-align:center;
    }

}

/* =========================================
FOOTER AREA
========================================= */

.mgradfooter-main-area{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#f8fbff 0%, #eef5ff 100%);
    font-family:'Inter',sans-serif;
}

/* TOP */

.mgradfooter-top-area{
    padding:50px 0 35px;
    position:relative;
    z-index:2;
}

/* LOGO */

.mgradfooter-logo{
    display:inline-block;
    font-size:34px;
    font-weight:800;
    text-decoration:none;
    margin-bottom:24px;
    background:linear-gradient(90deg,#2563eb,#7c3aed,#12c6ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */

.mgradfooter-about-text{
    font-size:15px;
    line-height:1.9;
    color:#7d7d7d;
    margin-bottom:28px;
    max-width:320px;
}

/* SOCIAL */

.mgradfooter-social-wrap{
    display:flex;
    align-items:center;
    gap:12px;
}

.mgradfooter-social-icon{
    width:42px;
    height:42px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:15px;
    transition:.4s ease;
    box-shadow:0 12px 24px rgba(0,0,0,.08);
}

.mgradfooter-social-icon:nth-child(1){
    background:linear-gradient(135deg,#2563eb,#4f46ff);
}

.mgradfooter-social-icon:nth-child(2){
    background:linear-gradient(135deg,#00c6ff,#00d4aa);
}

.mgradfooter-social-icon:nth-child(3){
    background:linear-gradient(135deg,#ff5ea8,#9b5cff);
}

.mgradfooter-social-icon:hover{
    transform:translateY(-5px);
    color:#fff;
}

/* WIDGET */

.mgradfooter-widget-title{
    font-size:18px;
    font-weight:700;
    color:#2563eb;
    margin-bottom:24px;
}

.mgradfooter-cyan-title{
    color:#00bcd4;
}

.mgradfooter-purple-title{
    color:#a046c7;
}

/* LINKS */

.mgradfooter-links{
    margin:0;
    padding:0;
    list-style:none;
}

.mgradfooter-links li{
    margin-bottom:12px;
}

.mgradfooter-links li:last-child{
    margin-bottom:0;
}

.mgradfooter-links li a{
    text-decoration:none;
    color:#7d7d7d;
    font-size:14px;
    transition:.3s;
}

.mgradfooter-links li a:hover{
    color:#2563eb;
    padding-left:4px;
}

/* BOTTOM */

.mgradfooter-bottom-area{
    margin-top:70px;
    padding-top:25px;
    border-top:1px solid rgba(0,0,0,.06);
}

/* COPYRIGHT */

.mgradfooter-copyright{
    margin:0;
    font-size:13px;
    color:#8b8b8b;
}

/* BOTTOM LINKS */

.mgradfooter-bottom-links{
    display:flex;
    justify-content:flex-end;
    gap:24px;
}

.mgradfooter-bottom-links a{
    text-decoration:none;
    font-size:13px;
    color:#8b8b8b;
    transition:.3s;
}

.mgradfooter-bottom-links a:hover{
    color:#2563eb;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mgradfooter-top-area{
        padding:40px 0 30px;
    }

}

@media(max-width:767px){

    .mgradfooter-logo{
        font-size:30px;
    }

    .mgradfooter-about-text{
        max-width:100%;
    }

    .mgradfooter-widget{
        margin-top:10px;
    }

    .mgradfooter-bottom-area{
        margin-top:50px;
        text-align:center;
    }

    .mgradfooter-bottom-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}

/*contact*/

/* Top Text */

.contact-section{
    padding: 60px 0;
    background: #f6faff;
}

.contact-top{
    margin-bottom:40px;
}


.contact-top h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#142b57;
    max-width:600px;

}

.contact-top h2 span{
    background: linear-gradient(90deg, #365cff, #5f6fff, #25d0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-top p{
    margin-top:18px;
    color:#7d8698;
    font-size:15px;
    max-width:620px;
    line-height:1.8;
}

/* Wrapper */

.contact-wrapper{
    display:flex;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,0.06);
}

/* Left */

.contact-info{
    width:38%;
    padding:55px 45px;
    background:linear-gradient(180deg,#2d5bff,#6d35ff);
    color:#fff;
}

.contact-info h3{
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
}

.contact-info p{
    font-size:14px;
    opacity:.9;
    margin-bottom:45px;
    line-height:1.7;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:16px;
    margin-bottom:35px;
}

.icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
}

.info-box h4{
    font-size:15px;
    margin-bottom:5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}




.info-box span{
    font-size:14px;
    opacity:.9;
}

/* Right */

.contact-form{
    width:62%;
    padding:50px;
    background:#fff;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.input-group{
    display:flex;
    flex-direction:column;
}

.input-group label{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
    color:#1c1c1c;
}

.input-group input,
.input-group textarea{
    width:100%;
    border:1px solid #e3e6ef;
    border-radius:10px;
    padding:15px 16px;
    font-size:14px;
    outline:none;
    transition:0.3s;
    background:#fff;
}

.input-group input:focus,
.input-group textarea:focus{
    border-color:#4f7df7;
}

textarea{
    height:140px;
    resize:none;
}

.full-width{
    margin-top:22px;
}

button{
    width:100%;
    margin-top:24px;
    border:none;
    height:54px;
    border-radius:40px;
    background:linear-gradient(90deg,#2d5bff,#7b3cff);
    color:#fff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-2px);
}

.note{
    margin-top:18px;
    text-align:center;
    color:#7d8698;
    font-size:13px;
    line-height:1.7;
}

/* Responsive */

@media(max-width:991px){

    .contact-wrapper{
        flex-direction:column;
    }

    .contact-info,
    .contact-form{
        width:100%;
    }

    .contact-top h2{
        font-size:42px;
    }
}

@media(max-width:600px){

    .form-grid{
        grid-template-columns:1fr;
    }

    .contact-top h2{
        font-size:34px;
    }

    .contact-info,
    .contact-form{
        padding:35px 25px;
    }
}

/*about us*/

/* SECTION */

.about-section{
    padding:60px 0;
    overflow:hidden;
    background: #f9fcff;
}

.container{
    max-width:1150px;
    margin:auto;
    padding:0 15px;
}

/* HEADING */

.about-heading{
    text-align:center;
    margin-bottom:70px;
}

.mini-title{
    display:inline-block;
    background:rgba(50,91,255,0.08);
    color:#355cff;
    font-size:14px;
    font-weight:600;
    padding:10px 22px;
    border-radius:50px;
    margin-bottom:20px;
    letter-spacing:1px;
}

.about-heading h2{
    font-size:68px;
    font-weight:800;
    color:#111b3e;
    line-height:1.1;
    margin-bottom:25px;
}

.about-heading h2 span{
    background:linear-gradient(90deg,#00bcd4,#355cff,#7d3cff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-heading p{
    max-width:720px;
    margin:auto;
    color:#7d879c;
    font-size:16px;
    line-height:1.9;
}

/* CARDS */

.about-cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    margin-bottom:80px;
}

.about-card{
    background:#fff;
    padding:45px;
    border-radius:28px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    border:1px solid #edf0f7;
    box-shadow:0 15px 40px rgba(0,0,0,0.04);
}

.about-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    left:0;
    top:0;
    background:linear-gradient(90deg,#355cff,#7d3cff);
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(53,92,255,0.12);
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#355cff,#7d3cff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
    margin-bottom:28px;
}

.about-card h3{
    font-size:30px;
    color:#111b3e;
    margin-bottom:18px;
    font-weight:700;
}

.about-card p{
    color:#7d879c;
    line-height:1.9;
    font-size:15px;
}

/* CORE VALUES */

.core-values h3{
    font-size:42px;
    font-weight:800;
    color:#111b3e;
    margin-bottom:35px;
    text-align:center;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-box{
    background:#fff;
    border-radius:25px;
    padding:40px 20px;
    text-align:center;
    transition:0.4s;
    border:1px solid #edf0f7;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.04);
}

.value-box::before{
    content:'';
    position:absolute;
    width:100%;
    height:0;
    left:0;
    bottom:0;
    background:linear-gradient(135deg,#355cff,#7d3cff);
    transition:0.4s;
    z-index:0;
}

.value-box:hover::before{
    height:100%;
}

.value-box span,
.value-box h4{
    position:relative;
    z-index:2;
}

.value-box span{
    font-size:42px;
    font-weight:800;
    color:#355cff;
    display:block;
    margin-bottom:10px;
    transition:0.4s;
}

.value-box h4{
    font-size:18px;
    font-weight:600;
    color:#111b3e;
    transition:0.4s;
}

.value-box:hover span,
.value-box:hover h4{
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:991px){
	.mg-nextgen-area .row{
		    flex-direction: column-reverse !important;
	}

    .about-heading h2{
        font-size:52px;
    }

    .about-cards{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){
	.mg-nextgen-area .row{
		    flex-direction: column-reverse !important;
	}

    .about-section{
        padding:70px 0;
    }

    .about-heading h2{
        font-size:40px;
    }

    .values-grid{
        grid-template-columns:1fr;
    }

    .about-card{
        padding:35px 25px;
    }
    .hero-btns{
      flex-wrap: inherit;  
    }
    .primary-btn{
        padding: 15px;
        border-radius: 10px;
    }
    
    .feature-box h5 {
    margin: 0;
    font-size: 20px;
    }
    
    .feature-box {
    background: #fff;
    border-radius: 5px;
    padding: 8px;
    min-width: auto;
    border: 1px solid #ededed;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .04);
}
.hero-features {
    display: flex;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.secondary-btn {
    padding: 15px;
    background: #fff;
    border: 1px solid #e7e7e7;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

}