﻿:root {
    --primary: #0D6EFD;
    --secondary: #14B8A6;
    --accent: #69C34C;
    --dark: #081B3D;
    --text: #64748B;
    --white: #fff;
    --light: #F5FBFF;
    --border: #E8EFF7;
    --radius: 20px;
    --shadow: 0 10px 35px rgba(0,0,0,.08);
    --transition: .3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Outfit',sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
}



/* ==========================
   FLOATING HEADER
========================== */

.lux-header {
    position: sticky;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 9999;
}
.menu-toggle{
    display:none;
    width:35px;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    height:3px;
    background:#0D6EFD;
    margin:7px 0;
    border-radius:10px;
}
@media(max-width:991px) {

    .menu-toggle {
        display: block;
    }

    .lux-navbar {
        position: relative;
    }
    .lux-menu li a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: .3s;
    }
    .lux-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #20C997;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0,0,0,.08);
        max-height: 0;
        overflow: hidden;
        transition: .4s;
    }

        .lux-nav.active {
            max-height: 500px;
            padding: 20px 0;
        }

    .lux-menu {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .lux-btn {
        display: none;
    }
}
.lux-navbar {
    height: 95px;
    padding: 0 25px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient( 334deg, #061b47, #0a4ea3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

/* ==========================
   LOGO
========================== */

.lux-logo img {
    height: 70px;
    display: block;
}

/* ==========================
   MENU
========================== */

.lux-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

    .lux-menu li {
        list-style: none;
        position: relative;
    }

        .lux-menu li a {
            color: #fff;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: .3s;
        }

            .lux-menu li a:hover {
                color: #20C997;
            }

    .lux-menu i {
        font-size: 12px;
    }

/* ==========================
   BUTTON
========================== */

.lux-btn {
    height: 56px;
    padding: 0 28px;
    border-radius: 50px;
    background: #fff;
    color: #081B3D;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    transition: .35s;
}

    .lux-btn:hover {
        background: #20C997;
        color: #fff;
        transform: translateY(-3px);
    }

/* ==========================
   DROPDOWN
========================== */

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 250px;
    padding: 15px;
    border-radius: 22px;
    background: rgba(8,27,61,.78);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s ease;
    z-index: 999;
}

    /* Arrow */

    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -8px;
        left: 30px;
        width: 16px;
        height: 16px;
        background: rgba(8,27,61,.78);
        border-left: 1px solid rgba(255,255,255,.10);
        border-top: 1px solid rgba(255,255,255,.10);
        transform: rotate(45deg);
    }

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items */

.dropdown-menu li {
    display: block;
}

    .dropdown-menu li:not(:last-child) {
        margin-bottom: 6px;
    }

    .dropdown-menu li a {
        display: block;
        padding: 14px 18px;
        border-radius: 14px;
        color: #fff;
        transition: .3s;
    }

        .dropdown-menu li a:hover {
            background: linear-gradient( 135deg, rgba(32,201,151,.15), rgba(13,110,253,.15) );
            color: #20C997;
            padding-left: 25px;
        }

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:1200px) {

    .lux-menu {
        gap: 20px;
    }
}

@media(max-width:991px) {

   

    .lux-menu {
        width: 100%;
        justify-content: center;
        margin: 20px 0;
        flex-wrap: wrap;
    }

    .lux-btn {
        margin: auto;
    }
}

@media(max-width:576px) {

    .lux-logo img {
        height: 70px;
    }

    .lux-menu {
        gap: 15px;
    }

        .lux-menu li a {
            font-size: 14px;
        }

    .lux-btn {
        width: 100%;
        justify-content: center;
    }
}
/*=========================
    HERO SECTION
=========================*/


.hero-particles {
    z-index: 2;
}
.hero-v2-image img {
    animation: doctorFloat 5s ease-in-out infinite, glowDoctor 4s ease-in-out infinite;
}

@keyframes glowDoctor {

    0%,100% {
        filter: drop-shadow(0 0 15px rgba(32,201,151,.25));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(32,201,151,.55));
    }
}

.floating-box {
    animation: floatingCard 4s ease-in-out infinite;
}

.box-2 {
    animation-delay: 2s;
}

@keyframes floatingCard {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}
.hero-main-btn,
.hero-second-btn {
    transition: .4s;
}

    .hero-main-btn:hover,
    .hero-second-btn:hover {
        transform: translateY(-6px) scale(1.05);
    }
.doctor-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(32,201,151,.35), transparent 70% );
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% {
        transform: scale(1);
        opacity: .5;
    }

    50% {
        transform: scale(1.08);
        opacity: .8;
    }
}
.hero-v2-image img {
    max-width: 700px;
}
.hero-v2 {
    position: relative;
    overflow: hidden;
    margin-top: -115px;
    padding: 125px 0 0;
    background: linear-gradient( 135deg, #051937 0%, #082A5A 100% );
}

.hero-v2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    padding: 50px 0 0;
}

.hero-label {
    display: inline-block;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    padding: 12px 22px;
    border-radius: 50px;
    color: #22D3EE;
    margin-bottom: 25px;
}

