/* =========================================
   SPECIALITIES SECTION
========================================= */

.specialities-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f7fbff;
}

/* Decorative circles */

.specialities-decoration {
    position: absolute;
    border: 1px solid rgba(38, 112, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.decoration-one {
    width: 260px;
    height: 260px;
    left: -150px;
    top: 120px;
}

.decoration-two {
    width: 200px;
    height: 200px;
    right: -110px;
    bottom: 80px;
}


/* =========================================
   HEADING
========================================= */

.specialities-heading {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto 45px;
}

.specialities-badge,
.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2768f5, #17b978);
    box-shadow: 0 5px 15px rgba(39, 104, 245, .12);
}

.specialities-heading h2 {
    margin: 15px 0 10px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #17233d;
}

.specialities-heading h2 span {
    background: linear-gradient(90deg, #2768f5, #13b778);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.specialities-heading p {
    margin: 0;
    color: #6c7890;
    font-size: 15px;
}


/* =========================================
   TABS
========================================= */

.speciality-tabs {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    gap: 12px;

    margin-bottom: 35px;
    flex-wrap: wrap;
}

.speciality-tab {
    border: 1px solid #e4ebf4;
    background: #fff;

    display: flex;
    align-items: center;
    gap: 10px;

    min-width: 175px;
    padding: 12px 15px;

    border-radius: 14px;

    cursor: pointer;

    text-align: left;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.speciality-tab:hover {
    transform: translateY(-3px);
    border-color: #b9d2ff;
    box-shadow: 0 12px 30px rgba(39, 104, 245, .10);
}

.speciality-tab.active {
    color: #fff;
    border-color: transparent;

    background:
        linear-gradient(135deg, #2768f5, #13b778);

    box-shadow: 0 12px 28px rgba(39, 104, 245, .20);
}

.tab-icon {
    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: #2768f5;
    background: #eef5ff;
}

.speciality-tab.active .tab-icon {
    color: #2768f5;
    background: #fff;
}

.speciality-tab strong {
    display: block;
    font-size: 12px;
    line-height: 1.3;
}

.speciality-tab small {
    display: block;
    margin-top: 3px;

    color: #8994a8;
    font-size: 10px;
}

.speciality-tab.active small {
    color: rgba(255, 255, 255, .82);
}


/* =========================================
   CONTENT
========================================= */

.treatment-content {
    position: relative;
    z-index: 2;

    display: none;

    grid-template-columns: .85fr 1.15fr;
    align-items: center;

    gap: 60px;

    padding: 35px;

    background: #fff;

    border: 1px solid #e8eef6;
    border-radius: 28px;

    box-shadow: 0 20px 55px rgba(25, 61, 100, .08);

    animation: treatmentFade .45s ease;
}

.treatment-content.active {
    display: grid;
}

@keyframes treatmentFade {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   IMAGE
========================================= */

.treatment-image {
    position: relative;
    min-height: 400px;
}

.treatment-image img {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 400px;

    object-fit: cover;

    border-radius: 25px;

    display: block;

    box-shadow: 0 18px 35px rgba(0, 0, 0, .10);
}

.image-shape {
    position: absolute;

    width: 170px;
    height: 170px;

    left: -25px;
    bottom: -25px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            rgba(39, 104, 245, .20),
            rgba(19, 183, 120, .20));
}

.image-badge {
    position: absolute;
    z-index: 3;

    left: 20px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 14px;

    background: rgba(255, 255, 255, .95);

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    backdrop-filter: blur(10px);
}

.badge-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 11px;

    background: linear-gradient(135deg, #2768f5, #13b778);
}

.image-badge strong {
    display: block;
    color: #17233d;
    font-size: 12px;
}

.image-badge small {
    display: block;
    margin-top: 2px;
    color: #7c879a;
    font-size: 10px;
}


/* =========================================
   CONTENT INFO
========================================= */

.treatment-info {
    padding-right: 15px;
}

.treatment-info h3 {
    margin: 16px 0 15px;

    color: #17233d;

    font-size: 32px;
    line-height: 1.25;

    font-weight: 800;
}

.treatment-info h3 span {
    color: #2768f5;
}

.treatment-info p {
    max-width: 650px;

    color: #6d788c;

    font-size: 14px;
    line-height: 1.85;

    margin-bottom: 22px;
}


/* =========================================
   FEATURES
========================================= */

.treatment-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 10px 25px;

    margin-bottom: 25px;
}

.treatment-features div {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #425069;

    font-size: 13px;
    font-weight: 600;
}

.treatment-features i {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 21px;

    color: #13a96f;

    border-radius: 50%;

    background: #e8f9f1;

    font-size: 9px;
}


/* =========================================
   STATS
========================================= */

.treatment-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin: 20px 0 25px;
}

.treatment-stats div {
    padding: 13px 10px;

    text-align: center;

    border: 1px solid #e6edf5;

    border-radius: 13px;

    background: #f9fbfd;
}

.treatment-stats strong {
    display: block;

    font-size: 19px;

    background: linear-gradient(90deg, #2768f5, #13b778);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.treatment-stats span {
    display: block;

    margin-top: 3px;

    color: #7c8798;

    font-size: 10px;
}


/* =========================================
   BUTTON
========================================= */

.treatment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    color: #fff !important;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 9px;

    background: linear-gradient(90deg,
            #2768f5,
            #13b778);

    box-shadow: 0 10px 22px rgba(39, 104, 245, .18);

    transition: all .3s ease;
}

.treatment-btn:hover {
    transform: translateY(-2px);

    box-shadow: 0 14px 28px rgba(39, 104, 245, .25);
}

.treatment-btn i {
    transition: transform .3s ease;
}

.treatment-btn:hover i {
    transform: translateX(4px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

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

    .treatment-content {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 25px;
    }

    .treatment-image {
        min-height: auto;
    }

    .treatment-image img {
        height: 350px;
    }

    .treatment-info {
        padding-right: 0;
    }

    .treatment-info h3 {
        font-size: 28px;
    }

    .speciality-tab {
        min-width: 160px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .specialities-section {
        padding: 55px 0;
    }

    .specialities-heading {
        margin-bottom: 30px;
    }

    .specialities-heading h2 {
        font-size: 28px;
    }

    .specialities-heading p {
        font-size: 13px;
    }

    /*
       Horizontal scroll only for tab area,
       NOT the entire page.
    */

    .speciality-tabs {
        justify-content: flex-start;

        flex-wrap: nowrap;

        overflow-x: auto;

        padding: 5px 3px 15px;

        scrollbar-width: none;
    }

    .speciality-tabs::-webkit-scrollbar {
        display: none;
    }

    .speciality-tab {
        flex: 0 0 175px;

        min-width: 175px;
    }

    .treatment-content {
        padding: 18px;

        border-radius: 20px;

        gap: 25px;
    }

    .treatment-image img {
        height: 280px;

        border-radius: 20px;
    }

    .image-badge {
        left: 12px;
        bottom: 12px;
    }

    .treatment-info h3 {
        font-size: 24px;
    }

    .treatment-info p {
        font-size: 13px;
        line-height: 1.75;
    }

    .treatment-features {
        grid-template-columns: 1fr;

        gap: 9px;
    }

    .treatment-stats {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .treatment-stats div {
        text-align: left;

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding: 10px 13px;
    }

    .treatment-stats strong {
        font-size: 17px;
    }

    .treatment-stats span {
        margin: 0;
    }

    .treatment-btn {
        width: 100%;

        justify-content: center;
    }

    .image-shape {
        width: 100px;
        height: 100px;

        left: -10px;
        bottom: -10px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .specialities-heading h2 {
        font-size: 25px;
    }

    .speciality-tab {
        flex-basis: 160px;
        min-width: 160px;
    }

    .treatment-content {
        padding: 14px;
    }

    .treatment-image img {
        height: 240px;
    }

    .treatment-info h3 {
        font-size: 22px;
    }
}

/* =========================================
   PREMIUM SERVICES SECTION
========================================= */

.premium-services {
    position: relative;
    overflow: hidden;
    padding: 95px 0;
    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f7fbff 100%);
}


/* =========================================
   BACKGROUND DECORATION
========================================= */

.service-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.service-bg-circle-1 {
    width: 380px;
    height: 380px;
    left: -250px;
    top: 120px;
    border: 1px solid rgba(39, 104, 245, .08);
}

.service-bg-circle-1::after {
    content: "";
    position: absolute;
    inset: 45px;
    border: 1px solid rgba(19, 183, 120, .07);
    border-radius: 50%;
}

.service-bg-circle-2 {
    width: 320px;
    height: 320px;
    right: -210px;
    bottom: 80px;
    background:
        radial-gradient(circle,
            rgba(19, 183, 120, .08),
            transparent 68%);
}


/* =========================================
   HEADING
========================================= */

.premium-services-heading {
    position: relative;
    z-index: 2;

    max-width: 680px;

    margin: 0 auto 55px;

    text-align: center;
}

.premium-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 7px 14px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            #2768f5,
            #13b778);

    box-shadow:
        0 7px 18px rgba(39, 104, 245, .16);
}

.premium-kicker i {
    font-size: 9px;
}

.premium-services-heading h2 {
    margin: 17px 0 12px;

    color: #17233d;

    font-size: 40px;
    line-height: 1.18;

    font-weight: 800;
}

.premium-services-heading h2 span {
    background:
        linear-gradient(90deg,
            #2768f5,
            #13b778);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.premium-services-heading p {
    max-width: 570px;

    margin: auto;

    color: #7a8699;

    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   GRID
========================================= */

.premium-services-grid {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================
   CARD
========================================= */

.premium-service-card {
    position: relative;

    display: flex;
    align-items: flex-start;

    gap: 17px;

    min-height: 205px;

    padding: 27px 23px;

    overflow: hidden;

    text-decoration: none;

    background: rgba(255, 255, 255, .88);

    border: 1px solid rgba(222, 231, 241, .9);

    border-radius: 20px;

    box-shadow:
        0 10px 35px rgba(31, 65, 100, .055);

    backdrop-filter: blur(8px);

    transition:
        transform .4s cubic-bezier(.2, .8, .2, 1),
        box-shadow .4s ease,
        border-color .4s ease;
}


/* Gradient line */

.premium-service-card::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 3px;

    transform: scaleX(0);

    transform-origin: left;

    background:
        linear-gradient(90deg,
            #2768f5,
            #13b778);

    transition: transform .4s ease;
}


/* Soft glow */

.premium-service-card::before {
    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(39, 104, 245, .10),
            transparent 68%);

    transition:
        transform .5s ease;
}


/* Hover */

.premium-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(39, 104, 245, .20);

    box-shadow:
        0 22px 50px rgba(39, 104, 245, .12);
}

.premium-service-card:hover::after {
    transform: scaleX(1);
}

.premium-service-card:hover::before {
    transform: scale(2);
}


/* =========================================
   NUMBER
========================================= */

.service-number {
    position: absolute;

    right: 18px;
    top: 15px;

    color: #e8edf4;

    font-size: 28px;

    font-weight: 800;

    line-height: 1;

    transition:
        color .3s ease;
}

.premium-service-card:hover .service-number {
    color: #dfeaff;
}


/* =========================================
   ICON
========================================= */

.premium-service-icon {
    position: relative;
    z-index: 2;

    width: 58px;
    height: 58px;

    flex: 0 0 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #2672f5;

    border-radius: 17px;

    background:
        linear-gradient(145deg,
            #edf5ff,
            #e8faf3);

    box-shadow:
        inset 0 0 0 1px rgba(39, 104, 245, .05);

    transition:
        transform .4s ease,
        background .4s ease,
        color .4s ease;
}

.premium-service-icon::before {
    content: "";

    position: absolute;

    inset: -5px;

    border: 1px solid rgba(39, 104, 245, .08);

    border-radius: 20px;

    opacity: 0;

    transform: scale(.7);

    transition: all .4s ease;
}

.premium-service-icon i {
    font-size: 20px;
}

.premium-service-card:hover .premium-service-icon {
    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2768f5,
            #13b778);

    transform:
        translateY(-4px) rotate(-4deg);
}

.premium-service-card:hover .premium-service-icon::before {
    opacity: 1;

    transform: scale(1);
}


/* =========================================
   CONTENT
========================================= */

.premium-service-content {
    position: relative;
    z-index: 2;

    padding-top: 2px;
}

.premium-service-content h3 {
    margin: 0 28px 9px 0;

    color: #172d50;

    font-size: 25px;

    line-height: 1.4;

    font-weight: 750;
}

.premium-service-content p {
    margin: 0 0 16px;

    color: #788496;

    font-size: 15px;

    line-height: 1.7;
}

.service-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #2672f5;

    font-size: 15px;

    font-weight: 700;

    transition:
        color .3s ease,
        gap .3s ease;
}

.service-link i {
    font-size: 8px;
}

.premium-service-card:hover .service-link {
    gap: 11px;

    color: #13a96f;
}


/* =========================================
   BOTTOM CTA
========================================= */

.services-bottom-cta {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin: 45px auto 0;

    max-width: 670px;

    padding: 15px 20px;

    border-radius: 14px;

    background:
        linear-gradient(100deg,
            rgba(39, 104, 245, .07),
            rgba(19, 183, 120, .08));

    border: 1px solid rgba(39, 104, 245, .08);
}

.services-bottom-cta span {
    color: #59677d;

    font-size: 12px;

    font-weight: 600;
}

.services-bottom-cta a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 15px;

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    border-radius: 8px;

    background:
        linear-gradient(90deg,
            #2768f5,
            #13b778);

    box-shadow:
        0 8px 20px rgba(39, 104, 245, .16);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.services-bottom-cta a:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(39, 104, 245, .24);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .premium-services {
        padding: 75px 0;
    }

    .premium-services-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .premium-services-heading h2 {
        font-size: 34px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

    .premium-services {
        padding: 60px 0;
    }

    .premium-services-heading {
        margin-bottom: 35px;
    }

    .premium-services-heading h2 {
        font-size: 28px;
    }

    .premium-services-heading p {
        font-size: 12px;
    }

    .premium-services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .premium-service-card {
        min-height: auto;

        padding: 22px 20px;

        border-radius: 17px;
    }

    .premium-service-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;
    }

    .premium-service-content h3 {
        font-size: 14px;
    }

    .premium-service-content p {
        font-size: 10.5px;
    }

    .services-bottom-cta {
        flex-direction: column;

        gap: 12px;

        text-align: center;

        margin-top: 30px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .premium-service-card {
        gap: 13px;

        padding: 19px 16px;
    }

    .premium-service-icon {
        width: 46px;
        height: 46px;

        flex-basis: 46px;
    }

    .premium-service-icon i {
        font-size: 17px;
    }

    .premium-service-content h3 {
        font-size: 13px;
    }

    .premium-service-content p {
        font-size: 10px;
    }

}


/* =========================================
   SERVICES HERO
========================================= */

.services-hero {
    position: relative;
    min-height: 650px;

    overflow: hidden;

    background:
        linear-gradient(115deg,
            #1666e8 0%,
            #2877ee 35%,
            #1da8b5 68%,
            #13b978 100%);

    color: #fff;
}


/* =========================================
   BACKGROUND
========================================= */

.services-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 18% 20%,
            rgba(255, 255, 255, .12) 1px,
            transparent 1px);

    background-size: 22px 22px;

    opacity: .35;

    pointer-events: none;
}


.services-hero::after {
    content: "";

    position: absolute;

    width: 650px;
    height: 650px;

    right: -250px;
    top: -200px;

    border: 1px solid rgba(255, 255, 255, .28);

    border-radius: 50%;

    box-shadow:
        0 0 0 18px rgba(255, 255, 255, .05),
        0 0 0 36px rgba(255, 255, 255, .035);
}


/* =========================================
   DECORATIVE CIRCLES
========================================= */

.services-hero-bg-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    pointer-events: none;
}

.circle-1 {
    width: 260px;
    height: 260px;

    left: -130px;
    bottom: -90px;
}

.circle-2 {
    width: 120px;
    height: 120px;

    right: 34%;
    top: 70px;

    border-style: dashed;

    animation: rotateCircle 18s linear infinite;
}

@keyframes rotateCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================
   CONTAINER
========================================= */

.services-hero .container {
    position: relative;
    z-index: 5;

    width: min(1200px, calc(100% - 40px));

    margin: auto;
}


/* =========================================
   MAIN CONTENT
========================================= */

.services-hero-content {

    min-height: 650px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 30px;
}


/* =========================================
   LEFT TEXT
========================================= */

.services-hero-text {
    position: relative;
    z-index: 5;

    padding: 60px 0;
}


/* Breadcrumb */

.services-breadcrumb {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 22px;

    padding: 8px 15px;

    border: 1px solid rgba(255, 255, 255, .35);

    border-radius: 50px;

    background: rgba(255, 255, 255, .08);

    backdrop-filter: blur(8px);

    font-size: 11px;

    color: rgba(255, 255, 255, .85);
}

.services-breadcrumb i {
    font-size: 9px;
}

.services-breadcrumb strong {
    color: #35e39a;
}


/* Badge */

.services-mini-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 6px 12px;

    margin-bottom: 15px;

    color: #fff;

    font-size: 10px;

    font-weight: 700;

    border-radius: 50px;

    background: rgba(255, 255, 255, .13);

    border: 1px solid rgba(255, 255, 255, .25);

    backdrop-filter: blur(8px);
}

.services-mini-badge i {
    color: #39e39a;
}


/* Heading */

.services-hero-text h1 {

    margin: 0;

    font-size: clamp(48px, 5vw, 72px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.services-hero-text h1 span {
    color: #fff;
}


.services-hero-text h2 {

    margin: 13px 0 20px;

    font-size: clamp(25px, 2.8vw, 38px);

    line-height: 1.2;

    font-weight: 700;
}

.services-hero-text h2 span {
    color: #38e39c;
}


.services-hero-text>p {

    max-width: 560px;

    margin: 0 0 28px;

    color: rgba(255, 255, 255, .88);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   FEATURES
========================================= */

.services-hero-features {

    display: flex;

    gap: 0;

    margin-bottom: 28px;
}

.hero-feature {

    display: flex;

    align-items: center;

    gap: 9px;

    padding: 0 20px;

    border-right:
        1px solid rgba(255, 255, 255, .28);
}

.hero-feature:first-child {
    padding-left: 0;
}

.hero-feature:last-child {
    border-right: 0;
}


.hero-feature-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    border-radius: 50%;

    background: rgba(255, 255, 255, .13);

    border:
        1px solid rgba(255, 255, 255, .3);

    transition: all .3s ease;
}

.hero-feature:hover .hero-feature-icon {

    background: #fff;

    color: #1873e8;

    transform:
        translateY(-4px) rotate(-5deg);
}

.hero-feature span {

    color: rgba(255, 255, 255, .95);

    font-size: 15px;

    line-height: 1.4;

    font-weight: 600;
}


/* =========================================
   BUTTON
========================================= */

.services-hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    color: #1267df !important;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    border-radius: 8px;

    background: #fff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);

    transition: all .3s ease;
}

.services-hero-btn:hover {

    transform: translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, .18);
}

.services-hero-btn i {

    transition:
        transform .3s ease;
}

.services-hero-btn:hover i {

    transform:
        translateX(4px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.services-hero-visual {

    position: relative;

    height: 600px;
}


/* Doctor glow */

.doctor-glow {

    position: absolute;

    width: 480px;
    height: 480px;

    right: 20px;
    top: 80px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .28),
            rgba(255, 255, 255, .05) 55%,
            transparent 70%);
}


/* =========================================
   MAIN DOCTOR
========================================= */

/* =========================================
   MAIN DOCTOR IMAGE - NO CROP
========================================= */

.main-doctor {
    position: absolute;

    right: 20px;
    bottom: 0;

    height: 100%;
    width: auto;

    max-width: 55%;

    z-index: 3;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.main-doctor img {
    display: block;

    height: 100%;
    width: auto;

    max-width: 100%;

    object-fit: contain;
    object-position: bottom center;

    filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, .15));
}

/* =========================================
   CIRCULAR IMAGES
========================================= */

.visual-circle {

    position: absolute;

    z-index: 5;

    overflow: hidden;

    border-radius: 50%;

    border:
        6px solid rgba(255, 255, 255, .95);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);

    animation:
        floatingImage 4s ease-in-out infinite;
}

.visual-circle img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}

.medicine-circle {

    width: 125px;
    height: 125px;

    left: 40px;
    top: 185px;
}

.consultation-circle {

    width: 155px;
    height: 155px;

    left: 20px;
    bottom: 85px;

    animation-delay: -1.5s;
}


@keyframes floatingImage {

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

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


/* =========================================
   FLOATING CARD
========================================= */

.care-floating-card {

    position: absolute;

    z-index: 7;

    right: 5px;
    bottom: 38px;

    width: 300px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px 20px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .96);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18);

    animation:
        floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {

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

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

.care-floating-icon {

    width: 52px;
    height: 52px;

    flex: 0 0 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 20px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #2672f5,
            #13b778);
}

.care-floating-card small {

    display: block;

    margin-bottom: 3px;

    color: #7a8596;

    font-size: 9px;

    font-weight: 600;
}

.care-floating-card strong {

    display: block;

    color: #1a2b43;

    font-size: 14px;

    line-height: 1.4;
}

.care-floating-card strong span {

    color: #2672f5;
}

.floating-line {

    width: 45px;
    height: 3px;

    margin-top: 7px;

    border-radius: 5px;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .services-hero {
        min-height: auto;
    }

    .services-hero-content {

        grid-template-columns: 1fr;

        min-height: auto;

        padding-top: 55px;
    }

    .services-hero-text {
        padding: 20px 0;
        text-align: center;
    }

    .services-hero-text>p {
        margin-left: auto;
        margin-right: auto;
    }

    .services-hero-features {
        justify-content: center;
    }

    .services-hero-visual {
        position: relative;

        height: 650px;

        overflow: visible;
    }

    .main-doctor {
        right: 50%;

        transform: translateX(50%);

        width: 470px;
    }

    .medicine-circle {
        left: 10%;
    }

    .consultation-circle {
        left: 8%;
    }

    .care-floating-card {
        right: 8%;
    }

}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 991px) {

    .services-hero-visual {
        height: 560px;
    }

    .main-doctor {
        right: 50%;
        bottom: 0;

        transform: translateX(50%);

        height: 100%;
        width: auto;

        max-width: 90%;
    }

    .main-doctor img {
        height: 100%;
        width: auto;

        max-width: 100%;
        object-fit: contain;
    }
}

@media (max-width: 767px) {

    .services-hero-visual {
        height: 500px;
    }

    .main-doctor {
        height: 100%;
        max-width: 92%;
    }

    .main-doctor img {
        height: 100%;
        width: auto;
    }
}

@media (max-width: 767px) {

    .services-hero-content {
        padding-top: 30px;
    }

    .services-hero-text h1 {
        font-size: 48px;
    }

    .services-hero-text h2 {
        font-size: 25px;
    }

    .services-hero-text>p {
        font-size: 12px;
    }

    .services-hero-features {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;

        margin-top: 20px;
    }

    .hero-feature {

        padding: 0;

        border: 0;

        justify-content: flex-start;

        text-align: left;
    }

    .services-hero-visual {

        height: 470px;

        margin-top: -10px;
    }


    .medicine-circle {

        width: 85px;
        height: 85px;

        left: 0;
        top: 90px;

        border-width: 4px;
    }

    .consultation-circle {

        width: 105px;
        height: 105px;

        left: 0;
        bottom: 65px;

        border-width: 4px;
    }

    .care-floating-card {

        width: 225px;

        right: 0;
        bottom: 15px;

        padding: 11px 13px;

        gap: 10px;
    }

    .care-floating-icon {

        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 15px;
    }

    .care-floating-card strong {
        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .services-hero-text h1 {
        font-size: 42px;
    }

    .services-hero-text h2 {
        font-size: 22px;
    }

    .services-hero-features {
        gap: 10px;
    }

    .hero-feature-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .hero-feature span {
        font-size: 8px;
    }

    .services-hero-visual {
        height: 400px;
    }

    .main-doctor {
        width: 310px;
    }

    .care-floating-card {
        width: 205px;
    }

}


/* =========================================
   MEDICINE HERO
========================================= */

.medicine-hero {
    position: relative;

    min-height: 650px;

    overflow: hidden;

    color: #ffffff;

    background:
        linear-gradient(115deg,
            #1767e9 0%,
            #2877ed 36%,
            #20a8b5 70%,
            #15b878 100%);
}


/* =========================================
   BACKGROUND PATTERN
========================================= */

.medicine-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, .16) 1px,
            transparent 1px);

    background-size: 22px 22px;

    opacity: .25;

    pointer-events: none;
}


/* =========================================
   CONTAINER
========================================= */

.medicine-container {
    position: relative;

    z-index: 5;

    width: min(1200px,
            calc(100% - 40px));

    margin: auto;
}


/* =========================================
   CONTENT
========================================= */

.medicine-hero-content {

    min-height: 650px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 30px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.medicine-hero-text {

    padding: 55px 0;

    position: relative;

    z-index: 5;
}


/* =========================================
   BREADCRUMB
========================================= */

.medicine-breadcrumb {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 8px 15px;

    margin-bottom: 20px;

    border-radius: 50px;

    border:
        1px solid rgba(255, 255, 255, .30);

    background:
        rgba(255, 255, 255, .08);

    backdrop-filter: blur(8px);

    font-size: 11px;

    color:
        rgba(255, 255, 255, .85);
}

.medicine-breadcrumb i {
    font-size: 8px;
}

.medicine-breadcrumb strong {
    color: #38e39c;
}


/* =========================================
   BADGE
========================================= */

.medicine-badge {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 13px;

    margin-bottom: 15px;

    border-radius: 50px;

    border:
        1px solid rgba(255, 255, 255, .25);

    background:
        rgba(255, 255, 255, .10);

    backdrop-filter: blur(8px);

    font-size: 10px;

    font-weight: 700;
}

.medicine-badge i {
    color: #39e39a;
}


/* =========================================
   HEADING
========================================= */

.medicine-hero-text h1 {

    margin: 0;

    font-size:
        clamp(48px, 5vw, 70px);

    line-height: 1;

    font-weight: 800;

    letter-spacing: -2px;
}

.medicine-hero-text h1 span {

    display: block;

    color: #ffffff;
}


.medicine-hero-text h2 {

    margin: 15px 0 18px;

    font-size:
        clamp(25px, 2.8vw, 37px);

    line-height: 1.2;

    font-weight: 700;
}

.medicine-hero-text h2 span {
    color: #38e39c;
}


/* =========================================
   DESCRIPTION
========================================= */

.medicine-hero-text>p {

    max-width: 560px;

    margin: 0 0 28px;

    color:
        rgba(255, 255, 255, .88);

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================
   BENEFITS
========================================= */

.medicine-benefits {

    display: flex;

    align-items: center;

    margin-bottom: 30px;
}

.medicine-benefit {

    display: flex;

    align-items: center;

    gap: 9px;

    padding:
        0 18px;

    border-right:
        1px solid rgba(255, 255, 255, .28);
}

.medicine-benefit:first-child {
    padding-left: 0;
}

.medicine-benefit:last-child {
    border-right: 0;
}


.medicine-benefit-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, .35);

    background:
        rgba(255, 255, 255, .10);

    transition: all .3s ease;
}