.hero-v2-content h1 {
    font-size: 49px;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

    .hero-v2-content h1 span {
        display: block;
        color: #20C997;
    }

.hero-v2-content p {
    color: #D8E8FF;
    font-size: 18px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 35px;
}

.hero-v2-btns {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-main-btn {
    padding: 18px 35px;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
}

.hero-second-btn {
    padding: 18px 35px;
    border-radius: 50px;
    border: 2px solid rgba(255,255,255,.15);
    color: #fff;
}

.hero-features {
    display: flex;
    gap: 25px;
}
.hero-main-btn {
    position: relative;
    overflow: hidden;
}

    .hero-main-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,.25);
        transition: .5s;
    }

    .hero-main-btn:hover::before {
        left: 100%;
    }
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

    .hero-particles span {
        position: absolute;
        display: block;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(5px);
        animation: particleMove linear infinite;
    }

        /* Individual particles */

        .hero-particles span:nth-child(1) {
            width: 120px;
            height: 120px;
            left: 10%;
            animation-duration: 18s;
        }

        .hero-particles span:nth-child(2) {
            width: 70px;
            height: 70px;
            left: 25%;
            animation-duration: 15s;
            animation-delay: 2s;
        }

        .hero-particles span:nth-child(3) {
            width: 150px;
            height: 150px;
            left: 45%;
            animation-duration: 20s;
        }

        .hero-particles span:nth-child(4) {
            width: 90px;
            height: 90px;
            left: 65%;
            animation-duration: 16s;
        }

        .hero-particles span:nth-child(5) {
            width: 130px;
            height: 130px;
            left: 80%;
            animation-duration: 22s;
        }

        .hero-particles span:nth-child(6) {
            width: 60px;
            height: 60px;
            left: 90%;
            animation-duration: 14s;
        }
/*=============================
    HERO HIGHLIGHTS
==============================*/

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2,minmax(220px,1fr));
    gap: 18px;
    margin-top: 35px;
    margin-bottom: 38px;
}

.highlight-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    transition: .45s ease;
}

    .highlight-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(32,201,151,.10), rgba(13,110,253,.10));
        opacity: 0;
        transition: .45s;
    }

    .highlight-item:hover::before {
        opacity: 1;
    }

    .highlight-item:hover {
        transform: translateY(-8px);
        border-color: rgba(32,201,151,.45);
        box-shadow: 0 20px 45px rgba(13,110,253,.18), 0 0 25px rgba(32,201,151,.18);
    }

    .highlight-item i {
        position: relative;
        z-index: 2;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: linear-gradient(135deg,#20C997,#0D6EFD);
        color: #fff;
        font-size: 21px;
        box-shadow: 0 10px 25px rgba(13,110,253,.35);
    }

    .highlight-item span {
        position: relative;
        z-index: 2;
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.5;
    }

    /* icon animation */

    .highlight-item:hover i {
        transform: rotate(10deg) scale(1.08);
        transition: .4s;
    }

/*=============================
        Responsive
==============================*/

@media(max-width:991px) {

    .hero-highlights {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .hero-highlights {
        gap: 14px;
    }

    .highlight-item {
        padding: 16px 18px;
    }

        .highlight-item i {
            width: 46px;
            height: 46px;
            font-size: 18px;
        }

        .highlight-item span {
            font-size: 15px;
        }
}
@keyframes particleMove {

    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translateY(-150px) rotate(360deg);
        opacity: 0;
    }
}
.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, rgba(13,110,253,.15), rgba(32,201,151,.15), rgba(13,110,253,.15) );
    background-size: 300% 300%;
    animation: gradientMove 10s ease infinite;
    z-index: 0;
}

@keyframes gradientMove {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.feature-box {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 20px;
    min-width: 130px;
}

    .feature-box h3 {
        color: #fff;
        font-size: 30px;
    }

    .feature-box span {
        color: #D8E8FF;
    }

.hero-v2-image {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-top:60px;
}

.doctor-circle {
    position: absolute;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(32,201,151,.35), transparent 70% );
}

.hero-v2-image img {
    position: relative;
    display: block;
    z-index: 2;
    width: 100%;
    max-width: 370px;
}

.floating-box {
    position: absolute;
    z-index: 3;
    padding: 15px 22px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,.10);
}

.box-1 {
    top: 15%;
    left: 0;
}

.box-2 {
    bottom: 15%;
    right: 0;
}

.blur-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #20C997;
    filter: blur(120px);
    opacity: .15;
    top: -100px;
    left: -100px;
}

.blur-2 {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: #0D6EFD;
    filter: blur(120px);
    opacity: .15;
    right: -100px;
    bottom: -100px;
}
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Sticky Header */

.sticky-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:9999;
    animation:slideDown .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

@keyframes slideDown{

    from{
        transform:translateY(-100%);
    }

    to{
        transform:translateY(0);
    }
}


/* Scroll Animation */

.fade-up{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}
/* =========================
   ABOUT SECTION
========================= */

.about-section {
    padding: 60px 0;
    background: #fff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 25px 60px rgba(0,0,0,.08);
    }

.experience-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: linear-gradient(135deg,#20C997,#0D6EFD);
    color: #fff;
    padding: 25px 35px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(13,110,253,.25);
}

    .experience-card h3 {
        font-size: 40px;
        margin-bottom: 5px;
    }