.medicine-benefit:hover .medicine-benefit-icon {

    color: #176be8;

    background: #ffffff;

    transform:
        translateY(-4px) rotate(-5deg);
}

.medicine-benefit span {

    font-size: 15px;

    line-height: 1.45;

    font-weight: 600;

    color:
        rgba(255, 255, 255, .95);
}


/* =========================================
   BUTTON
========================================= */

.medicine-hero-btn {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    color: #1769df !important;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    border-radius: 8px;

    background: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);

    transition: all .3s ease;
}

.medicine-hero-btn:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 17px 35px rgba(0, 0, 0, .18);
}

.medicine-hero-btn i {

    transition:
        transform .3s ease;
}

.medicine-hero-btn:hover i {

    transform:
        translateX(5px);
}


/* =========================================
   RIGHT VISUAL
========================================= */

.medicine-hero-visual {

    position: relative;

    height: 650px;

    overflow: visible;
}


/* =========================================
   GLOW
========================================= */

.medicine-glow {

    position: absolute;

    width: 500px;
    height: 500px;

    right: -20px;
    top: 70px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(255, 255, 255, .24),
            rgba(255, 255, 255, .06) 52%,
            transparent 72%);
}


/* =========================================
   MAIN MEDICINE IMAGE
========================================= */

.medicine-main-image {

    position: absolute;

    right: -60px;

    bottom: 25px;

    width: 610px;

    z-index: 3;

    border-radius: 40px;

    overflow: hidden;

    box-shadow:
        0 25px 50px rgba(0, 0, 0, .15);

    animation:
        medicineFloat 6s ease-in-out infinite;
}

.medicine-main-image img {

    display: block;

    width: 100%;

    height: auto;

    object-fit: cover;
}


@keyframes medicineFloat {

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

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

}


/* =========================================
   FLOATING CARD
========================================= */

.medicine-floating-card {

    position: absolute;

    z-index: 6;

    left: 5px;

    bottom: 80px;

    width: 285px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 15px 18px;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, .96);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .18);

    animation:
        floatingMedicineCard 4s ease-in-out infinite;
}

@keyframes floatingMedicineCard {

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

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


.medicine-floating-icon {

    width: 48px;
    height: 48px;

    flex: 0 0 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    font-size: 18px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #2672f5,
            #13b778);
}

.medicine-floating-card small {

    display: block;

    margin-bottom: 3px;

    color: #7b8798;

    font-size: 9px;
}

.medicine-floating-card strong {

    display: block;

    color: #1b2c45;

    font-size: 13px;

    line-height: 1.4;
}

.medicine-floating-card strong span {
    color: #2672f5;
}

.medicine-small-line {

    width: 42px;
    height: 3px;

    margin-top: 7px;

    border-radius: 5px;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);
}


/* =========================================
   DECORATIVE CIRCLE
========================================= */

.medicine-small-circle {

    position: absolute;

    right: 30px;

    top: 115px;

    z-index: 7;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ffffff;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, .4);

    background:
        rgba(255, 255, 255, .10);

    backdrop-filter: blur(7px);

    animation:
        rotateMedicineCircle 12s linear infinite;
}

@keyframes rotateMedicineCircle {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   DECORATIVE ORBITS
========================================= */

.medicine-orbit {

    position: absolute;

    border:
        1px solid rgba(255, 255, 255, .16);

    border-radius: 50%;

    pointer-events: none;
}

.orbit-one {

    width: 450px;
    height: 450px;

    right: -260px;
    top: -100px;
}

.orbit-two {

    width: 300px;
    height: 300px;

    left: -210px;
    bottom: -180px;

    border-style: dashed;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .medicine-hero {

        min-height: auto;
    }

    .medicine-hero-content {

        min-height: auto;

        grid-template-columns: 1fr;

        padding-top: 45px;
    }

    .medicine-hero-text {

        text-align: center;

        padding: 20px 0;
    }

    .medicine-hero-text>p {

        margin-left: auto;
        margin-right: auto;
    }

    .medicine-benefits {

        justify-content: center;
    }

    .medicine-hero-visual {

        height: 520px;
    }

    .medicine-main-image {

        right: 50%;

        transform:
            translateX(50%);

        width: 500px;
    }

    .medicine-floating-card {

        left: 7%;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .medicine-container {

        width:
            calc(100% - 28px);
    }

    .medicine-hero-content {

        padding-top: 25px;
    }

    .medicine-hero-text h1 {

        font-size: 45px;
    }

    .medicine-hero-text h2 {

        font-size: 24px;
    }

    .medicine-hero-text>p {

        font-size: 12px;
    }

    .medicine-benefits {

        display: grid;

        grid-template-columns:
            repeat(2, 1fr);

        gap: 15px;

        text-align: left;
    }

    .medicine-benefit {

        padding: 0;

        border: 0;
    }

    .medicine-hero-visual {

        height: 430px;

        margin-top: -10px;
    }

    .medicine-main-image {

        width: 340px;

        right: 50%;

        bottom: 15px;

        transform:
            translateX(50%);

        border-radius: 25px;
    }

    .medicine-floating-card {

        width: 220px;

        left: 0;

        bottom: 25px;

        padding: 11px 13px;
    }

    .medicine-floating-icon {

        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 15px;
    }

    .medicine-floating-card strong {

        font-size: 10px;
    }

    .medicine-small-circle {

        width: 45px;
        height: 45px;

        right: 5px;

        top: 45px;
    }
}

/* medicine banner end */


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .medicine-hero-text h1 {

        font-size: 39px;
    }

    .medicine-hero-text h2 {

        font-size: 21px;
    }

    .medicine-benefit-icon {

        width: 34px;
        height: 34px;

        flex-basis: 34px;
    }

    .medicine-benefit span {

        font-size: 8px;
    }

    .medicine-hero-visual {

        height: 190px;
    }

    .medicine-main-image {

        width: 300px;
    }

    .medicine-floating-card {

        width: 195px;
    }
}

/* doct start */
.doc {
    text-align: center;
    justify-content: center;
}

/* doc end */

/* =========================================================
   MEDICINE PRODUCTS SECTION
========================================================= */

.medicine-products {
    position: relative;
    padding: 90px 0 110px;

    background:
        linear-gradient(180deg,
            #ffffff 0%,
            #f5faff 50%,
            #ffffff 100%);

    overflow: hidden;
}


/* Decorative glow */

.medicine-products::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    left: -260px;
    top: 260px;

    border-radius: 50%;

    border: 1px solid rgba(39, 104, 245, .08);

    box-shadow:
        0 0 0 35px rgba(39, 104, 245, .025),
        0 0 0 70px rgba(39, 104, 245, .015);

    pointer-events: none;
}

.medicine-products::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -230px;
    bottom: 180px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(19, 183, 120, .09),
            transparent 70%);

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.medicine-products-header {
    position: relative;
    z-index: 2;

    width: min(700px, calc(100% - 30px));

    margin: 0 auto 55px;

    text-align: center;
}


.medicine-products-tag {

    display: inline-flex;

    align-items: center;
    gap: 7px;

    padding: 8px 16px;

    color: #ffffff;

    font-size: 11px;

    font-weight: 700;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);

    box-shadow:
        0 8px 20px rgba(39, 104, 245, .15);
}


.medicine-products-header h2 {

    margin: 18px 0 12px;

    color: #172a45;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 800;
}


.medicine-products-header h2 span {

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.medicine-products-header p {

    max-width: 620px;

    margin: auto;

    color: #718095;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   GRID
========================================================= */

.medicine-products-grid {

    position: relative;
    z-index: 2;

    width: min(1240px,
            calc(100% - 40px));

    margin: auto;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   CARD
========================================================= */

.premium-medicine-card {

    position: relative;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    min-width: 0;

    border-radius: 24px;

    background: #ffffff;

    border:
        1px solid #e5edf5;

    box-shadow:
        0 12px 35px rgba(22, 59, 100, .07);

    transition:
        transform .45s cubic-bezier(.2, .8, .2, 1),
        box-shadow .45s ease,
        border-color .45s ease;
}


/* Bottom animated line */

.premium-medicine-card::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 4px;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);

    transform:
        scaleX(0);

    transform-origin: left;

    transition:
        transform .45s ease;
}


.premium-medicine-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(39, 104, 245, .18);

    box-shadow:
        0 28px 60px rgba(22, 59, 100, .14);
}


.premium-medicine-card:hover::after {
    transform:
        scaleX(1);
}


/* =========================================================
   IMAGE
========================================================= */

.medicine-product-image {

    position: relative;

    height: 245px;

    overflow: hidden;

    background:
        linear-gradient(op 135deg,
            #edf6ff,
            #ecfaf5);
}


.medicine-product-image img {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .65s cubic-bezier(.2, .8, .2, 1);
}


.premium-medicine-card:hover .medicine-product-image img {

    transform:
        scale(1.06);
}


/* Image bottom fade */

.medicine-product-image::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 70px;

    background:
        linear-gradient(transparent,
            rgba(15, 45, 80, .12));

    pointer-events: none;
}


/* =========================================================
   BADGE
========================================================= */

.medicine-product-badge {

    position: absolute;

    z-index: 3;

    left: 15px;
    top: 15px;

    display: inline-flex;

    align-items: center;
    gap: 6px;

    padding: 7px 11px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 700;

    border-radius: 50px;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);

    box-shadow:
        0 6px 18px rgba(20, 80, 140, .20);
}


.medicine-product-number {

    position: absolute;

    z-index: 3;

    top: 14px;
    right: 16px;

    color:
        rgba(255, 255, 255, .8);

    font-size: 28px;

    line-height: 1;

    font-weight: 800;

    text-shadow:
        0 2px 8px rgba(0, 0, 0, .18);
}


/* =========================================================
   CONTENT
========================================================= */

.medicine-product-content {

    display: flex;

    flex-direction: column;

    flex: 1;

    padding: 23px 21px 21px;
}


/* =========================================================
   TITLE
========================================================= */

.medicine-product-title {

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 12px;
}


.medicine-product-title>div:first-child span {

    display: block;

    margin-bottom: 5px;

    color: #13a873;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .5px;
}


.medicine-product-title h3 {

    margin: 0;

    color: #176dde;

    font-size: 23px;

    line-height: 1.15;

    font-weight: 800;
}


.medicine-product-icon {

    width: 40px;
    height: 40px;

    flex: 0 0 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #2672f5;

    border-radius: 12px;

    background:
        linear-gradient(135deg,
            #edf5ff,
            #eaf9f3);

    transition:
        .35s ease;
}


.premium-medicine-card:hover .medicine-product-icon {

    color: #ffffff;

    background:
        linear-gradient(135deg,
            #2672f5,
            #13b778);

    transform:
        rotate(-6deg);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.medicine-product-description {

    margin: 14px 0 17px;

    color: #596b81;

    font-size: 13px;

    line-height: 1.75;

    min-height: 68px;
}


/* =========================================================
   BENEFITS
========================================================= */

.medicine-product-benefits {

    display: grid;

    grid-template-columns: 1fr;

    gap: 8px;

    margin-bottom: 18px;
}


.medicine-product-benefits div {

    display: flex;

    align-items: center;

    gap: 8px;

    color: #53657b;

    font-size: 11px;

    line-height: 1.4;
}


.medicine-product-benefits i {

    width: 20px;
    height: 20px;

    flex: 0 0 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #13a873;

    font-size: 8px;

    border-radius: 50%;

    background: #eaf8f2;
}


/* =========================================================
   DOSE
========================================================= */

.medicine-product-dose {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: auto;

    padding: 13px;

    border-radius: 14px;

    background:
        linear-gradient(100deg,
            #f0f7ff,
            #eefaf5);

    border:
        1px solid #e5f0ec;

    border-left:
        4px solid #2672f5;
}


.dose-round-icon {

    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #13a873;

    border-radius: 11px;

    background: #ffffff;

    box-shadow:
        0 4px 12px rgba(20, 70, 100, .07);
}


.medicine-product-dose small {

    display: block;

    margin-bottom: 3px;

    color: #8190a0;

    font-size: 9px;

    font-weight: 600;
}


.medicine-product-dose strong {

    display: block;

    color: #243950;

    font-size: 12px;

    line-height: 1.4;
}


.medicine-product-dose p {

    margin: 2px 0 0;

    color: #718196;

    font-size: 9px;

    line-height: 1.4;
}


/* =========================================================
   BUTTON
========================================================= */

.medicine-product-button {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 16px;

    padding: 12px 15px;

    color: #2672f5;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    border:
        1px solid rgba(39, 104, 245, .20);

    border-radius: 10px;

    background: #ffffff;

    transition:
        .3s ease;
}


.medicine-product-button i {

    transition:
        transform .3s ease;
}


.medicine-product-button:hover {

    color: #ffffff;

    border-color: transparent;

    background:
        linear-gradient(90deg,
            #2672f5,
            #13b778);

    box-shadow:
        0 8px 20px rgba(39, 104, 245, .18);
}


.medicine-product-button:hover i {

    transform:
        translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .medicine-products-grid {

        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

}


@media (max-width: 850px) {

    .medicine-products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 20px;
    }

    .medicine-products-header h2 {

        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .medicine-products {

        padding:
            65px 0 80px;
    }

    .medicine-products-grid {

        width:
            calc(100% - 28px);

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .medicine-products-header {

        width:
            calc(100% - 28px);

        margin-bottom: 38px;
    }

    .medicine-products-header h2 {

        font-size: 29px;
    }

    .medicine-products-header p {

        font-size: 12px;
    }

    .medicine-product-image {

        height:
            min(72vw, 310px);
    }

    .medicine-product-content {

        padding:
            21px 18px 19px;
    }

    .medicine-product-title h3 {

        font-size: 22px;
    }

    .medicine-product-description {

        font-size: 13px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .medicine-product-image {

        height: 245px;
    }

    .medicine-product-content {

        padding:
            19px 16px 17px;
    }

    .medicine-product-description {

        font-size: 12px;
    }

}

/* contact page  banner start  */
/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;

    background:
        linear-gradient(110deg,
            #1765ed 0%,
            #1687df 42%,
            #16a9c7 67%,
            #16b979 100%);

    color: #fff;
    padding: 34px;
}


/* Background dotted texture */

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.16) 1px,
            transparent 1px);

    background-size: 22px 22px;

    opacity: 0.25;
}


/* Decorative circles */

.contact-hero-bg-circle {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.circle-one {
    width: 560px;
    height: 560px;

    right: -180px;
    top: -210px;
}

.circle-two {
    width: 370px;
    height: 370px;

    right: 130px;
    top: -150px;

    border-color: rgba(255, 255, 255, 0.12);
}


/* =========================================
   CONTAINER
========================================= */

.contact-hero-container {
    position: relative;
    z-index: 2;

    width: min(1440px, 92%);
    margin: auto;

    min-height: 760px;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
}


/* =========================================
   LEFT CONTENT
========================================= */

.contact-hero-content {
    padding: 40px 0;
}


/* Logo */

.contact-logo {
    margin-bottom: 20px;
}

.contact-logo img {
    width: 92px;
    height: 92px;

    object-fit: contain;

    background: #fff;
    border-radius: 50%;

    padding: 7px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);
}


/* Heading */

.contact-title h1 {
    margin: 0;

    font-size: clamp(55px, 6vw, 70px);

    line-height: 0.95;

    font-weight: 800;

    letter-spacing: -3px;
}

.contact-title h1 span {
    color: #39f19b;
}


.title-line {
    width: 115px;
    height: 4px;

    margin-top: 22px;

    background: linear-gradient(90deg,
            #fff,
            #39f19b);

    border-radius: 10px;
}


/* Intro */

.contact-intro {
    max-width: 560px;

    margin: 25px 0;

    font-size: 19px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.92);
}

.contact-intro strong {
    color: #39f19b;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-info {
    width: min(560px, 100%);
}

.contact-info-item {
    display: flex;
    align-items: center;

    gap: 18px;

    padding: 10px 0;

    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-info-item:last-child {
    border-bottom: none;
}


.contact-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #2c8df4,
            #38e49b);

    color: #fff;

    font-size: 19px;

    box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.12);
}


.contact-info-item h4 {
    margin: 0 0 3px;

    font-size: 16px;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;

    font-size: 15px;

    line-height: 1.4;

    color: #39f19b;
}


/* =========================================
   CTA BOX
========================================= */

.contact-cta {
    display: flex;
    align-items: center;

    gap: 15px;

    max-width: 680px;

    margin-top: 28px;

    padding: 16px 20px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.95);

    color: #123c71;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.13);
}


.cta-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #176cf1,
            #25d89a);

    color: #fff;

    font-size: 20px;
}


.cta-text {
    flex: 1;
}

.cta-text h3 {
    margin: 0;

    font-size: 20px;
}

.cta-text p {
    margin: 3px 0 0;

    color: #64748b;

    font-size: 14px;
}


.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 14px 24px;

    border-radius: 30px;

    background:
        linear-gradient(90deg,
            #176cf1,
            #22c99a);

    color: #fff;

    text-decoration: none;

    font-weight: 700;

    transition: 0.3s ease;
}

.cta-btn:hover {
    transform: translateX(4px);

    box-shadow:
        0 8px 20px rgba(23, 108, 241, 0.25);

    color: #fff;
}


/* =========================================
   RIGHT VISUAL
========================================= */

.contact-hero-visual {
    position: relative;

    height: 680px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* Medicine image */

.medicine-scene {
    position: absolute;

    right: -20px;
    bottom: 20px;

    width: 650px;
    max-width: 100%;
}

.medicine-image {
    width: 100%;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, 0.15));
}


/* =========================================
   CARE BADGE
========================================= */

.care-badge {
    position: absolute;

    left: 20px;
    top: 145px;

    z-index: 5;

    width: 150px;
    height: 150px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        rgba(21, 142, 210, 0.35);

    border:
        1px solid rgba(255, 255, 255, 0.35);

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.12);
}


.badge-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #32e89b,
            #2389ed);

    font-size: 20px;
}


.care-badge span {
    font-size: 14px;

    font-weight: 600;

    line-height: 1.35;
}


/* =========================================
   HEALTH MESSAGE
========================================= */

.health-message {
    position: absolute;

    right: 30px;
    bottom: 30px;

    z-index: 5;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px 25px;

    min-width: 370px;

    border-radius: 18px;

    background: rgba(255, 255, 255, 0.96);

    color: #183d69;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.15);
}


.health-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #168cf2,
            #25ce91);

    color: #fff;

    font-size: 22px;
}


.health-message h3 {
    margin: 0;

    font-size: 18px;
}

.health-message h3 span {
    color: #1786e9;
}


.health-message p {
    margin: 4px 0 0;

    font-size: 13px;

    color: #64748b;
}


/* =========================================
   HOVER ANIMATION
========================================= */

.contact-hero-visual .medicine-image {
    animation:
        medicineFloat 5s ease-in-out infinite;
}


@keyframes medicineFloat {

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

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


.care-badge {
    animation:
        badgeFloat 4s ease-in-out infinite;
}


@keyframes badgeFloat {

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

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


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .contact-hero-container {
        grid-template-columns: 1fr 1fr;
    }

    .contact-title h1 {
        font-size: 60px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-hero-visual {
        height: 600px;
    }

    .medicine-scene {
        width: 560px;
    }

    .care-badge {
        left: 0;
        top: 120px;
    }

    .health-message {
        right: 0;
        min-width: 320px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-hero {
        min-height: auto;

        padding: 50px 0 40px;
    }


    .contact-hero-container {
        width: 90%;

        grid-template-columns: 1fr;

        min-height: auto;
    }


    .contact-hero-content {
        padding: 10px 0 30px;
    }


    .contact-logo img {
        width: 70px;
        height: 70px;
    }


    .contact-title h1 {
        font-size: 52px;

        letter-spacing: -2px;
    }


    .contact-intro {
        font-size: 16px;
    }


    .contact-info-item {
        padding: 9px 0;
    }


    .contact-info-item p {
        font-size: 13px;
    }


    .contact-cta {
        flex-wrap: wrap;
    }


    .cta-text {
        min-width: calc(100% - 75px);
    }


    .cta-btn {
        width: 100%;

        justify-content: center;
    }


    .contact-hero-visual {
        height: 470px;

        margin-top: 10px;
    }


    .medicine-scene {
        width: 100%;

        right: 0;

        bottom: 10px;
    }


    .care-badge {
        width: 110px;
        height: 110px;

        left: 0;
        top: 40px;
    }


    .badge-icon {
        width: 36px;
        height: 36px;

        font-size: 15px;
    }


    .care-badge span {
        font-size: 11px;
    }


    .health-message {
        right: 0;
        bottom: 0;

        min-width: 0;
        width: 90%;

        padding: 12px 15px;
    }


    .health-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;
    }


    .health-message h3 {
        font-size: 15px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .contact-title h1 {
        font-size: 45px;
    }

    .contact-logo img {
        width: 62px;
        height: 62px;
    }

    .contact-hero-visual {
        height: 400px;
    }

    .medicine-scene {
        width: 115%;
        right: -7%;
    }

    .care-badge {
        width: 95px;
        height: 95px;

        top: 25px;
    }

    .care-badge span {
        font-size: 9px;
    }

    .health-message {
        width: 100%;
    }

    .health-message p {
        font-size: 11px;
    }
}

/* Whatapps icone */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25D366;
    color: #fff;

    border-radius: 50%;

    font-size: 30px;

    text-decoration: none;

    z-index: 9999;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);

    transition: all 0.3s ease;

    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.08);
    color: #fff;

    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.40);
}

/* phone icon */
.phone-float {
    position: fixed;

    right: 27px;
    bottom: 100px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #1768ed;
    color: #fff;

    font-size: 22px;

    text-decoration: none;

    box-shadow:
        0 8px 25px rgba(23, 104, 237, .30);

    z-index: 9999;

    transition: .3s ease;
}

.phone-float:hover {
    color: #fff;

    transform: scale(1.1);

    box-shadow:
        0 10px 30px rgba(23, 104, 237, .45);
}

@media (max-width: 767px) {

    .phone-float {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 80px;

        font-size: 19px;
    }

}   
/* phone icon end */


@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow:
            0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}


@media (max-width: 576px) {

    .whatsapp-float {
        width: 52px;
        height: 52px;

        right: 18px;
        bottom: 18px;

        font-size: 27px;
    }
}

/* contacrt page banner end */


/* About us banner start */

/* ==========================================
   ABOUT HERO
========================================== */

.about-hero {
    position: relative;

    min-height: 760px;

    overflow: hidden;

    color: #fff;

    background:
        linear-gradient(110deg,
            #1768ed 0%,
            #197ddd 38%,
            #16a6c5 68%,
            #15b875 100%);
}


/* ==========================================
   DOT PATTERN
========================================== */

.about-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        radial-gradient(rgba(255, 255, 255, 0.15) 1px,
            transparent 1px);

    background-size: 22px 22px;

    opacity: .25;

    pointer-events: none;
}


/* ==========================================
   DECORATIVE CIRCLES
========================================== */

.about-circle {
    position: absolute;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    pointer-events: none;
}

.circle-1 {
    width: 600px;
    height: 600px;

    right: -240px;
    top: -260px;
}

.circle-2 {
    width: 400px;
    height: 400px;

    right: 50px;
    top: -170px;

    border-color: rgba(255, 255, 255, .10);
}


/* ==========================================
   CONTAINER
========================================== */

.about-container {
    position: relative;

    z-index: 2;

    width: min(1450px, 92%);

    min-height: 760px;

    margin: auto;

    display: grid;

    grid-template-columns: 48% 52%;

    align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.about-content {
    padding: 40px 0;
}


/* ==========================================
   BREADCRUMB
========================================== */

.about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-bottom: 30px;

    font-size: 14px;
}

.about-breadcrumb span {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 9px 15px;

    border-radius: 30px;

    border: 1px solid rgba(255, 255, 255, .3);

    background: rgba(255, 255, 255, .06);

    backdrop-filter: blur(8px);
}

.about-breadcrumb .active {
    color: #39f19b;
}

.about-breadcrumb>i {
    font-size: 11px;
}

.about-tag {
    color: #fff !important;

    background: rgba(255, 255, 255, .08) !important;
}


/* ==========================================
   MAIN TITLE
========================================== */

.about-content h1 {
    margin: 0;

    font-size: clamp(60px, 6vw, 90px);

    line-height: .95;

    font-weight: 800;

    letter-spacing: -4px;
    color:#fff;
}

.about-content h1 span {
    color: #3bf09c;
}


.about-line {
    width: 125px;

    height: 4px;

    margin: 22px 0;

    border-radius: 10px;

    background:
        linear-gradient(90deg,
            #fff,
            #3bf09c);
}


/* ==========================================
   SUB HEADING
========================================== */

.about-content h2 {
    margin: 0 0 20px;

    font-size: clamp(30px, 3vw, 44px);

    line-height: 1.15;

    font-weight: 750;

    color: #fff;
}

.about-content h2 span {
    color: #3bf09c;
}


/* ==========================================
   DESCRIPTION
========================================== */

.about-description {
    max-width: 590px;

    margin-bottom: 28px;

    font-size: 18px;

    line-height: 1.65;

    color: rgba(255, 255, 255, .92);
}


/* ==========================================
   FEATURES
========================================== */

.about-features {
    display: flex;

    align-items: center;

    gap: 22px;

    margin-bottom: 30px;
}


.about-feature {
    display: flex;

    align-items: center;

    gap: 12px;
}


.feature-icon {
    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #1b8cf2,
            #36e49b);

    color: #fff;

    font-size: 20px;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .12);
}