.section-tag {
    display: inline-block;
    background: #E8FFF6;
    color: #20C997;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-content h2 {
    font-size: 58px;
    line-height: 1.2;
    color: #081B3D;
    margin-bottom: 25px;
}

    .about-content h2 span {
        display: block;
        color: #20C997;
    }

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748B;
    margin-bottom: 20px;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e9eef7;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(13,110,253,.05);
}

    .feature-item:hover {
        transform: translateY(-8px);
        border-color: #20C997;
        box-shadow: 0 20px 45px rgba(13,110,253,.10);
    }

.feature-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg,#0A4EA3,#20C997);
    color: #fff;
    font-size: 22px;
}

.feature-item h4 {
    margin: 0;
    color: #081B3D;
    font-size: 19px;
    font-weight: 700;
}

.feature-item p {
    margin-top: 5px;
    color: #64748B;
    font-size: 14px;
    line-height: 1.5;
}

@media(max-width:768px) {

    .about-features {
        grid-template-columns: 1fr;
    }
}
/*
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 35px 0;
}

.feature-item {
    background: #F8FBFF;
    padding: 18px 20px;
    border-radius: 15px;
    font-weight: 600;
    color: #081B3D;
    border: 1px solid #EAF1F8;
}*/

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    height: 58px;
    padding: 0 35px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    font-weight: 600;
}
/*.about-section {
    margin-top: -1px;
    border-radius: 50px 50px 0 0;
}*/
/* =========================
   SERVICES SECTION
========================= */
.medical-services-bento {
    padding: 60px 0;
    background: #f8fafc;
}
.section-heading {
    margin-bottom: 60px;
    text-align:center;
}

.section-tag {
    display: inline-block;
    padding: 12px 28px;
    background: #e8f8f1;
    color: #22c58b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 50px;
    margin-bottom: 20px;

}

.section-title {
    font-size: 42px;
    line-height: 1.2;
    color: #081B3D;
    margin-bottom: 25px;
    text-align: center;
}

    .section-title span {
        color: #22c58b;
    }

@media(max-width:991px) {

    .section-title {
        font-size: 46px;
    }
}

@media(max-width:767px) {

    .section-heading {
        margin-bottom: 40px;
    }

    .section-tag {
        font-size: 14px;
        padding: 10px 22px;
    }

    .section-title {
        font-size: 34px;
        line-height: 1.25;
    }
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.wide-card {
    grid-column: span 2;
    min-height: 250px;
}

.bento-card {
    background: #fff;
    border-radius: 30px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
    transition: .4s;
}

    .bento-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #0A4EA3, #18c5d8 );
        transform: scaleX(0);
        transform-origin: left;
        transition: .4s;
    }

    .bento-card:hover::before {
        transform: scaleX(1);
    }

    .bento-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(10,78,163,.12);
    }

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #0A4EA3, #3b82f6 );
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .service-icon i {
        color: #fff;
        font-size: 30px;
    }

.service-number {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(10,78,163,.05);
}

.bento-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: #0b163f;
    margin-bottom: 12px;
}

.bento-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

    .service-highlight span {
        padding: 10px 16px;
        background: #eef4ff;
        color: #0A4EA3;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
    }

.bento-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    color: #0A4EA3;
    font-weight: 700;
    text-decoration: none;
}

    .bento-card a i {
        transition: .3s;
    }

.bento-card:hover a i {
    transform: translateX(5px);
}