.about-feature span {
    font-size: 14px;

    font-weight: 650;

    line-height: 1.3;
}


.feature-divider {
    width: 1px;

    height: 55px;

    background: rgba(255, 255, 255, .3);
}


/* ==========================================
   MISSION CARD
========================================== */

.mission-card {
    display: flex;

    align-items: center;

    gap: 16px;

    max-width: 590px;

    padding: 18px 22px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .96);

    color: #153b67;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12);
}


.mission-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #168af0,
            #27ce96);

    color: #fff;

    font-size: 21px;
}


.mission-card p {
    margin: 0;

    font-size: 15px;

    line-height: 1.55;
}

.mission-card strong {
    color: #15a985;
}


/* ==========================================
   RIGHT VISUAL
========================================== */

.about-visual {
    position: relative;

    height: 680px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.about-image {
    width: 700px;

    max-width: 100%;

    position: absolute;

    right: -20px;

    bottom: 5px;

    z-index: 2;
}


.about-image img {
    width: 100%;

    height: auto;

    display: block;

    object-fit: contain;

    filter:
        drop-shadow(0 25px 30px rgba(0, 0, 0, .15));

    animation:
        aboutImageFloat 5s ease-in-out infinite;
}


@keyframes aboutImageFloat {

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

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


/* ==========================================
   HEALING BADGE
========================================== */

.healing-badge {
    position: absolute;

    z-index: 5;

    top: 65px;

    left: 80px;

    width: 155px;

    height: 155px;

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        rgba(20, 120, 210, .30);

    border:
        1px solid rgba(255, 255, 255, .35);

    backdrop-filter: blur(10px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .12);

    animation:
        badgeFloat 4s ease-in-out infinite;
}


.healing-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #3be99d,
            #2789ed);

    font-size: 19px;
}


.healing-badge strong {
    font-size: 16px;

    line-height: 1.15;
}

.healing-badge strong span {
    color: #3bf09c;
}

.healing-badge small {
    margin-top: 4px;

    font-size: 12px;
}


@keyframes badgeFloat {

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

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


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

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

    .about-content h1 {
        font-size: 65px;
    }

    .about-content h2 {
        font-size: 32px;
    }

    .about-description {
        font-size: 16px;
    }

    .about-features {
        gap: 12px;
    }

    .about-feature {
        gap: 7px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .about-feature span {
        font-size: 12px;
    }

    .about-image {
        width: 570px;
    }

    .healing-badge {
        left: 0;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 768px) {

    .about-hero {
        min-height: auto;

        padding: 45px 0 35px;
    }

    .about-container {
        width: 90%;

        grid-template-columns: 1fr;

        min-height: auto;
    }

    .about-content {
        padding: 10px 0 25px;
    }

    .about-breadcrumb {
        font-size: 11px;

        margin-bottom: 22px;
    }

    .about-breadcrumb span {
        padding: 7px 10px;
    }

    .about-content h1 {
        font-size: 55px;

        letter-spacing: -2px;
    }

    .about-content h2 {
        font-size: 29px;
    }

    .about-description {
        font-size: 15px;
    }

    .about-features {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 18px;
    }

    .feature-divider {
        display: none;
    }

    .mission-card {
        padding: 15px;
    }

    .about-visual {
        height: 450px;

        margin-top: 10px;
    }

    .about-image {
        width: 115%;

        right: -8%;

        bottom: 0;
    }

    .healing-badge {
        width: 110px;
        height: 110px;

        left: 0;

        top: 20px;
    }

    .healing-icon {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .healing-badge strong {
        font-size: 11px;
    }

    .healing-badge small {
        font-size: 9px;
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .about-content h1 {
        font-size: 46px;
    }

    .about-content h2 {
        font-size: 25px;
    }

    .about-features {
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;

        font-size: 15px;
    }

    .about-feature span {
        font-size: 11px;
    }

    .about-visual {
        height: 370px;
    }

    .about-image {
        width: 120%;
    }
}

/* About us banner ENd */

/* Home page banner Start  */


/* .home-hero-carousel {
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            110deg,
            #1768ed 0%,
            #1988df 45%,
            #16b77c 100%
        );
}


.hero-slide {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    overflow: hidden;
}


.hero-slide::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        radial-gradient(
            rgba(255,255,255,.15) 1px,
            transparent 1px
        );

    background-size: 22px 22px;

    opacity: .25;
}




.hero-content {
    position: relative;
    z-index: 2;

    padding: 60px 0;
}



.hero-badge {
    display: inline-block;

    padding: 10px 18px;

    margin-bottom: 22px;

    border-radius: 30px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.28);

    backdrop-filter: blur(10px);
}

.hero-badge span {
    display: block;

    color: #fff;

    font-size: 15px;

    font-weight: 700;
}

.hero-badge p {
    margin: 3px 0 0;

    font-size: 12px;

    color: rgba(255,255,255,.8);
}

.hero-content h1 {
    max-width: 650px;

    margin: 0 0 22px;

    color: #071c42;

    font-size: clamp(48px, 5.5vw, 78px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -3px;
}

.hero-content h1 span {
    color: #fff;
}


.hero-content > p {
    max-width: 580px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.95);

    font-size: 18px;

    line-height: 1.65;
}


.hero-buttons {
    display: flex;

    align-items: center;

    gap: 25px;
}


.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 15px;

    padding: 15px 24px;

    border-radius: 12px;

    background: #fff;

    color: #1768ed;

    font-weight: 700;

    border: none;

    transition: .3s ease;
}

.hero-btn:hover {
    color: #fff;

    background: #1768ed;

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0,0,0,.15);
}


.hero-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #fff;

    text-decoration: none;

    font-weight: 700;
}

.hero-link:hover {
    color: #39f19b;
}



.hero-image {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;
    align-items: flex-end;

    min-height: 620px;
}


.hero-image img {
    width: 100%;

    max-width: 680px;

    max-height: 650px;

    object-fit: contain;

    object-position: center bottom;

    filter:
        drop-shadow(
            0 25px 35px rgba(0,0,0,.14)
        );

    animation:
        heroImageFloat 5s ease-in-out infinite;
}


@keyframes heroImageFloat {

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

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


.homeHero-prev,
.homeHero-next {
    position: absolute;

    z-index: 10;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: rgba(255,255,255,.15);

    border: 1px solid rgba(255,255,255,.3);

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition: .3s ease;
}

.homeHero-prev {
    left: 25px;
}

.homeHero-next {
    right: 25px;
}

.homeHero-prev:hover,
.homeHero-next:hover {
    background: #fff;

    color: #1768ed;

    transform: scale(1.08);
}

.homeHero-pagination {
    position: absolute;

    z-index: 10;

    bottom: 25px !important;

    left: 50% !important;

    transform: translateX(-50%);

    width: auto !important;
}

.homeHero-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;

    opacity: .5;

    background: #fff;
}

.homeHero-pagination .swiper-pagination-bullet-active {
    width: 28px;

    border-radius: 20px;

    opacity: 1;

    background: #39f19b;
}


@media (max-width: 991px) {

    .hero-slide {
        min-height: auto;

        padding: 50px 0;
    }

    .hero-content {
        padding: 20px 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-image {
        min-height: 450px;
    }

    .hero-image img {
        max-width: 520px;
    }
}


@media (max-width: 767px) {

    .hero-slide {
        padding: 45px 0 70px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 44px;

        letter-spacing: -2px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        justify-content: center;

        flex-wrap: wrap;

        gap: 15px;
    }

    .hero-image {
        min-height: 360px;

        margin-top: 20px;
    }

    .hero-image img {
        max-width: 400px;
    }

    .homeHero-prev,
    .homeHero-next {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }

    .homeHero-prev {
        left: 10px;
    }

    .homeHero-next {
        right: 10px;
    }

} */

/* home page banner End */



/* responsive every banner contant and image  */

@media (max-width: 767px) {

    /* ================================
       COMPACT MOBILE HERO
    ================================= */

    .banner-section-two,
    .about-hero,
    .home-hero-carousel {
        min-height: 0 !important;
        height: auto !important;
    }


    /* Container */

    .banner-section-two .container,
    .about-container,
    .hero-slide .container {
        min-height: 0 !important;
        height: auto !important;
    }


    /* Row */

    .banner-section-two .row,
    .hero-slide .row {
        min-height: 0 !important;
        align-items: center !important;
    }


    /* ================================
       CONTENT
    ================================= */

    .banner-content,
    .about-content,
    .hero-content {
        position: relative;

        z-index: 5;

        padding: 35px 0 20px !important;

        max-width: 62%;
    }


    .banner-content h1,
    .about-content h1,
    .hero-content h1 {
        font-size: 36px !important;

        line-height: 1.05 !important;

        margin-bottom: 12px !important;

        letter-spacing: -1px !important;
    }


    .banner-content h2,
    .about-content h2,
    .hero-content h2 {
        font-size: 23px !important;

        line-height: 1.15 !important;
    }


    .banner-content>p,
    .about-description,
    .hero-content>p {
        font-size: 13px !important;

        line-height: 1.45 !important;

        margin-bottom: 16px !important;

        max-width: 100% !important;
    }


    /* ================================
       IMAGE
    ================================= */

    .banner-img,
    .about-visual,
    .hero-image {
        position: absolute !important;

        right: -5px !important;

        bottom: 0 !important;

        width: 48% !important;

        height: auto !important;

        min-height: 0 !important;

        display: flex !important;

        align-items: flex-end !important;

        justify-content: flex-end !important;

        z-index: 3;
    }


    .banner-img img,
    .about-image img,
    .hero-image img {
        width: 100% !important;

        max-width: 100% !important;

        max-height: 320px !important;

        object-fit: contain !important;

        object-position: bottom right !important;
    }


    /* ================================
       HERO HEIGHT
    ================================= */

    .banner-section-two,
    .hero-slide {
        min-height: 430px !important;

        height: 430px !important;

        overflow: hidden;
    }


    .about-hero {
        min-height: 450px !important;

        height: 450px !important;

        overflow: hidden;
    }


    /* ================================
       BUTTON
    ================================= */

    .hero-buttons {
        gap: 8px !important;

        flex-wrap: wrap;
    }

    .hero-btn {
        padding: 10px 15px !important;

        font-size: 12px !important;
    }

    .hero-link {
        font-size: 12px !important;
    }


    /* ================================
       BREADCRUMB
    ================================= */

    .about-breadcrumb {
        margin-bottom: 14px !important;

        font-size: 10px !important;
    }

    .about-breadcrumb .about-tag {
        display: none !important;
    }


    /* ================================
       FEATURES
    ================================= */

    .about-features {
        grid-template-columns: 1fr 1fr !important;

        gap: 8px !important;

        margin-bottom: 10px !important;
    }


    .about-feature span {
        font-size: 9px !important;
    }


    .feature-icon {
        width: 32px !important;

        height: 32px !important;

        font-size: 13px !important;
    }


    /* ================================
       HIDE EXTRA DECORATIONS
    ================================= */

    .about-circle,
    .healing-badge {
        display: none !important;
    }


    /* ================================
       MISSION CARD
    ================================= */

    .mission-card {
        display: none !important;
    }


    /* ================================
       SWIPER
    ================================= */

    .homeHero-prev,
    .homeHero-next {
        width: 32px !important;

        height: 32px !important;

        font-size: 10px !important;
    }


    .homeHero-prev {
        left: 8px !important;
    }

    .homeHero-next {
        right: 8px !important;
    }


    .homeHero-pagination {
        bottom: 10px !important;
    }

}

/* responsive every banner contant and image  */

/* Medicine second card start */

/* ==========================================
   MEDICINE LIST SECTION
========================================== */

.medicine-list-section {
    position: relative;
    padding: 90px 0 100px;
    overflow: hidden;

    background:
        radial-gradient(circle at 10% 10%,
            rgba(21, 184, 124, .08),
            transparent 30%),
        radial-gradient(circle at 90% 20%,
            rgba(23, 104, 237, .07),
            transparent 30%),
        #ffffff;
}


.medicine-list-container {
    width: min(1500px, 92%);
    margin: auto;
}


/* ==========================================
   HEADING
========================================== */

.medicine-section-heading {
    text-align: center;
    margin-bottom: 45px;
}


.medicine-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;

    border-radius: 50px;

    color: #087b58;

    background: #edf8f4;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 15px;
}


.medicine-eyebrow i {
    color: #16a66f;
}


.medicine-section-heading h2 {
    margin: 0;

    padding-top: 10px;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.1;

    font-weight: 800;

    background:
        linear-gradient(90deg,
            #1768ed,
            #13a878);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.medicine-section-heading p {
    margin: 12px 0 15px;

    padding-top:10px;

    color: #607080;

    font-size: 16px;
}


.medicine-heading-line {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;
}


.medicine-heading-line span {
    width: 55px;
    height: 1px;

    background: #80b9a4;
}


.medicine-heading-line i {
    color: #13a878;
    font-size: 15px;
}


/* ==========================================
   SEARCH
========================================== */

.medicine-search-box {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 10px;

    margin-bottom: 30px;

    background: rgba(255, 255, 255, .9);

    border: 1px solid #e8efed;

    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(19, 69, 93, .08);
}


.medicine-search {
    flex: 1;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 0 15px;
}


.medicine-search i {
    color: #1768ed;

    font-size: 18px;
}


.medicine-search input {
    width: 100%;

    border: none;
    outline: none;

    background: transparent;

    color: #20344f;

    font-family: inherit;

    font-size: 15px;

    padding: 13px 0;
}


.medicine-search input::placeholder {
    color: #8a99a8;
}


.medicine-filter-btn {
    display: flex;

    align-items: center;

    gap: 9px;

    padding: 13px 25px;

    border: none;

    border-radius: 12px;

    color: #fff;

    background:
        linear-gradient(135deg,
            #1768ed,
            #13b47d);

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    transition: .3s ease;
}


.medicine-filter-btn:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 20px rgba(23, 104, 237, .2);
}


/* ==========================================
   GRID
========================================== */

.medicine-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* ==========================================
   CARD
========================================== */

.medicine-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 350px;

    overflow: hidden;

    border-radius: 24px;

    background: #fff;

    border: 1px solid #e7efec;

    box-shadow:
        0 10px 30px rgba(20, 70, 80, .07);

    opacity: 0;

    transform: translateY(35px);

    animation:
        medicineCardReveal .7s ease forwards;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}


.medicine-card:nth-child(1) {
    animation-delay: .05s;
}

.medicine-card:nth-child(2) {
    animation-delay: .12s;
}

.medicine-card:nth-child(3) {
    animation-delay: .19s;
}

.medicine-card:nth-child(4) {
    animation-delay: .26s;
}

.medicine-card:nth-child(5) {
    animation-delay: .33s;
}

.medicine-card:nth-child(6) {
    animation-delay: .40s;
}


@keyframes medicineCardReveal {

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


.medicine-card:hover {
    transform: translateY(-8px);

    border-color: rgba(23, 104, 237, .25);

    box-shadow:
        0 22px 50px rgba(23, 104, 237, .12);
}


/* ==========================================
   CARD HEADER
========================================== */

.medicine-card-header {
    position: relative;

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 18px 25px;

    background:
        linear-gradient(135deg,
            #eff9f5,
            #e8f5f2);

    border-bottom: 2px solid #1768ed;
}


.medicine-card-header h3 {
    margin: 0;

    color: #1768c9;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 800;
}


.medicine-card-header h3 span {
    display: inline;
}


.medicine-icon {
    flex: 0 0 46px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #139b72;

    font-size: 20px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, .06);

    transition: .35s ease;
}


.medicine-card:hover .medicine-icon {
    transform:
        rotate(8deg) scale(1.08);
}


/* ==========================================
   CARD BODY
========================================== */

.medicine-card-body {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding: 23px 25px 20px;
}


.medicine-symptoms {
    display: flex;

    flex-direction: column;

    gap: 14px;

    padding: 0;
    margin: 0;

    list-style: none;
}


.medicine-symptoms li {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    color: #354451;

    font-size: 15px;

    line-height: 1.5;
}


.medicine-symptoms li i {
    flex: 0 0 auto;

    margin-top: 4px;

    color: #0ba879;

    font-size: 13px;
}


/* ==========================================
   DOSAGE
========================================== */

.medicine-dose {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: auto;

    padding: 15px 17px;

    border-left: 4px solid #1768ed;

    border-radius: 0 15px 15px 0;

    background:
        linear-gradient(100deg,
            #edf8f4,
            #f2f9f7);

    color: #17624e;
}


.medicine-dose i {
    color: #0b9c73;

    font-size: 20px;
}


.medicine-dose strong {
    font-size: 14px;

    line-height: 1.4;
}


/* ==========================================
   SEARCH RESULT
========================================== */

.medicine-card.medicine-hidden {
    display: none !important;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1100px) {

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

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .medicine-list-section {
        padding: 60px 0 70px;
    }


    .medicine-list-container {
        width: 92%;
    }


    .medicine-section-heading {
        margin-bottom: 30px;
    }


    .medicine-eyebrow {
        font-size: 11px;

        padding: 7px 13px;
    }


    .medicine-section-heading h2 {
        font-size: 38px;
    }


    .medicine-section-heading p {
        font-size: 14px;
    }


    .medicine-search-box {
        padding: 7px;

        border-radius: 15px;
    }


    .medicine-search {
        padding: 0 10px;
    }


    .medicine-search input {
        font-size: 13px;
    }


    .medicine-filter-btn {
        padding: 11px 14px;

        font-size: 12px;
    }


    .medicine-filter-btn i {
        display: none;
    }


    .medicine-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .medicine-card {
        min-height: auto;

        border-radius: 20px;
    }


    .medicine-card-header {
        min-height: 70px;

        padding: 16px 18px;
    }


    .medicine-card-header h3 {
        font-size: 16px;
    }


    .medicine-icon {
        width: 40px;
        height: 40px;

        flex-basis: 40px;

        font-size: 17px;
    }


    .medicine-card-body {
        padding: 20px 18px 18px;
    }


    .medicine-symptoms {
        gap: 11px;
    }


    .medicine-symptoms li {
        font-size: 14px;
    }


    .medicine-dose {
        margin-top: 20px;

        padding: 13px 14px;
    }


    .medicine-dose strong {
        font-size: 13px;
    }

}



/* medicice secnd card end */

/* navbar css start */

/* =========================================
   HEADER - TRANSPARENT AT TOP
   WHITE AFTER SCROLL
========================================= */

.header.header-two.home-menu {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 102px;

    background: transparent !important;
    box-shadow: none !important;

    z-index: 9999;

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================
   AFTER SCROLL
========================================= */

.header.header-two.home-menu.nav-scrolled {
    position: fixed !important;
    top: 0;
    left: 0;

    background: #fff !important;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08) !important;
}


/* =========================================
   HEADER NAV
========================================= */

.header.header-two .header-nav {
    height: 102px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.header.header-two .navbar-brand.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header.header-two .navbar-brand.logo img {
    height: 80px !important;
    width: auto;
    object-fit: contain;
}


/* =========================================
   MAIN MENU
========================================= */

.header.header-two .main-menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.header.header-two .main-nav {
    display: flex !important;
    align-items: center;
    justify-content: center;

    gap: 24px !important;

    margin: 0;
    padding: 0;
}

.header.header-two .main-nav>li {
    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   MENU BUTTONS
========================================= */

.header.header-two .main-nav>li>a.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 46px;
    padding: 0 20px;

    background: #3169ed !important;
    color: #fff !important;

    border-radius: 30px;

    font-size: 18px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}

.header.header-two .main-nav>li>a.main-menu:hover {
    background: #2459d7 !important;
    color: #fff !important;
    transform: translateY(-2px);
}


/* =========================================
   BOOK APPOINTMENT
========================================= */

.header.header-two .header-navbar-rht {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;
}

.header.header-two .header-navbar-rht .btn-secondary {
    min-width: 222px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0 28px;

    background: #20ad5a !important;
    border: 0 !important;

    color: #fff !important;

    border-radius: 35px;

    font-size: 18px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.header.header-two .header-navbar-rht .btn-secondary:hover {
    background: #159548 !important;
    color: #fff !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .header.header-two.home-menu {
        position: absolute !important;
        height: 80px;
        background: transparent !important;
        box-shadow: none !important;
    }

    .header.header-two.home-menu.nav-scrolled {
        position: fixed !important;
        background: #fff !important;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08) !important;
    }

    .header.header-two .header-nav {
        height: 80px;
    }

    .header.header-two .navbar-brand.logo img {
        height: 65px !important;
    }

    .header.header-two .header-navbar-rht {
        display: none !important;
    }

    .header.header-two .header-items {
        margin-top: 25px !important;
        padding-top: 5px;
    }
}

/* =========================================
   MOBILE MENU SPACING
========================================= */

@media (max-width: 991px) {

    .header.header-two .main-menu-wrapper {
        padding-top: 8px;
    }

    .header.header-two .main-nav {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;

        gap: 6px !important;

        padding: 0 13px !important;
        margin: 0 !important;
    }

    .header.header-two .main-nav>li {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }

    .header.header-two .main-nav>li>a.main-menu {
        width: 100%;
        height: 38px;

        padding: 0 15px;

        border-radius: 22px;

        font-size: 14px;
    }
}


/* navbar css end */

/* =========================================================
   MOBILE MENU - SECOND SCREENSHOT STYLE
========================================================= */

@media (max-width: 991px) {

    /* -----------------------------------------
       HEADER
    ----------------------------------------- */

    .header.header-two.home-menu {
        height: 80px;
    }

    .header.header-two .header-nav {
        height: 80px;
    }


    /* -----------------------------------------
       MOBILE MENU DRAWER
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper {
        position: fixed !important;

        top: 0 !important;
        left: 0 !important;

        width: 80% !important;
        max-width: 320px !important;
        height: 100vh !important;

        background: #fff !important;

        z-index: 99999 !important;

        overflow-y: auto !important;
        overflow-x: hidden !important;

        padding: 0 !important;

        display: block !important;

        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.08);
    }


    /* -----------------------------------------
       MOBILE MENU HEADER
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .menu-header {
        height: 70px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        padding: 0 18px !important;

        background: #fff !important;

        border-bottom: 1px solid #e5e7eb;
    }


    /* Logo inside mobile drawer */

    .header.header-two .main-menu-wrapper .menu-header .menu-logo {
        height: auto !important;

        display: flex !important;
        align-items: center !important;

        margin: 0 !important;
    }

    .header.header-two .main-menu-wrapper .menu-header .menu-logo img {
        width: 42px !important;
        height: auto !important;
        max-height: 45px !important;

        object-fit: contain;
    }


    /* -----------------------------------------
       CLOSE BUTTON
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .menu-header .menu-close {
        width: 30px !important;
        height: 30px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border: 1px solid #e1e5eb !important;
        border-radius: 50% !important;

        color: #1f2937 !important;

        font-size: 15px !important;

        background: #fff !important;

        text-decoration: none !important;
    }

    .header.header-two .main-menu-wrapper .menu-header .menu-close:hover {
        background: #f5f7fa !important;
    }


    /* -----------------------------------------
       MAIN NAV
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .main-nav {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;

        gap: 0 !important;

        margin: 0 !important;
        padding: 0 18px !important;

        list-style: none !important;
    }


    /* -----------------------------------------
       NAV ITEMS
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .main-nav>li {
        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #dfe5ed !important;
    }


    /* -----------------------------------------
       NAV LINKS
       IMPORTANT: REMOVE BLUE PILLS
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .main-nav>li>a.main-menu {

        width: 100% !important;

        height: 48px !important;

        display: flex !important;
        align-items: center !important;

        justify-content: flex-start !important;

        padding: 0 7px !important;

        margin: 0 !important;

        background: transparent !important;
        background-color: transparent !important;

        border: 0 !important;
        border-radius: 0 !important;

        color: #3169ed !important;

        font-size: 14px !important;
        font-weight: 500 !important;

        text-decoration: none !important;

        transform: none !important;

        box-shadow: none !important;
    }


    /* Hover */

    .header.header-two .main-menu-wrapper .main-nav>li>a.main-menu:hover {

        background: transparent !important;

        color: #2459d7 !important;

        transform: none !important;
    }


    /* Active */

    .header.header-two .main-menu-wrapper .main-nav>li.active>a.main-menu {

        background: transparent !important;

        color: #3169ed !important;
    }


    /* -----------------------------------------
       CONTACT / SOCIAL AREA
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .header-items {

        width: 100% !important;

        margin: 0 !important;

        padding: 28px 18px 30px !important;

        display: block !important;
    }


    /* Contact block */

    .header.header-two .main-menu-wrapper .about-popup-item {

        margin: 0 !important;

        padding: 0 !important;

        border: 0 !important;
    }


    .header.header-two .main-menu-wrapper .about-popup-item+.about-popup-item {

        margin-top: 30px !important;
    }


    /* Contact title */

    .header.header-two .main-menu-wrapper .about-popup-item .title {

        color: #172033 !important;

        font-size: 18px !important;

        font-weight: 600 !important;

        margin-bottom: 16px !important;
    }


    /* Contact items */

    .header.header-two .main-menu-wrapper .support-item {

        display: flex !important;

        align-items: center !important;

        gap: 10px !important;

        margin-bottom: 14px !important;
    }


    /* Contact icon */

    .header.header-two .main-menu-wrapper .support-item .avatar {

        width: 40px !important;
        min-width: 40px !important;

        height: 40px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        background: #3169ed !important;

        color: #fff !important;

        border-radius: 50% !important;
    }


    /* Contact text */

    .header.header-two .main-menu-wrapper .support-item p.title {

        margin: 0 0 3px !important;

        font-size: 12px !important;

        color: #687386 !important;
    }

    .header.header-two .main-menu-wrapper .support-item h5.link {

        margin: 0 !important;

        font-size: 13px !important;

        color: #526078 !important;

        font-weight: 500 !important;

        word-break: break-word;
    }


    /* -----------------------------------------
       FOLLOW US
    ----------------------------------------- */

    .header.header-two .main-menu-wrapper .social-iyem {

        display: flex !important;

        align-items: center !important;

        gap: 8px !important;

        margin: 0 !important;

        padding: 0 !important;
    }

    .header.header-two .main-menu-wrapper .social-iyem li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .header.header-two .main-menu-wrapper .social-icon {

        width: 30px !important;
        height: 30px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        border: 1px solid #dfe5ed !important;

        border-radius: 50% !important;

        color: #526078 !important;

        background: #fff !important;

        font-size: 13px !important;
    }


    /* -----------------------------------------
       MOBILE HAMBURGER
    ----------------------------------------- */

    .header.header-two #mobile_btn {

        width: 38px !important;
        height: 38px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        border: 1px solid #e1e5eb !important;

        border-radius: 50% !important;

        background: #fff !important;

        color: #172033 !important;

        z-index: 10000 !important;
    }


    /* -----------------------------------------
       MOBILE LOGO
    ----------------------------------------- */

    .header.header-two .navbar-brand.logo img {

        height: 65px !important;

        width: auto !important;
    }


    /* Appointment hidden on mobile */

    .header.header-two .header-navbar-rht {
        display: none !important;
    }
}

/* vido css */
.about-video {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

@media (max-width: 991px) {
    .about-video {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .about-video {
        height: 300px;
    }
}

/* video css end */

/* =========================================
   ABOUT VIDEO - MOBILE FIX
========================================= */

.about-img-two {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.about-img-two .about-video {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;

    width: 80% !important;
    height: 655px !important;

    object-fit: cover;
    border-radius: 12px;
}


@media (max-width: 991px) {

    .about-img-two {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        width: 100% !important;
        height: auto !important;
    }

    .about-img-two .about-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;

        width: 100% !important;
        height: 400px !important;

        object-fit: cover;
    }
}


@media (max-width: 575px) {

    .about-img-two {
        display: block !important;
    }

    .about-img-two .about-video {
        display: block !important;

        width: 125% !important;
        height: 500px !important;

        min-height: 300px !important;
    }


}


.about-video-wrapper {
    position: relative;
    width: 100%;
}

.about-video {
    width: 100%;
    height: 500px;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.video-sound-btn {
    position: absolute;
    right: 190px;
    bottom: 10px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 5;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

@media (max-width: 991px) {
    .about-video {
        height: 400px;
    }
}

@media (max-width: 575px) {
    .about-video {
        height: 300px;
    }

    .video-sound-btn {
        position: absolute;
        right: 2px;
        bottom: 10px;
    }

}

/* video css end */

/*--------------------- lodder start */

/* ==========================================
    PAGE LOADER
========================================== */

.page-loader {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #1768ed 0%,
            #159bd0 50%,
            #13b57d 100%
        );

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity .5s ease,
        visibility .5s ease;
}



.page-loader.loader-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}




.loader-content {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.loader-logo {
    position: relative;

    width: 100px;
    height: 100px;

    padding: 10px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

/* Logo */
.loader-logo img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    border-radius: 50%;
}


/* Animated circle around logo */
.loader-logo::before {
    content: "";

    position: absolute;

    inset: -7px;

    border-radius: 50%;

    border: 3px solid transparent;

    border-top-color: #ffffff;
    border-right-color: #21d4a3;
    border-bottom-color:#316DFF;
    border-left-color: #ffe710 ;

    animation: logoLoader 1.2s linear infinite;
}

.loader-content p {
    margin: 18px 0 0;

    color: #ffffff;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: .5px;
}


/* Logo animation */

@keyframes loaderLogo {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

}


@keyframes logoLoader {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* Spinner animation */

@keyframes loaderSpin {

    to {
        transform: rotate(360deg);
    }

}
/* lodder end  */

/* =========================================
   SOCIAL FLOATING BUTTON
========================================= */

.social-float {
    position: fixed;

    right: 30px;
    bottom: 172px;

    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Main Button */

.social-main-btn {
    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #1768ed,
            #13b77c
        );

    color: #fff;

    font-size: 21px;

    cursor: pointer;

    box-shadow:
        0 8px 25px rgba(23,104,237,.30);

    transition: .35s ease;
}

.social-main-btn:hover {
    transform: rotate(90deg) scale(1.08);
}


/* Social Links */

.social-links {
    position: absolute;

    bottom: 68px;

    display: flex;
    flex-direction: column;

    gap: 10px;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(15px)
        scale(.8);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}


/* Show */

.social-float:hover .social-links,
.social-float.active .social-links {
    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);
}


/* Individual Icons */

.social-links a {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    text-decoration: none;

    font-size: 19px;

    box-shadow:
        0 7px 18px rgba(0,0,0,.18);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.social-links a:hover {
    transform: scale(1.12);

    box-shadow:
        0 10px 25px rgba(0,0,0,.22);
}


/* Facebook */

.social-facebook {
    background: #1877f2;
}


/* Instagram */

.social-instagram {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}


/* YouTube */

.social-youtube {
    background: #ff0000;
}   

@media (max-width: 576px) {

    .social-float {
        right: 18px;
        bottom: 135px;
    }

    .social-main-btn {
        width: 50px;
        height: 50px;

        font-size: 19px;
    }

    .social-links {
        bottom: 62px;
    }

    .social-links a {
        width: 42px;
        height: 42px;

        font-size: 17px;
    }

}


/* Languager css start */

/* =========================================
   LANGUAGE SWITCHER
========================================= */

.language-switcher {
    position: relative;
    margin-left: 15px;
    z-index: 10000;
}


/* Main Button */

.language-btn {
    height: 44px;
    min-width: 125px;

    padding: 0 14px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 12px;

    background: #3169ed;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}


.language-btn:hover {
    background: #2459d7 !important;

    color: white;

    transform: translateY(-2px);
}


.language-btn i:first-child {
    font-size: 16px;
}


.language-arrow {
    font-size: 10px;

    transition: transform 0.3s ease;
}


.language-switcher.active .language-arrow {
    transform: rotate(180deg);
}


/* Dropdown */

.language-dropdown {
    position: absolute;

    top: calc(100% + 10px);
    right: 0;

    width: 145px;

    padding: 6px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-8px);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}


.language-switcher.active .language-dropdown {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


/* Dropdown buttons */

.language-dropdown button {
    width: 100%;

    padding: 11px 13px;

    border: none;

    border-radius: 8px;

    background: transparent;

    color: #174d3b;

    font-size: 14px;
    font-weight: 600;

    text-align: left;

    cursor: pointer;

    transition: all 0.2s ease;
}


.language-dropdown button:hover {
    background: #eaf7f2;

    color: #1976d2;
}


/* Selected language */

.language-dropdown button.selected {
    background: #eef8f5;

    color: #1976d2;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .language-switcher {
        margin: 15px 0 0;
    }

    .language-btn {
        min-width: 120px;

        background: #ffffff;

        color: #1768ed;

        border: 1px solid #dce8f5;
    }

    .language-dropdown {
        left: 0;
        right: auto;
    }

}
/* language css end  */


/* apna code using human body start */

    .anatomy-section {
    padding: 100px 5%;
    background: #f7f8f9;
}

.anatomy-header {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}

.anatomy-label {
    display: inline-block;
    color: #b84f42;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.anatomy-header h2 {
    margin: 0 0 15px;
    color: #18212b;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
}

.anatomy-header p {
    margin: 0;
    color: #65717d;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}


/* MAIN AREA */

.anatomy-wrapper {
    max-width: 1400px;
    margin: auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;

    gap: 20px;
}


/* 3D VIEWER */

.anatomy-viewer {
    position: relative;

    height: 700px;

    overflow: hidden;

    border-radius: 25px;

    background:
        radial-gradient(
            circle at center,
            #ffffff 0%,
            #f2f4f5 100%
        );

    border: 1px solid #e1e5e8;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08);
}

#anatomyCanvas {
    width: 100%;
    height: 100%;

    display: block;

    cursor: grab;

    touch-action: none;
}

#anatomyCanvas:active {
    cursor: grabbing;
}


/* BUTTONS */

.anatomy-controls {
    position: absolute;

    top: 20px;
    left: 20px;

    display: flex;

    gap: 5px;

    padding: 5px;

    background: rgba(255, 255, 255, 0.92);

    border: 1px solid #e2e6e9;

    border-radius: 12px;
}

.anatomy-view-btn {
    border: none;

    background: transparent;

    color: #65717d;

    padding: 9px 13px;

    border-radius: 8px;

    font-size: 12px;

    font-weight: 700;

    cursor: pointer;

    transition: all 0.2s ease;
}

.anatomy-view-btn:hover {
    color: #18212b;
}

.anatomy-view-btn.active {
    background: #18212b;

    color: white;
}


/* HOVER LABEL */

.anatomy-hover-label {
    position: absolute;

    display: none;

    pointer-events: none;

    transform: translate(12px, -50%);

    padding: 8px 12px;

    background: #18212b;

    color: white;

    border-radius: 20px;

    font-size: 12px;

    font-weight: 700;

    white-space: nowrap;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.2);
}

.anatomy-hover-label span {
    width: 7px;
    height: 7px;

    display: inline-block;

    margin-right: 7px;

    border-radius: 50%;

    background: #ff9f91;
}


/* HELP */

.anatomy-help {
    position: absolute;

    left: 50%;
    bottom: 18px;

    transform: translateX(-50%);

    padding: 9px 15px;

    background: rgba(255,255,255,.9);

    border: 1px solid #e2e6e9;

    border-radius: 30px;

    color: #65717d;

    font-size: 11px;

    font-weight: 600;

    white-space: nowrap;
}


/* INFORMATION CARD */

.anatomy-info {
    min-height: 700px;

    padding: 35px;

    background: white;

    border: 1px solid #e1e5e8;

    border-radius: 25px;

    box-shadow:
        0 20px 60px rgba(0,0,0,.05);

    display: flex;

    flex-direction: column;
}

.anatomy-info-top {
    display: flex;

    justify-content: space-between;
}

.anatomy-info-top span:first-child {
    color: #b84f42;

    font-size: 11px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.anatomy-info-top span:last-child {
    color: #a8b0b7;

    font-size: 12px;

    font-weight: 700;
}

.anatomy-info h3 {
    margin: 35px 0 15px;

    color: #18212b;

    font-size: 42px;

    line-height: 1;

    font-weight: 800;
}

.anatomy-info > p {
    margin: 0;

    color: #65717d;

    font-size: 15px;

    line-height: 1.8;

    font-weight: 500;
}


/* FACTS */

.anatomy-facts {
    margin-top: 35px;

    border-top: 1px solid #e4e8eb;
}

.anatomy-fact {
    display: flex;

    gap: 15px;

    padding: 18px 0;

    border-bottom: 1px solid #e4e8eb;
}

.anatomy-fact > span {
    color: #b84f42;

    font-size: 10px;

    font-weight: 800;
}

.anatomy-fact strong {
    display: block;

    margin-bottom: 5px;

    color: #18212b;

    font-size: 12px;

    font-weight: 800;
}

.anatomy-fact p {
    margin: 0;

    color: #65717d;

    font-size: 12px;

    font-weight: 500;
}


/* TIP */

.anatomy-tip {
    margin-top: auto;

    padding: 15px;

    background: #f5f7f8;

    border-radius: 12px;

    color: #65717d;

    font-size: 11px;

    line-height: 1.6;

    font-weight: 600;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .anatomy-wrapper {
        grid-template-columns: 1fr;
    }

    .anatomy-info {
        min-height: auto;
    }

}


@media (max-width: 600px) {

    .anatomy-section {
        padding: 70px 18px;
    }

    .anatomy-header h2 {
        font-size: 34px;
    }

    .anatomy-viewer {
        height: 550px;
    }

    .anatomy-controls {
        top: 10px;
        left: 10px;
    }

    .anatomy-view-btn {
        padding: 8px 9px;
        font-size: 10px;
    }

    .anatomy-info {
        padding: 25px;
        border-radius: 20px;
    }

    .anatomy-info h3 {
        font-size: 34px;
    }

}

/* apna code using human body End  */



/* Blog Page css Start */

/* =========================
   BLOG SECTION
========================= */

.blog-section {
    padding: 90px 0;
    background: #f8fbfc;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(30, 130, 220, 0.1);
    color: #1685d8;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading h1 {
    font-size: 46px;
    font-weight: 800;
    color: #102a43;
    margin-bottom: 15px;
}

.section-heading h1 span {
    color: #1685d8;
}

.section-heading p {
    color: #667085;
    font-size: 17px;
    line-height: 1.7;
}

/* Blog Card */

.blog-card {
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(22, 133, 216, 0.08);
    box-shadow: 0 15px 45px rgba(16, 42, 67, 0.08);
    transition: all 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(16, 42, 67, 0.14);
}

/* Image */

.blog-image {
    height: 230px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.07);
}

/* Content */

.blog-content {
    padding: 25px;
}

.blog-category {
    display: inline-block;
    color: #1685d8;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #102a43;
    margin-bottom: 12px;
}

.blog-content p {
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1685d8;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: #16a085;
    gap: 13px;
}



/* ================= BLOG SECTION ================= */

.blog-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: #f8fcfb;
}

/* Heading */

.blog-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.blog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    margin-bottom: 15px;

    color: #087f8c;
    background: #e7f7f3;

    border: 1px solid rgba(8, 127, 140, 0.15);
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}

.blog-badge i {
    font-size: 14px;
}

.blog-heading h2 {
    margin-bottom: 14px;

    color: #14213d;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
}

.blog-heading h2 span {
    background: linear-gradient(90deg, #087f8c, #19b56b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-heading p {
    margin: 0;

    color: #687789;
    font-size: 16px;
    line-height: 1.8;
    font-weight: 500;
}


/* ================= CARD ================= */

.blog-card {
    height: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(19, 126, 139, 0.10);
    border-radius: 22px;

    box-shadow: 0 12px 35px rgba(22, 66, 82, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.blog-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(22, 66, 82, 0.15);
}


/* Image */

.blog-image {
    position: relative;
    /* height: 235px; */
    height: 300px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}


/* Category */

.blog-category {
    position: absolute;
    left: 18px;
    bottom: 18px;

    padding: 7px 14px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #087f8c,
        #19b56b
    );

    border-radius: 20px;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}


/* Content */

.blog-content {
    padding: 25px;
}


/* Meta */

.blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 13px;

    color: #80909c;

    font-size: 13px;
    font-weight: 600;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: #0b9b88;
}


/* Title */

.blog-content h3 {
    margin-bottom: 12px;

    color: #172b4d;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 800;

    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: #087f8c;
}


/* Description */

.blog-content p {
    margin-bottom: 20px;

    color: #6f7d8a;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 500;
}


/* Read More */

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #087f8c;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: #19a765;
    gap: 13px;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}


/* View All */

.blog-view-all {
    text-align: center;
    margin-top: 45px;
}

.blog-main-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 13px 24px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #087f8c,
        #19b56b
    );

    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;

    text-decoration: none;

    box-shadow: 0 10px 25px rgba(8, 127, 140, 0.22);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.blog-main-btn:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(8, 127, 140, 0.30);
}


/* ================= DECORATIVE SHAPES ================= */

.blog-shape {
    position: absolute;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(8, 127, 140, 0.08);

    border-radius: 50%;

    pointer-events: none;
}

.blog-shape-one {
    top: 40px;
    left: -70px;
}

.blog-shape-two {
    right: -70px;
    bottom: 50px;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

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

    .blog-heading h2 {
        font-size: 34px;
    }

    .blog-image {
        height: 220px;
    }
}


@media (max-width: 575px) {

    .blog-section {
        padding: 55px 15px;
    }

    .blog-heading {
        margin-bottom: 35px;
    }

    .blog-heading h2 {
        font-size: 29px;
    }

    .blog-heading p {
        font-size: 14px;
    }

    .blog-image {
        height: 210px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-content h3 {
        font-size: 19px;
    }

    .blog-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* ================================
   Health Tips Section
================================ */

.health-tips-section {
    padding: 90px 0;
    background: #f7fbfa;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #159a85;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: 38px;
    line-height: 1.25;
    font-weight: 700;
    color: #163c4a;
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: #1688d4;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    color: #66777d;
}


/* Card */

.health-tip-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid rgba(22, 136, 212, 0.08);
    box-shadow: 0 12px 35px rgba(30, 70, 80, 0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

.health-tip-card::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: rgba(22, 136, 212, 0.06);
    transition: all 0.4s ease;
}

.health-tip-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(30, 70, 80, 0.13);
}

.health-tip-card:hover::before {
    transform: scale(2.5);
}


/* Icon */

.tip-icon {
    position: relative;
    z-index: 1;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #e8f8f4, #e8f4fc);
    color: #1688d4;
    font-size: 25px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.health-tip-card:hover .tip-icon {
    transform: rotate(-6deg) scale(1.08);
}


/* Content */

.tip-content span {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #159a85;
    margin-bottom: 7px;
}

.tip-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #163c4a;
    margin-bottom: 12px;
}

.tip-content p {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
    color: #68787d;
    margin: 0;
    padding-right: 15px;
}


/* Arrow */

.tip-arrow {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f8f7;
    color: #1688d4;
    transition: all 0.35s ease;
}

.health-tip-card:hover .tip-arrow {
    background: #1688d4;
    color: #ffffff;
    transform: translateX(5px);
}


/* Mobile */

@media (max-width: 767px) {

    .health-tips-section {
        padding: 60px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .health-tip-card {
        padding: 25px;
        border-radius: 18px;
    }

    .tip-content h3 {
        font-size: 20px;
    }

}


/* ================================
   Why Choose Us
================================ */

.why-choose-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-content {
    padding-right: 35px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #f8fcfb;
    border: 1px solid #e8f2f0;
    transition: all 0.4s ease;
}

.why-item:hover {
    transform: translateX(8px);
    box-shadow: 0 15px 35px rgba(20, 90, 90, 0.08);
    border-color: #d9eeea;
}

.why-icon {
    min-width: 58px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #e7f7f3;
    color: #159a85;
    font-size: 23px;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon {
    transform: rotate(8deg) scale(1.08);
    background: #1688d4;
    color: #ffffff;
}

.why-item h3 {
    margin: 2px 0 7px;
    font-size: 20px;
    font-weight: 700;
    color: #163c4a;
}

.why-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: #68787d;
}


/* Right Visual */

.why-visual {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-circle {
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        #e7f8f3,
        #eaf5fc
    );
    animation: circleFloat 5s ease-in-out infinite;
}

.why-main-card {
    position: relative;
    z-index: 2;
    width: 330px;
    padding: 35px;
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(22, 136, 212, 0.08);
    box-shadow: 0 25px 60px rgba(25, 70, 80, 0.14);
    text-align: center;
}

.why-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f7f3;
    color: #1688d4;
    font-size: 28px;
}

.why-main-card h3 {
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #163c4a;
}

.why-main-card p {
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    color: #68787d;
}

.why-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.why-card-bottom span {
    font-size: 14px;
    font-weight: 600;
    color: #34545c;
}

.why-card-bottom i {
    margin-right: 8px;
    color: #159a85;
}


/* Floating Card */

.floating-health-card {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(25, 70, 80, 0.15);
    animation: floatingCard 3.5s ease-in-out infinite;
}

.floating-health-card > i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #e8f7f3;
    color: #159a85;
}

.floating-health-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #163c4a;
}

.floating-health-card small {
    display: block;
    margin-top: 3px;
    font-size: 12px;
    color: #7b898d;
}


/* Animation */

@keyframes circleFloat {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

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


/* Mobile */

@media (max-width: 767px) {

    .why-choose-section {
        padding: 60px 0;
    }

    .why-content {
        padding-right: 0;
    }

    .why-item {
        padding: 18px;
        gap: 15px;
    }

    .why-icon {
        min-width: 50px;
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .why-item h3 {
        font-size: 18px;
    }

    .why-item p {
        font-size: 14px;
    }

    .why-visual {
        min-height: 370px;
        margin-top: 20px;
    }

    .why-circle {
        width: 290px;
        height: 290px;
    }

    .why-main-card {
        width: 290px;
        padding: 28px 22px;
    }

    .floating-health-card {
        right: 0;
        bottom: 15px;
    }
}


/* =================================
   BLOG APPOINTMENT CTA
================================= */

.blog-appointment-cta {
    padding: 80px 0;
    background: #f8fcfb;
}

.appointment-cta-box {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 330px;
    padding: 55px 65px;

    border-radius: 30px;

    background: linear-gradient(
        120deg,
        #087f8c,
        #1688d4 55%,
        #19a765
    );

    box-shadow: 0 25px 60px rgba(8, 127, 140, 0.20);
}

/* Decorative circles */

.appointment-cta-box::before,
.appointment-cta-box::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.appointment-cta-box::before {
    width: 300px;
    height: 300px;
    left: -150px;
    bottom: -170px;
}

.appointment-cta-box::after {
    width: 420px;
    height: 420px;
    right: -210px;
    top: -240px;
}


/* Content */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 16px;
    margin-bottom: 18px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;

    backdrop-filter: blur(8px);
}

.cta-content h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 38px;
    line-height: 1.25;
    font-weight: 800;
}

.cta-content h2 span {
    display: block;
    color: #dff9ec;
}

.cta-content p {
    max-width: 580px;
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}


/* Buttons */

.cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 22px;

    color: #087f8c;
    background: #ffffff;

    border-radius: 10px;

    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition: all 0.35s ease;
}

.cta-primary:hover {
    color: #087f8c;
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.cta-primary i {
    transition: transform 0.3s ease;
}

.cta-primary:hover i {
    transform: translateX(4px);
}


/* Phone */

.cta-phone {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #ffffff;
    text-decoration: none;
}

.cta-phone > i {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.15);

    transition: all 0.3s ease;
}

.cta-phone:hover {
    color: #ffffff;
}

.cta-phone:hover > i {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.25);
}

.cta-phone small {
    display: block;
    margin-bottom: 2px;

    color: rgba(255, 255, 255, 0.70);

    font-size: 11px;
    font-weight: 600;
}

.cta-phone span {
    font-size: 14px;
    font-weight: 700;
}


/* =================================
   Visual
================================= */

.cta-visual {
    position: relative;

    width: 260px;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-right: 20px;
}

.cta-circle {
    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.16);

    animation: ctaPulse 4s ease-in-out infinite;
}