@media(max-width:991px) {

    .bento-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {

    .medical-services-bento {
        padding: 80px 0;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .large-card,
    .wide-card {
        grid-column: auto;
        grid-row: auto;
        min-height: auto;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .bento-card {
        padding: 25px;
    }

    .service-number {
        font-size: 60px;
    }

    .bento-card h3 {
        font-size: 24px;
    }
}

/* =========================
   lab test SECTION
========================= */
.lab-test-section {
    padding: 60px 0;
    background: linear-gradient( 180deg, #ffffff 0%, #f8fafc 100% );
}
.lab-service-item p {
    margin-top: 8px;
    color: #64748b;
    font-size: 14px;
}
.lab-test-wrapper {
    margin-top: 50px;
}

.lab-main-card {
    background: linear-gradient( 135deg, #0A4EA3, #1e40af );
    border-radius: 35px;
    padding: 60px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

    .lab-main-card::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        right: -80px;
        top: -80px;
    }

.lab-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

    .lab-content h3 {
        color: #fff;
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .lab-content p {
        color: rgba(255,255,255,.85);
        font-size: 18px;
        line-height: 1.9;
        margin-bottom: 30px;
    }

.lab-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #0A4EA3;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
}

.lab-services {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.lab-service-item {
    background: #fff;
    border-radius: 28px;
    padding: 35px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
    transition: .4s ease;
}

    .lab-service-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient( 90deg, #22c58b, #0A4EA3 );
        transform: scaleX(0);
        transition: .4s;
    }

    .lab-service-item:hover::before {
        transform: scaleX(1);
    }

    .lab-service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(10,78,163,.12);
    }
    .lab-service-item i {
        width: 75px;
        height: 75px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        border-radius: 22px;
        background: linear-gradient( 135deg, #22c58b, #16a34a );
        color: #fff;
        font-size: 30px;
        box-shadow: 0 15px 35px rgba(34,197,139,.25);
        transition: .4s;
    }

    .lab-service-item:hover i {
        transform: rotateY(180deg);
    }

    .lab-service-item span {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: #081B3D;
    }

@media(max-width:991px) {

    .lab-services {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:767px) {

    .lab-main-card {
        padding: 35px 25px;
    }

    .lab-content h3 {
        font-size: 30px;
    }

    .lab-services {
        grid-template-columns: 1fr;
    }
}

/* =========================
  health-banner SECTION
========================= */
.health-banner {
    padding: 110px 0;
    background: linear-gradient( rgba(8,27,61,.75), rgba(8,27,61,.75) ), url('Image/website/home(banner_1).png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 40px;
    margin: 0 30px;
    overflow: hidden;
}

.health-banner-content {
    max-width: 750px;
}

.banner-tag {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(255,255,255,.15);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.health-banner h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

    .health-banner h2 span {
        color: #22c58b;
    }

.health-banner p {
    color: rgba(255,255,255,.85);
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.banner-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-btn-primary {
    padding: 16px 35px;
    background: #22c58b;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

    .banner-btn-primary:hover {
        background: #fff;
        color: #081B3D;
    }

.banner-btn-outline {
    padding: 16px 35px;
    border: 1px solid rgba(255,255,255,.4);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

    .banner-btn-outline:hover {
        background: #fff;
        color: #081B3D;
    }

@media(max-width:767px) {

    .health-banner {
        padding: 80px 14px;
        border-radius: 25px;
    }

        .health-banner h2 {
            font-size: 38px;
        }

        .health-banner p {
            font-size: 14px;
        }
}
/*==================================
 PHARMACY DEALS SECTION
==================================*/

.pharmacy-deals-section {
    padding: 60px 0;
   
}

/*==================================
 HEADER
==================================*/

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-all-btn {
    color: #081B3D;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .view-all-btn:hover {
        color: #22c58b;
    }

/*==================================
 GRID
==================================*/

.deals-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/*==================================
 CARD
==================================*/

.deal-card {
    background: #fff;
    border-radius: 28px;
    padding: 18px;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
    box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

    .deal-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 60px rgba(10,78,163,.12);
    }

/*==================================
 DISCOUNT BADGE
==================================*/

.discount-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: linear-gradient( 135deg, #22c58b, #16a34a );
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
}

/*==================================
 IMAGE
==================================*/
.deal-image {
    background: #fff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}



/*==================================
 CONTENT
==================================*/

.deal-content {
    padding: 5px;
}

    .deal-content h4 {
        font-size: 22px;
        line-height: 1.4;
        font-weight: 700;
        color: #081B3D;
        margin-bottom: 15px;
    }

/*==================================
 META
==================================*/

.deal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

    .deal-meta span:first-child {
        color: #22c58b;
        font-size: 13px;
        font-weight: 700;
    }

    .deal-meta span:last-child {
        color: #94a3b8;
        font-size: 14px;
    }

/*==================================
 PRICE
==================================*/

.deal-price {
    font-size: 22px;
    font-weight: 800;
    color: #081B3D;
    margin-bottom: 10px;
}

/*==================================
 ACTION
==================================*/

.deal-action {
    display: flex;
    align-items: center;
}

.cart-btn {
    flex: 1;
    text-align: center;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: .4s;
}

    .cart-btn:hover {
        color: #fff;
        transform: translateY(-2px);
    }

.deal-action button {
    width: 50px;
    height: 50px;
    margin-left: 10px;
    border: none;
    outline: none;
    border-radius: 50%;
    background: #f8fafc;
    color: #081B3D;
    cursor: pointer;
    transition: .3s;
}

    .deal-action button:hover {
        background: #22c58b;
        color: #fff;
    }

    .deal-action button i {
        font-size: 18px;
    }

/*==================================
 RESPONSIVE
==================================*/

@media(max-width:1200px) {

    .deals-grid {
        grid-template-columns: repeat(3,1fr);
    }
}

@media(max-width:991px) {

    .deals-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .pharmacy-deals-section {
        padding: 80px 0;
    }
}

@media(max-width:767px) {

    .deals-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .deals-grid {
        grid-template-columns: 1fr;
    }

    .deal-content h4 {
        font-size: 20px;
        min-height: auto;
    }

    .deal-price {
        font-size: 26px;
    }
}
.health-highlights {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #071c4d 0%, #0A4EA3 100% );
}
    .health-highlights::before {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(39,217,210,.08);
        top: -150px;
        left: -100px;
    }

    .health-highlights::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.04);
        right: -120px;
        bottom: -120px;
    }
    .health-highlights .section-title {
        color: #fff;
    }

        .health-highlights .section-title span {
            color: #27d9d2;
        }

    .health-highlights .section-tag {
        background: rgba(39,217,210,.12);
        color: #27d9d2;
    }
.highlight-card {
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    transition: .4s;
}

    .highlight-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,.12);
    }

    .highlight-card i {
        font-size: 42px;
        color: #27d9d2;
        margin-bottom: 15px;
    }

    .highlight-card h4 {
        color: #fff;
        font-size: 32px;
        margin-bottom: 8px;
    }

    .highlight-card p {
        color: rgba(255,255,255,.8);
    }
.highlight-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 25px;
    align-items: center;
}
.center-circle {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #27d9d2, #22c58b );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #fff;
    box-shadow: 0 0 40px rgba(39,217,210,.35);
}

    .center-circle h3 {
        font-size: 58px;
        margin: 0;
    }

    .center-circle span {
        font-size: 18px;
    }

    .premium-testimonials {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.premium-testimonials::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(34,197,139,.08);
    border-radius: 50%;
    top: -150px;
    left: -150px;
}

.premium-testimonials::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(10,78,163,.06);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,.5);

    border-radius: 30px;

    padding: 40px;

    position: relative;

    transition: .4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.testimonial-card:hover {
    transform: translateY(-12px);
}

.active-card {
    background: linear-gradient(
        135deg,
        #0A4EA3,
        #1d4ed8
    );

    color: #fff;

    transform: translateY(-20px);
}

.quote-icon {
    width: 70px;
    height: 70px;

    border-radius: 20px;

    background: rgba(34,197,139,.12);

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;
}

.active-card .quote-icon {
    background: rgba(255,255,255,.15);
}

.quote-icon i {
    font-size: 28px;
    color: #22c58b;
}

.active-card .quote-icon i {
    color: #fff;
}

.rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-card p {
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 30px;
}

.active-card p {
    color: rgba(255,255,255,.9);
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    margin: 0;
    font-size: 18px;
    color: #081B3D;
}

.client-info span {
    font-size: 14px;
    color: #64748b;
}

.active-card h4,
.active-card span {
    color: #fff;
}

@media(max-width:991px){

    .testimonial-grid{
        grid-template-columns:1fr;
    }

    .active-card{
        transform:none;
    }
}

/*=========================
 FAQ SECTION
=========================*/

.premium-faq-section {
    padding: 60px 0;
    background: #f8fafc;
}

/*=========================
 GRID
=========================*/

.faq-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: start;
}

/*=========================
 LEFT SIDE
=========================*/
.faqsection-title{
    font-size:42px;
}
.faq-content {
    background: linear-gradient( 135deg, #071c4d, #0A4EA3 );
    padding: 30px;
    border-radius: 30px;
    position: sticky;
    top: 60px;
}

    .faq-content .section-tag {
        background: rgba(255,255,255,.12);
        color: #fff;
    }

    .faq-content .faqsection-title {
        color: #fff;
        margin-top: 20px;
    }

    .faq-content .faqsection-title span {
        color: #27d9d2;
    }

    .faq-content p {
        color: rgba(255,255,255,.8);
        line-height: 1.9;
        margin-top: 20px;
    }

/*=========================
 SUPPORT CARD
=========================*/

.faq-support-card {
    margin-top: 35px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
}

.support-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(39,217,210,.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .support-icon i {
        color: #27d9d2;
        font-size: 28px;
    }

.support-content h4 {
    color: #fff;
    margin-bottom: 8px;
}

.support-content p {
    margin: 0;
    font-size: 14px;
}

/*=========================
 BUTTON
=========================*/

.faq-contact-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background: #27d9d2;
    color: #081B3D;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: .4s;
}

    .faq-contact-btn:hover {
        background: #fff;
        color: #081B3D;
    }

/*=========================
 RIGHT SIDE
=========================*/

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/*=========================
 FAQ ITEM
=========================*/

.faq-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
}

    .faq-item.active {
        box-shadow: 0 15px 40px rgba(10,78,163,.08);
    }

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 28px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #081B3D;
}

    .faq-question span {
        font-size: 28px;
        color: #27d9d2;
    }

.faq-answer {
    padding: 0 30px 28px;
    color: #64748b;
    line-height: 1.9;
}

/*=========================
 HOVER
=========================*/

.faq-item:hover {
    transform: translateY(-3px);
}

/*=========================
 RESPONSIVE
=========================*/

@media(max-width:991px) {

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .faq-content {
        position: static;
    }
}

@media(max-width:767px) {

    .premium-faq-section {
        padding: 60px 0;
    }

    .faq-content {
        padding: 30px;
    }

    .faq-question {
        font-size: 16px;
        padding: 22px;
    }

    .faq-answer {
        padding: 0 22px 22px;
    }
}


.cta-box {
    position: relative;
    overflow: hidden;
    background: linear-gradient( 135deg, #071c4d, #0A4EA3 );
    border-radius: 40px;
    padding: 80px;
    text-align: center;
}

    .cta-box::before {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        border-radius: 50%;
        background: rgba(255,255,255,.05);
        top: -120px;
        left: -120px;
    }

    .cta-box::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(39,217,210,.08);
        bottom: -100px;
        right: -100px;
    }

.cta-tag {
    display: inline-block;
    padding: 12px 26px;
    border-radius: 50px;
    background: rgba(255,255,255,.12);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
}

.cta-box h2 {
    font-size: 56px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
}

    .cta-box h2 span {
        color: #27d9d2;
    }

.cta-box p {
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255,255,255,.85);
    line-height: 1.9;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    padding: 16px 34px;
    background: #27d9d2;
    color: #081B3D;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

    .cta-btn-primary:hover {
        background: #fff;
        color: #081B3D;
    }

.cta-btn-secondary {
    padding: 16px 34px;
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .4s;
}

    .cta-btn-secondary:hover {
        background: #fff;
        color: #081B3D;
    }

@media(max-width:767px) {

    .cta-box {
        padding: 50px 25px;
        border-radius: 25px;
    }

        .cta-box h2 {
            font-size: 36px;
        }

        .cta-box p {
            font-size: 16px;
        }
}

.premium-footer {
    background: #f8fafc;
}

.footer-box {
    background: linear-gradient( 135deg, #061B47, #0A4EA3 );
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,.15);
}

/* TOP */

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 60px;
}
.footer-cta h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-cta p {
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    background: #20C997;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

    .footer-book-btn:hover {
        transform: translateY(-3px);
        background: #fff;
        color: #081B3D;
    }
.footer-brand img {
    height: 70px;
}

.footer-brand p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: .3s;
}

    .footer-links a:hover {
        color: #20C997;
        padding-left: 6px;
    }

/* NEWSLETTER */

.footer-newsletter p {
    color: rgba(255,255,255,.75);
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: flex;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.15);
}

.footer-newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px;
    background: transparent;
    color: #fff;
}

    .footer-newsletter input::placeholder {
        color: rgba(255,255,255,.55);
    }

.footer-newsletter button {
    width: 60px;
    border: none;
    background: #20C997;
    color: #fff;
    cursor: pointer;
}

/* CONTACT STRIP */

.footer-contact-strip {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    padding: 35px 60px;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.04);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .contact-item .icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .contact-item .icon i {
            color: #20C997;
        }

    .contact-item h5 {
        color: #fff;
        margin-bottom: 5px;
    }

    .contact-item span {
        color: rgba(255,255,255,.65);
    }

/* SOCIAL */

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

    .footer-social a {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #20C997;
        }

/* BOTTOM */

.footer-bottom {
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom span {
        color: rgba(255,255,255,.7);
    }

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

    .footer-bottom-links a {
        color: rgba(255,255,255,.7);
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            color: #20C997;
        }

/* RESPONSIVE */

@media(max-width:991px) {

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-contact-strip {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

@media(max-width:767px) {

    .footer-top {
        grid-template-columns: 1fr;
        padding: 40px 25px;
    }

    .footer-contact-strip {
        grid-template-columns: 1fr;
        padding: 30px 25px;
    }

    .footer-bottom {
        padding: 25px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* ==================================
   GLOBAL RESPONSIVE
================================== */

@media (max-width:1200px) {

    .hero-v2-content h1 {
        font-size: 49px;
    }

    .about-wrapper {
        gap: 40px;
    }

    .highlight-wrapper {
        grid-template-columns: repeat(3,1fr);
    }
}

/* ==================================
   TABLET
================================== */

@media (max-width:991px) {

    .container {
        padding: 0 20px;
    }

    /* Hero */

    .hero-v2 {
        padding: 120px 0 0;
    }

    .hero-v2-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-v2-content {
        padding-bottom: 0;
    }

        .hero-v2-content h1 {
            font-size: 49px;
        }

        .hero-v2-content p {
            margin: auto auto 30px;
        }

    .hero-v2-btns {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-v2-image {
        margin-top: 0;
    }

        .hero-v2-image img {
            max-width: 420px;
            margin: auto;
        }

    .box-1 {
        left: 10%;
    }

    .box-2 {
        right: 10%;
    }

    /* About */

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    /* Highlight */

    .highlight-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .center-circle {
        width: 180px;
        height: 180px;
    }

        .center-circle h3 {
            font-size: 42px;
        }
}
@media (max-width:768px) {

    /* Header */

    .lux-header {
        top: 10px;
    }

    .lux-navbar {
        padding: 15px;
        border-radius: 20px;
    }

    .lux-menu {
        flex-direction: column;
        gap: 12px;
    }

    .lux-logo img {
        height: 75px;
    }

    .lux-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero */

    .hero-v2 {
        padding: 100px 0 0;
    }

    .hero-v2-content h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-v2-content p {
        font-size: 16px;
    }

    .hero-v2-btns {
        flex-direction: column;
    }

    .hero-main-btn,
    .hero-second-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-v2-image img {
        max-width: 280px;
    }

    .doctor-circle {
        width: 280px;
        height: 280px;
    }

    .floating-box {
        font-size: 12px;
        padding: 10px 15px;
    }

    .box-1 {
        top: 5%;
        left: 0;
    }

    .box-2 {
        bottom: 10%;
        right: 0;
    }

    /* About */

    .about-section {
        padding: 70px 0;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    /* Services */

    .section-title {
        font-size: 32px;
    }

    /* Highlights */

    .highlight-wrapper {
        grid-template-columns: 1fr;
    }

    .center-circle {
        margin: 30px auto;
    }

    /* CTA */

    .cta-box h2 {
        font-size: 32px;
    }
}
@media(max-width:991px) {


    .lux-logo img {
        height: 80px;
    }

    .lux-menu {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
        margin: 20px 0;
    }

    .lux-btn {
        margin-top: 10px;
    }
}

@media(max-width:767px) {

    .lux-menu {
        flex-direction: column;
        gap: 12px;
    }

    .lux-btn {
        width: 100%;
        justify-content: center;
    }

    .lux-navbar {
        border-radius: 20px;
    }
}
@media(max-width:991px) {

    .hero-v2-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-v2-content {
        padding-bottom: 30px;
    }

        .hero-v2-content h1 {
            font-size: 49px;
        }

        .hero-v2-content p {
            max-width: 100%;
        }

    .hero-v2-btns {
        justify-content: center;
    }

    .hero-v2-image {
        margin-top: 0;
    }

        .hero-v2-image img {
            max-width: 350px;
            margin: auto;
        }

    .doctor-circle {
        width: 350px;
        height: 350px;
    }

    .box-1 {
        left: 10%;
    }

    .box-2 {
        right: 10%;
    }
}

@media(max-width:767px) {

    .hero-v2 {
        padding-top: 120px;
    }

    .hero-v2-content h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-v2-content p {
        font-size: 15px;
    }

    .hero-v2-btns {
        flex-direction: column;
    }

    .hero-main-btn,
    .hero-second-btn {
        width: 100%;
        text-align: center;
    }

    .hero-v2-image img {
        max-width: 250px;
    }

    .doctor-circle {
        width: 250px;
        height: 250px;
    }

    .floating-box {
        display: none;
    }
}
@media(max-width:991px) {

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content {
        text-align: center;
    }

        .about-content h2 {
            font-size: 36px;
        }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .experience-card {
        right: 20px;
    }
}

@media(max-width:767px) {

    .about-content h2 {
        font-size: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 20px;
        width: 100%;
    }
}
@media(max-width:991px) {

    .highlight-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .center-circle {
        width: 180px;
        height: 180px;
    }

        .center-circle h3 {
            font-size: 42px;
        }
}

@media(max-width:767px) {

    .highlight-wrapper {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 25px;
    }

    .center-circle {
        width: 160px;
        height: 160px;
        margin: auto;
    }

        .center-circle h3 {
            font-size: 36px;
        }

        .center-circle span {
            font-size: 14px;
        }
}
/* ==========================
   MOBILE HEADER FIX
========================== */

@media (max-width:991px) {

    .lux-navbar {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }

    .lux-logo {
        display: flex;
        align-items: center;
    }

        .lux-logo img {
            height: 60px;
            width: auto;
        }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        margin-left: auto;
    }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 20px;
            margin: 0;
        }

    .lux-btn {
        display: none;
    }
}
/* ==========================
   FOOTER RESPONSIVE
========================== */

@media (max-width:991px) {

    .footer-top {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 30px;
    }

    .footer-contact-strip {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ==========================
   MOBILE FOOTER
========================== */

@media (max-width:767px) {


    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand img {
        margin: 0 auto 20px;
    }

    .footer-links ul {
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact-strip {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

        .contact-item .icon {
            margin-bottom: 10px;
        }

    .footer-social {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-book-btn {
        width: 100%;
        justify-content: center;
    }
}




/*=========================================
  HEALTH INSIGHTS SECTION
=========================================*/

.health-insights {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background: linear-gradient(180deg,#f8fbff 0%,#eef6ff 100%);
}

    /* Background Glow Effects */

    .health-insights::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(32,201,151,.12);
        border-radius: 50%;
        filter: blur(120px);
        top: -150px;
        left: -100px;
        animation: floatGlow 12s ease-in-out infinite;
    }

    .health-insights::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(13,110,253,.10);
        border-radius: 50%;
        filter: blur(120px);
        bottom: -150px;
        right: -100px;
        animation: floatGlow2 14s ease-in-out infinite;
    }

@keyframes floatGlow {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-60px);
    }
}

@keyframes floatGlow2 {

    0%,100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }
}

.health-insights .container {
    position: relative;
    z-index: 2;
}

/*=========================================
  HEADER
=========================================*/

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 58px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-top: 10px;
}

    .section-title span {
        background: linear-gradient(90deg,#0D6EFD,#20C997);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.view-all-btn {
    padding: 16px 28px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    font-weight: 600;
    transition: .4s;
}

    .view-all-btn:hover {
        background: linear-gradient(135deg,#0D6EFD,#20C997);
        transform: translateY(-3px);
    }

/*=========================================
  GRID
=========================================*/

.insights-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 25px;
}

.right-column {
    display: grid;
    gap: 22px;
}

/*=========================================
  CARD
=========================================*/

.insight-card {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(180deg,#0d4c91,#083a70);
    border: 2px solid rgba(255,255,255,.2);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    transition: .5s ease;
}

    .insight-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -120%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255,255,255,.15), transparent );
        transition: .8s;
        z-index: 5;
    }

    .insight-card:hover::before {
        left: 120%;
    }

    .insight-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 70px rgba(13,110,253,.25);
    }

/*=========================================
  IMAGE
=========================================*/

.card-image {
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        display: block;
        transition: 1s ease;
    }

.insight-card:hover img {
    transform: scale(1.08);
}

.large-card .card-image img {
    height: 520px;
    object-fit: cover;
}

.right-column .card-image img {
    height: 220px;
    object-fit: cover;
}

/*=========================================
  CONTENT
=========================================*/

.card-content {
    padding: 28px;
    color: #fff;
}

.card-tag {
    display: inline-block;
    background: #fff;
    color: #0D6EFD;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.card-content h3 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.8;
    opacity: .95;
}

/* Right Side Cards */

.right-column .card-content h3 {
    font-size: 30px;
}

/*=========================================
  HORIZONTAL CARD
=========================================*/

.horizontal-card {
    display: grid;
    grid-template-columns: 240px 1fr;
}

    .horizontal-card .card-image img {
        height: 100%;
        object-fit: cover;
    }

    .horizontal-card .card-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .horizontal-card h3 {
        font-size: 28px !important;
    }

/*=========================================
  FADE ANIMATION
=========================================*/

.fade-item {
    opacity: 0;
    transform: translateY(70px);
    transition: all .8s ease;
}

    .fade-item.show {
        opacity: 1;
        transform: translateY(0);
    }

/*=========================================
  RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .insights-grid {
        grid-template-columns: 1fr;
    }

    .horizontal-card {
        grid-template-columns: 1fr;
    }

    .large-card .card-image img {
        height: 350px;
    }
}

@media(max-width:767px) {

    .deals-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-title {
        font-size: 38px;
    }

    .card-content h3 {
        font-size: 24px;
    }

    .right-column .card-content h3 {
        font-size: 20px;
    }

    .horizontal-card h3 {
        font-size: 20px !important;
    }

    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}

/*=========================================
        DEVORIX BENTO SECTION
=========================================*/

.dx-bento {
    position: relative;
    padding: 120px 0;
    background: #fff;
    overflow: hidden;
}

    .dx-bento::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        top: -180px;
        left: -180px;
        border-radius: 50%;
        background: rgba(13,110,253,.06);
        filter: blur(80px);
    }

    .dx-bento::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        bottom: -150px;
        right: -150px;
        border-radius: 50%;
        background: rgba(32,201,151,.07);
        filter: blur(80px);
    }

/*===========================*/

.dx-bento-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    margin-top: 70px;
}

/*===========================*/

.dx-bento-card {
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid #EAF2FF;
    box-shadow: 0 18px 45px rgba(13,110,253,.08);
    transition: .45s;
}

    .dx-bento-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(13,110,253,.05), rgba(32,201,151,.05));
        opacity: 0;
        transition: .45s;
    }

    .dx-bento-card:hover {
        transform: translateY(-10px);
        border-color: #20C997;
        box-shadow: 0 25px 60px rgba(13,110,253,.16);
    }

        .dx-bento-card:hover::before {
            opacity: 1;
        }