.cta-main-icon {
    position: relative;
    z-index: 2;

    width: 125px;
    height: 125px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(12px);

    font-size: 48px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}


/* Floating Icons */

.cta-icon-card {
    position: absolute;
    z-index: 3;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.20);

    backdrop-filter: blur(10px);

    font-size: 20px;

    animation: ctaFloat 3s ease-in-out infinite;
}

.cta-icon-one {
    top: 15px;
    right: 15px;
}

.cta-icon-two {
    bottom: 15px;
    left: 10px;
    animation-delay: 1s;
}


/* Animations */

@keyframes ctaFloat {

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

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

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.06);
    }
}


/* =================================
   Mobile
================================= */

@media (max-width: 991px) {

    .appointment-cta-box {
        padding: 45px;
    }

    .cta-content {
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-visual {
        width: 200px;
        height: 200px;
    }

    .cta-circle {
        width: 180px;
        height: 180px;
    }

    .cta-main-icon {
        width: 100px;
        height: 100px;
        font-size: 38px;
    }
}


@media (max-width: 767px) {

    .blog-appointment-cta {
        padding: 55px 15px;
    }

    .appointment-cta-box {
        padding: 35px 25px;
        border-radius: 22px;
    }

    .cta-content h2 {
        font-size: 27px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-visual {
        display: none;
    }

    .cta-primary {
        width: 100%;
        justify-content: center;
    }
}

/* Blog Page Css END */



/* Galler Page Css Start */

/* ================================
   GALLERY SECTION
================================ */

.gallery-section {
    position: relative;
    padding: 90px 0;
    background: #f8fcfb;
    overflow: hidden;
}

/* Heading */

.gallery-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 8px 17px;
    margin-bottom: 15px;

    color: #087f8c;
    background: #e7f7f3;

    border: 1px solid rgba(8, 127, 140, 0.12);
    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;
}

.gallery-heading h2 {
    margin-bottom: 14px;

    color: #172b4d;

    font-size: 40px;
    line-height: 1.25;
    font-weight: 800;
}

.gallery-heading h2 span {
    color: #1688d4;
}

.gallery-heading p {
    margin: 0;

    color: #687789;

    font-size: 16px;
    line-height: 1.7;
    font-weight: 500;
}


/* Gallery Card */

.gallery-card {
    position: relative;
    height: 300px;

    overflow: hidden;

    border-radius: 22px;

    background: #ffffff;

    box-shadow: 0 12px 35px rgba(22, 66, 82, 0.09);

    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.6s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
}


/* Overlay */

.gallery-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    padding: 28px 22px 22px;

    color: #ffffff;

    background: linear-gradient(
        to top,
        rgba(8, 44, 58, 0.85),
        rgba(8, 44, 58, 0.35),
        transparent
    );

    transform: translateY(8px);

    transition:
        transform 0.4s ease;
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    display: block;

    margin-bottom: 5px;

    color: #9ce5d0;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-overlay h3 {
    margin: 0;

    color: #ffffff;

    font-size: 20px;
    font-weight: 700;
}


/* Expand Button */

.gallery-overlay button {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(8px);

    cursor: pointer;

    transition: all 0.3s ease;
}

.gallery-overlay button:hover {
    background: #ffffff;
    color: #087f8c;

    transform: rotate(8deg) scale(1.08);
}


/* Mobile */

@media (max-width: 767px) {

    .gallery-section {
        padding: 60px 15px;
    }

    .gallery-heading {
        margin-bottom: 35px;
    }

    .gallery-heading h2 {
        font-size: 29px;
    }

    .gallery-heading p {
        font-size: 14px;
    }

    .gallery-card {
        height: 250px;
        border-radius: 18px;
    }

    .gallery-overlay {
        padding: 22px 18px 18px;
    }

    .gallery-overlay h3 {
        font-size: 18px;
    }

}





/* Gallery Page CSS End */


/* Tablet par banner image visible rakho */
@media (min-width: 768px) and (max-width: 1199px) {

    .banner-section-two .banner-img {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .banner-section-two .banner-img img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
    }

}