/*===========================*/

.dx-wide-card {
    grid-column: 1/-1;
    text-align: center;
    padding: 55px;
}

.dx-bottom-card {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/*===========================*/

.dx-bento-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg,#0D6EFD,#20C997);
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: .4s;
}

.dx-wide-card .dx-bento-icon {
    margin: auto;
    margin-bottom: 25px;
}

.dx-bento-card:hover .dx-bento-icon {
    transform: rotate(-8deg) scale(1.08);
}

/*===========================*/

.dx-bento-card h3 {
    position: relative;
    z-index: 2;
    font-size: 32px;
    color: #081B3D;
    margin-bottom: 18px;
    font-weight: 700;
}

.dx-bento-card p {
    position: relative;
    z-index: 2;
    color: #64748B;
    line-height: 30px;
    font-size: 16px;
}

/*===========================*/

.dx-bottom-left,
.dx-bottom-right {
    position: relative;
    padding: 10px;
}

/*===========================*/

.dx-bento-card::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    right: -60px;
    top: -60px;
    background: linear-gradient(90deg,#0D6EFD,#20C997);
    opacity: .07;
    transition: .5s;
}

.dx-bento-card:hover::after {
    transform: scale(1.35);
}

/*===========================*/

@keyframes dxFloat {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.dx-bento-icon {
    animation: dxFloat 4s ease-in-out infinite;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:1199px) {

    .dx-bento-card {
        padding: 35px;
    }

        .dx-bento-card h3 {
            font-size: 28px;
        }
}

/*=============================*/

@media(max-width:991px) {

    .dx-bento-grid {
        grid-template-columns: 1fr;
    }

    .dx-wide-card {
        grid-column: auto;
    }

    .dx-bottom-card {
        grid-column: auto;
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/*=============================*/

@media(max-width:767px) {

    .dx-bento {
        padding: 80px 0;
    }

    .dx-bento-grid {
        margin-top: 45px;
        gap: 20px;
    }

    .dx-bento-card {
        padding: 28px;
        border-radius: 22px;
    }

    .dx-bento-icon {
        width: 64px;
        height: 64px;
        font-size: 24px;
        border-radius: 18px;
        margin-bottom: 18px;
    }

    .dx-bento-card h3 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .dx-bento-card p {
        font-size: 14px;
        line-height: 25px;
    }
}

/*=============================*/

@media(max-width:480px) {

    .dx-bento-card {
        padding: 22px;
    }

    .dx-bento-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .dx-bento-card h3 {
        font-size: 20px;
    }

    .dx-bento-card p {
        font-size: 13px;
        line-height: 22px;
    }
}