@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {

    --primary-color: #0d7c4a;
    --primary-dark: #075f37;
    --white-color: #ffffff;
    --black-color: #111111;
    --text-color: #666666;
    --border-color: #ececec;

    --primary-font: 'Futura', sans-serif;
    --secondary-font: 'Ainslie', sans-serif;
}

/* Primary Font Futura */
/* Secondary font Ainslie Family */

@font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/fonnts.com-futura-medobl.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Futura';
    src: url('/assets/fonts/Futura-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ainslie';
    src: url('/assets/ainslie-sans-font-family/AinslieSans-ConBol.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--secondary-font);
}

.contact-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 34px;
    background: #075f37;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Dark Hover Layer */
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0b3d2c;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

/* Hover Effect */
.contact-btn:hover::before {
    transform: scaleX(1);
}

.contact-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.35);
}

.heading {
    position: relative;
    z-index: 5;
    margin-bottom: 70px;
}

.heading .sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #0d7c4a;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    animation: fadeUp 2s ease-in-out infinite;
}

/* LEFT DOT */

.heading .sub-title::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0d7c4a;
    box-shadow: 0 0 15px rgba(13, 124, 74, 0.7);
    animation: pulseDot 1.5s infinite;
}

/* RIGHT LINE */

.heading .sub-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg,
            #0d7c4a,
            transparent);
    animation: lineWidth 2s infinite;
}

/* TEXT FLOAT */

@keyframes fadeUp {

    0% {
        transform: translateY(0px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }

    100% {
        transform: translateY(0px);
        opacity: 0.7;
    }

}

/* DOT BLINK */

@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }

}

/* LINE EFFECT */

@keyframes lineWidth {

    0% {
        width: 20px;
        opacity: 0.3;
    }

    50% {
        width: 50px;
        opacity: 1;
    }

    100% {
        width: 20px;
        opacity: 0.3;
    }

}

.heading .title {
    font-size: 50px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
    line-height: 1.1;
}

.heading .tag_p {
    max-width: 700px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

/* =========================
       HEADER TOP
    ========================= */

.header-top {
    background: #075f37;
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

/* LIGHT EFFECT */

.header-top::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(13, 124, 74, .15);
    border-radius: 50%;
    top: -220px;
    left: -120px;
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 5;
}

/* =========================
       CONTACT
    ========================= */

.header-contact {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    font-weight: 500;
    transition: .3s ease;
    font-family: var(--primary-font);
}

.header-contact a:hover {
    color: #0d7c4a;
}

.header-contact i {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: .3s ease;
}

.header-contact a:hover i {
    background: #0d7c4a;
    color: #fff;
    transform: rotate(8deg);
}

/* =========================
       SOCIAL
    ========================= */

.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-social span {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    margin-right: 5px;
}

.header-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    transition: .35s ease;
}

.header-social a:hover {
    background: #0d7c4a;
    color: #fff;
    transform: translateY(-4px);
}


/* ======== HEADER===================== */


.header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 999;
    transition: all 0.4s ease;
}

/* STICKY HEADER */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #136b39;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: headerSticky 0.4s ease;
}


@keyframes headerSticky {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header .logo_first {
    display: flex;
}

.header.sticky .logo_first {
    display: none;
}

.header .logo_stiky {
    display: none;
}

.header.sticky .logo_stiky {
    display: flex;
}

.header .navmenu>ul>li>a {
    font-size: 18px;
}

.header.sticky .navmenu>ul>li>a {
    color: #fff;
}

.header.sticky .contact-btn {
    background: #fff;
    color: #0b3d2c;
}

.header.sticky .contact-btn::before {
    background: #a8decc;
}

.header .container-xl {
    min-height: 90px;
}


.logo img {
    width: 100%;
    object-fit: contain;
}

/* =========================  NAVBAR================ */

.navmenu {
    margin-left: auto;
}

.navmenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navmenu ul li {
    position: relative;
}

.navmenu ul li a {
    text-decoration: none;
    color: var(--black-color);
    font-size: 15px;
    font-weight: 500;
    padding: 32px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
    transition: .3s;
}

.navmenu ul li a:hover {
    color: var(--primary-color);
}


/* =========================  MEGA MENU ========================= */

.listing-dropdown {
    position: static !important;
    max-height: 60vh;
    overflow-y: auto;
}

.listing-dropdown>ul {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;

    width: 100%;
    max-width: 1280px;

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;

    align-items: start;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .35s ease;
    margin-top: 20px;

     max-height: 80vh;
    overflow-y: auto;
}

.listing-dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 0;
}

.listing-dropdown > ul::-webkit-scrollbar {
    width: 8px;
}

.listing-dropdown > ul::-webkit-scrollbar-thumb {
    background: #d4d4d4;
    border-radius: 10px;
}

.listing-dropdown > ul::-webkit-scrollbar-track {
    background: transparent;
}

/* COLUMN */

.listing-dropdown ul li {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #efefef;
    padding-right: 18px;
}


.listing-dropdown ul li:last-child {
    border-right: 0;
}

/* TITLE */

.listing-dropdown ul li h5 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

/* LINKS */

.listing-dropdown ul li a {
    padding: 8px 0 !important;
    color: var(--text-color);
    font-size: 14px;
    line-height: 1;
    transition: .3s;
}

.listing-dropdown ul li a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

/* =========================
           MOBILE TOGGLE
        ========================= */

.mobile-nav-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-color);
}

.header.sticky .mobile-nav-toggle {
    color: #fff;
}

/* =========================
       HERO SECTION
    ========================= */

.doctoright-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: linear-gradient(135deg, #f7fbf9 0%, #ffffff 100%);
}

.hero-shape {
    position: absolute;
    top: -250px;
    right: -150px;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: rgba(13, 124, 74, 0.06);
}

.hero-item {
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* =========================
       CONTENT
    ========================= */

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-subtitle {
    background: rgba(13, 124, 74, 0.1);
    color: #0d7c4a;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    margin-bottom: 28px;
}

.hero-content h1 {
    font-size: 78px;
    line-height: 1;
    margin-bottom: 24px;
    color: #111;
    font-weight: 700;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin-bottom: 38px;
}

.hero-btns {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn,
.hero-outline-btn {
    padding: 16px 34px;
    border-radius: 60px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: .35s ease;
}

.hero-btn {
    background: #0d7c4a;
    color: #fff;
}

.hero-btn:hover {
    background: #075f37;
    color: #fff;
    transform: translateY(-4px);
}

.hero-outline-btn {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #111;
}

.hero-outline-btn:hover {
    background: #111;
    color: #fff;
}

/* =========================
       IMAGE AREA
    ========================= */

.hero-image {
    position: relative;
    z-index: 3;
}

.image-circle {
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(180deg, #0d7c4a 0%, #1ca163 100%);
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 540px;
    height: 650px;
    object-fit: cover;
    border-radius: 40px;
    margin-left: auto;
    display: block;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/* =========================
       FLOATING CARDS
    ========================= */

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    animation: float 3s ease-in-out infinite;
}

.floating-card span {
    font-size: 34px;
    font-weight: 700;
    color: #0d7c4a;
    display: block;
    margin-bottom: 6px;
}

.floating-card p {
    margin: 0;
    color: #555;
    font-size: 14px;
    font-weight: 500;
}

.card-one {
    top: 60px;
    left: -20px;
}

.card-two {
    bottom: 50px;
    right: 10px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}



.swiper-pagination {
    margin-top: 40px;
    position: relative;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #0d7c4a;
    opacity: .3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 34px;
    border-radius: 30px;
}

/*========================
    ABOUT SECTION
=========================*/

.about_style_one {
    position: relative;
    padding: 120px 0;
    background: #07120d;
    overflow: hidden;
}

.about_style_one::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(0, 255, 140, 0.06);
    border-radius: 50%;
    top: -200px;
    left: -120px;
}

.about_inner {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* LEFT */

.about_left {
    width: 50%;
    position: relative;
}

.image_box {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.image_box img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: 0.5s;
}

.image_box:hover img {
    transform: scale(1.08);
}

.experience_box {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: #075f37;
    padding: 30px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience_box h2 {
    font-size: 48px;
    margin: 0;
    line-height: 1;
    color: #fff;
    font-weight: 700;
}

.experience_box span {
    color: #fff;
    font-weight: 600;
}

.shape_circle {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2px dashed #00ff95;
    border-radius: 50%;
    top: -40px;
    right: -40px;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

/* RIGHT */

.about_right {
    width: 50%;
}

.sub_title {
    color: #00ff95;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: inline-block;
}

.about_right h2 {
    color: #fff;
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.about_right p {
    color: #b7c7bf;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

.about_features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s;
}

.feature_item:hover {
    transform: translateX(10px);
    border-color: #00ff95;
}

.feature_item .icon {
    width: 60px;
    height: 60px;
    background: #075f37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature_item h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 8px;
}

.feature_item span {
    color: #b7c7bf;
    line-height: 1.7;
}



/*========================
    RESPONSIVE
=========================*/

@media(max-width:991px) {

    .about_inner {
        flex-direction: column;
    }

    .about_left,
    .about_right {
        width: 100%;
    }

    .about_right h2 {
        font-size: 40px;
    }

    .image_box img {
        height: 500px;
    }
}

@media(max-width:767px) {

    .about_style_one {
        padding: 80px 0;
    }

    .about_right h2 {
        font-size: 32px;
    }

    .image_box img {
        height: 400px;
    }

    .experience_box {
        padding: 20px 25px;
        left: 15px;
    }

    .experience_box h2 {
        font-size: 34px;
    }
}


/* ===founder-section  SECTION==================  */
/*=========================================
    PREMIUM FOUNDER SECTION
=========================================*/

.premium-founder {
    position: relative;
    padding: 120px 40px;
    background: #06110c;
    overflow: hidden;
}

/* BACKGROUND GLOW */

.premium-founder::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(0, 255, 145, 0.07);
    border-radius: 50%;
    top: -200px;
    left: -150px;
    filter: blur(80px);
}

.premium-founder::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -200px;
    right: -150px;
    filter: blur(90px);
}

/*=========================================
    LEFT SIDE
=========================================*/

.founder-left-wrap {
    position: sticky;
    top: 120px;
}

.founder-image-box {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 750px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.founder-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.founder-image-box:hover img {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.05));
}

/* FLOATING CARD */

.founder-info-card {
    position: absolute;
    left: 40px;
    bottom: 40px;
    width: calc(100% - 80px);
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.small-text {
    display: inline-block;
    color: #00ff95;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.founder-info-card h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.founder-info-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 17px;
    margin-bottom: 30px;
}

/* BUTTON */

.linkedin-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #00ff95;
    color: #06110c;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: 0.4s;
}

.linkedin-btn i {
    font-size: 18px;
}

.linkedin-btn:hover {
    background: #fff;
    transform: translateY(-5px);
}

/*=========================================
    RIGHT SIDE
=========================================*/

.experience-wrapper {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.experience-title {
    margin-bottom: 60px;
}

.experience-title span {
    display: inline-block;
    color: #00ff95;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
}

.experience-title h3 {
    font-size: 56px;
    color: #fff;
    font-weight: 800;
    line-height: 1.2;
}

/* GRID */

.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */

.exp-card {
    position: relative;
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: 0.5s;
}

/* HOVER EFFECT */

.exp-card::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(135deg,
            rgba(0, 255, 149, 0.15),
            transparent);
    transition: 0.5s;
}

.exp-card:hover::before {
    width: 100%;
}

.exp-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 255, 149, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

/* ICON */

.exp-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(0, 255, 149, 0.1);
    border: 1px solid rgba(0, 255, 149, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.5s;
}

.exp-card:hover .exp-icon {
    transform: rotateY(180deg);
    background: #00ff95;
}

.exp-icon i {
    color: #00ff95;
    font-size: 34px;
    transition: 0.5s;
}

.exp-card:hover .exp-icon i {
    color: #06110c;
}

/* CONTENT */

.exp-content h4 {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.exp-content span {
    display: inline-block;
    color: #00ff95;
    font-weight: 600;
    margin-bottom: 18px;
}

.exp-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin: 0;
}

/* STAGGER EFFECT */

.exp-card:nth-child(2) {
    margin-top: 60px;
}

.exp-card:nth-child(4) {
    margin-top: 60px;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:1399px) {

    .experience-title h3 {
        font-size: 46px;
    }

    .founder-image-box {
        height: 680px;
    }

}

@media(max-width:1199px) {

    .premium-founder {
        padding: 100px 20px;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .exp-card:nth-child(2),
    .exp-card:nth-child(4) {
        margin-top: 0;
    }

    .experience-wrapper {
        padding-left: 0;
        margin-top: 50px;
    }

    .founder-left-wrap {
        position: relative;
        top: 0;
    }

}

@media(max-width:767px) {

    .premium-founder {
        padding: 80px 15px;
    }

    .founder-image-box {
        height: 500px;
        border-radius: 25px;
    }

    .founder-info-card {
        left: 20px;
        bottom: 20px;
        width: calc(100% - 40px);
        padding: 25px;
        border-radius: 20px;
    }

    .founder-info-card h2 {
        font-size: 32px;
    }

    .experience-title h3 {
        font-size: 32px;
    }

    .exp-card {
        padding: 30px;
        border-radius: 24px;
    }

    .exp-content h4 {
        font-size: 22px;
    }

}

/* =========================
   COUNTER SECTION
========================= */

.counter_slider_section {
    background: #06110c;
    padding-top: 20px;
    padding-bottom: 60px;
    overflow: hidden;
    position: relative;
}

/* Glow Effect */

.counter_slider_section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(to right, #21d481, #d68e09);
    filter: blur(160px);
    opacity: .18;
    top: -200px;
    left: -150px;
    border-radius: 50%;
}

.counter_slider_wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT SIDE */

.counter_left {
    width: 35%;
    padding-left: 70px;
    z-index: 2;
}

.counter_tag {
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 600;
}

.counter_left h2 {
    color: #fff;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.counter_left h2 span {
    color: #fff;
}

.counter_left p {
    color: #c6c6c6;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 35px;
}

.counter_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    background: linear-gradient(135deg, #0d7c4a, #0b3d2c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;
}

.counter_btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* RIGHT SIDE */

.counter_right {
    width: 60%;
    overflow: hidden;
    position: relative;
}

.counter_track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideCounter 18s linear infinite;
}

.counter_right:hover .counter_track {
    animation-play-state: paused;
}

@keyframes slideCounter {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* CARD */

.counter_card {
    min-width: 280px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 45px 30px;
    position: relative;
    overflow: hidden;
    transition: .5s;
}

.counter_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.08));
    opacity: 0;
    transition: .5s;
}

.counter_card:hover::before {
    opacity: 1;
}

.counter_card:hover {
    transform: translateY(-12px);
    border-color: #0d7c4a;
}

.counter_icon {
    width: 75px;
    height: 75px;
    border-radius: 20px;
    background: linear-gradient(135deg, #16a34a, #071b12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 30px;
    color: #fff;
}

.counter_card h3 {
    color: #fff;
    font-size: 55px;
    font-weight: 800;
    margin-bottom: 10px;
}

.counter_card h3::after {
    content: "+";
}

.counter_card h5 {
    color: #d9d9d9;
    font-size: 18px;
    margin: 0;
}

/* ======== products  SECTION================= */


.luxury_medical_products {
    position: relative;
    padding: 60px 0;
    background: #f4f8f5;
    overflow: hidden;
}

.gradient_ball {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
    animation: floating 6s ease-in-out infinite;
}

.ball_one {
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 140, 0.15);
    top: -100px;
    left: -100px;
}

.ball_two {
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.05);
    right: -100px;
    bottom: -100px;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }

}

.small_product_card {
    position: relative;
    background: #075f37;
    border-radius: 35px;
    overflow: hidden;
    padding: 25px;
    height: 100%;
    transition: 0.6s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    z-index: 1;
}

/* ANIMATED BACKGROUND LAYER */

.small_product_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #00c978,
            #07120d);
    opacity: 0;
    transition: 0.6s ease;
    z-index: -1;
}

/* GLOW EFFECT */

.small_product_card::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    transition: 0.7s ease;
    z-index: -1;
}

/* HOVER EFFECT */

.small_product_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* BG CHANGE */

.small_product_card:hover::before {
    opacity: 1;
}

/* ANIMATED CIRCLE */

.small_product_card:hover::after {
    transform: scale(1.4) rotate(25deg);
}

/* IMAGE ZOOM */

.small_product_card img {
    transition: 0.7s ease;
}

.small_product_card:hover img {
    transform: scale(1.08);
}

/* TEXT COLOR CHANGE */

.small_product_card:hover h4,
.small_product_card:hover p,
.small_product_card:hover span {
    color: #fff;
}

/* ICON ANIMATION */

.small_product_card .icon_box {
    transition: 0.6s ease;
}

.small_product_card:hover .icon_box {
    transform: rotateY(180deg) scale(1.1);
    background: #fff;
}

.small_product_card:hover .icon_box i {
    color: #00b96b;
}

.small_product_card:hover {
    transform: translateY(-10px);
}

.small_product_card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 25px;
    margin-bottom: 25px;
}

.icon_box {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: #075f37;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.icon_box i {
    color: #fff;
    font-size: 24px;
}

.content span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.content h4 {
    font-size: 28px;
    font-weight: 800;
    color: #07120d;
    margin: 15px 0;
}

.content p {
    color: #5f6b66;
    line-height: 1.8;
}


.dark_card h4,
.dark_card p {
    color: #fff;
}



@media(max-width:767px) {

    .luxury_medical_products {
        padding: 80px 0;
    }

    .heading_area h2 {
        font-size: 32px;
    }

    .product_image img {
        height: 320px;
    }

    .wide_right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .mini_box {
        width: 110px;
        height: 110px;
    }

    .mini_box h2 {
        font-size: 28px;
    }

}

/* =================TESTIMONIAL SECTION==================== */

.doctoright-testimonial {
    position: relative;
    padding: 60px 0;
    background: #f4f5f7;
    overflow: hidden;
}

/* BLUR SHAPES */

.testimonial-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 1;
}

.blur-one {
    width: 300px;
    height: 300px;
    background: rgba(29, 35, 106, 0.15);
    top: -80px;
    left: -80px;
}

.blur-two {
    width: 280px;
    height: 280px;
    background: rgba(255, 170, 0, 0.12);
    bottom: -100px;
    right: -80px;
}


.testimonialSwiper {
    position: relative;
    z-index: 2;
    padding-bottom: 0px;
    padding-top: 20px;
    padding-left: 10px;
}

/* CARD */

.testimonial-card {
    position: relative;
    width: 100%;
    height: 450px;
    background: #ffffff;
    border: 2px solid #075f37;
    border-radius: 45% 55% 50% 50% / 40% 45% 55% 60%;
    padding: 70px 45px 90px;
    text-align: center;
    transition: 0.5s;
    overflow: visible;
    animation: morphing 8s ease-in-out infinite;
}

/* ACTIVE SLIDE */

.swiper-slide-active .testimonial-card,
.swiper-slide .testimonial-card:hover {
    background: #075f37;
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.swiper-slide-active .testimonial-card p,
.swiper-slide-active .client-info h4,
.swiper-slide-active .client-info span,
.swiper-slide-active .quote-icon i,
.swiper-slide .testimonial-card:hover p,
.swiper-slide .testimonial-card:hover .client-info h4,
.swiper-slide .testimonial-card:hover .client-info span,
.swiper-slide .testimonial-card:hover .quote-icon i {
    color: #ffffff;
}

/* MORPH ANIMATION */

@keyframes morphing {

    0% {
        border-radius: 45% 55% 50% 50% / 40% 45% 55% 60%;
    }

    50% {
        border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%;
    }

    100% {
        border-radius: 45% 55% 50% 50% / 40% 45% 55% 60%;
    }

}

/* QUOTE */

.quote-icon {
    margin-bottom: 25px;
}

.quote-icon i {
    font-size: 75px;
    color: #075f37;
    line-height: 1;
    transition: 0.4s;
}

/* CONTENT */

.testimonial-content p {
    font-size: 20px;
    line-height: 1.9;
    color: #111111;
    font-style: italic;
    font-weight: 600;
    margin-bottom: 30px;
    transition: 0.4s;
}

/* RATING */

.testimonial-rating {
    margin-bottom: 30px;
}

.testimonial-rating i {
    color: #f39c12;
    margin: 0 3px;
    font-size: 18px;
}

/* IMAGE */

.client-image {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #075f37;
    background: #fff;
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO */

.client-info {
    margin-top: 55px;
}

.client-info h4 {
    font-size: 32px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    transition: 0.4s;
}

.client-info span {
    color: #777;
    font-size: 16px;
    transition: 0.4s;
}

/* PAGINATION */

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #bcbcbc;
    opacity: 1;
    transition: 0.4s;
}

.swiper-pagination-bullet-active {
    background: #075f37;
    width: 35px;
    border-radius: 30px;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .title {
        font-size: 42px;
    }

    .testimonial-card {
        height: auto;
        padding: 60px 30px 90px;
    }

    .testimonial-content p {
        font-size: 18px;
    }

}

@media(max-width:767px) {

    .doctoright-testimonial {
        padding: 50px 0;
    }

    .title {
        font-size: 32px;
    }

    .testimonial-card {
        border-radius: 40px;
        animation: none;
    }

    .testimonial-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .client-info h4 {
        font-size: 24px;
    }

}

/*=========================================
    LUXURY FAQ SECTION
=========================================*/

.luxury_faq_section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg,
            #03150d,
            #075f37);
    overflow: hidden;
}

/*=========================================
    BACKGROUND ANIMATION
=========================================*/

.faq_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: glowMove 6s infinite ease-in-out;
}

.glow_one {
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 140, 0.18);
    top: -120px;
    left: -120px;
}

.glow_two {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    right: -100px;
    bottom: -100px;
    animation-delay: 2s;
}

@keyframes glowMove {

    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }

}

/* FLOATING CIRCLES */

.faq_circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: rotateCircle 18s linear infinite;
}

.circle_one {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -200px;
}

.circle_two {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -120px;
    animation-direction: reverse;
}

@keyframes rotateCircle {

    100% {
        transform: rotate(360deg);
    }

}

/*=========================================
    LEFT CONTENT
=========================================*/

.faq_left {
    position: relative;
    z-index: 2;
}

.faq_tag {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: #7dffb9;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.faq_left h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
}

.faq_left h2 span {
    color: #7dffb9;
}

.faq_left p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    margin-bottom: 40px;
}

/* INFO BOX */

.faq_info_box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: floatingBox 4s ease-in-out infinite;
}

@keyframes floatingBox {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }

}

.faq_icon {
    width: 80px;
    height: 80px;
    border-radius: 25px;
    background: linear-gradient(135deg,
            #00d47c,
            #0aff9d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq_icon i {
    font-size: 30px;
    color: #03150d;
}

.faq_info_box h4 {
    color: #fff;
    margin-bottom: 5px;
}

.faq_info_box span {
    color: rgba(255, 255, 255, 0.7);
}

/*=========================================
    FAQ ACCORDION
=========================================*/

.luxury_faq {
    position: relative;
    z-index: 2;
}

.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 25px;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 25px !important;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 28px 30px;
    box-shadow: none !important;
    transition: 0.5s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
            #00c978,
            #0b7a49);
    color: #fff;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-button:hover {
    transform: translateX(10px);
}

/* BODY */

.accordion-body {
    margin-top: 15px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 28px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeBody 0.4s ease;
}

@keyframes fadeBody {

    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .faq_left h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .luxury_faq_section {
        padding: 80px 0;
    }

    .faq_left h2 {
        font-size: 32px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 22px;
    }

    .faq_info_box {
        flex-direction: column;
        text-align: center;
    }

}

/*=========================================
    PREMIUM CLIENT SECTION
=========================================*/

.premium_clients_section {
    position: relative;
    padding: 110px 0;
    background: #f5faf7;
    overflow: hidden;
}

/*=========================================
    BACKGROUND EFFECT
=========================================*/

.client_glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: glowMove 6s infinite ease-in-out;
}

.glow_one {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 145, 0.12);
    top: -120px;
    left: -120px;
}

.glow_two {
    width: 250px;
    height: 250px;
    background: rgba(0, 0, 0, 0.04);
    right: -100px;
    bottom: -100px;
    animation-delay: 2s;
}

@keyframes glowMove {

    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }

}

/*=========================================
    HEADING
=========================================*/

.client_heading {
    position: relative;
    z-index: 2;
    margin-bottom: 70px;
}

.client_heading .sub_title {
    display: inline-block;
    color: #00a86b;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.client_heading h2 {
    font-size: 58px;
    font-weight: 800;
    color: #07120d;
    margin-bottom: 18px;
}

.client_heading p {
    max-width: 650px;
    margin: auto;
    color: #5f6b66;
    line-height: 1.9;
}

/*=========================================
    CLIENT CARD
=========================================*/

.client_card {
    position: relative;
    height: 180px;
    border-radius: 35px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: 0.6s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.client_card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* HOVER BACKGROUND */

.client_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #00c978,
            #075f37);
    opacity: 0;
    transition: 0.6s ease;
}

.client_card:hover::before {
    opacity: 1;
}

/* IMAGE */

.client_card img {
    position: relative;
    z-index: 2;
    max-width: 300px;
    max-height: 200px;
    object-fit: contain;
    transition: 0.6s ease;
    filter: grayscale(100%);
}

.client_card:hover img {
    filter: grayscale(0%);
    transform: scale(1.08);
}

/* CARD HOVER */

.client_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* SHINE EFFECT */

.client_card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 300px;
    background: rgba(255, 255, 255, 0.25);
    top: -80px;
    left: -150px;
    transform: rotate(25deg);
    transition: 0.8s;
}

.client_card:hover::after {
    left: 120%;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .client_heading h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .premium_clients_section {
        padding: 80px 0;
    }

    .client_heading h2 {
        font-size: 32px;
    }

    .client_card {
        height: 140px;
    }

    .client_card img {
        max-width: 120px;
    }

}


/* ================= blogs  SECTION=================== */

.doctoright-blog {
    position: relative;
    padding: 60px 0;
    background: #f5faf7;
    overflow: hidden;
    z-index: 1;
}

/*=========================================
    BACKGROUND ANIMATION
=========================================*/

.blog-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    animation: blurMove 8s ease-in-out infinite;
}

.blur-left {
    width: 350px;
    height: 350px;
    background: rgba(0, 255, 140, 0.12);
    top: -120px;
    left: -120px;
}

.blur-right {
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.05);
    right: -120px;
    bottom: -120px;
    animation-delay: 2s;
}

@keyframes blurMove {

    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.5;
    }

}

/* ROTATING CIRCLE */

.doctoright-blog::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 50%;
    top: -220px;
    right: -220px;
    animation: rotateCircle 18s linear infinite;
}

.doctoright-blog::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border: 1px dashed rgba(0, 200, 120, 0.12);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: rotateCircle 15s linear infinite reverse;
}

@keyframes rotateCircle {

    100% {
        transform: rotate(360deg);
    }

}



.blog-card {
    position: relative;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    border-radius: 35px;
    overflow: hidden;
    transition: 0.6s ease;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ACTIVE CARD */

.blog-card.active_blog {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* HOVER */

.blog-card:hover {
    transform: translateY(-15px);
}

.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

/* DATE */

.blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 75px;
    height: 75px;
    border-radius: 25px;
    background: linear-gradient(135deg,
            #00c978,
            #075f37);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    animation: floatingDate 4s ease-in-out infinite;
}

.blog-date span {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

@keyframes floatingDate {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }

}

.blog-content {
    padding: 35px;
}

/* META */

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.blog-meta span {
    color: #5f6b66;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta i {
    color: #00b96b;
    margin-right: 6px;
}

/* TITLE */

.blog-content h3 {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
    color: #07120d;
    margin-bottom: 25px;
    transition: 0.5s;
}

.blog-card:hover h3 {
    color: #00a86b;
}

/* BUTTON */

.blog-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #07120d;
    font-weight: 700;
    text-decoration: none;
    transition: 0.5s;
}

.blog-btn i {
    transition: 0.5s;
}

.blog-btn:hover {
    color: #00a86b;
}

.blog-btn:hover i {
    transform: translateX(6px);
}

/*=========================================
    NAVIGATION
=========================================*/

.blog_navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.blog_prev,
.blog_next {
    position: relative;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.blog_prev::before,
.blog_next::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            #00c978,
            #075f37);
    transform: scale(0);
    transition: 0.5s;
    border-radius: 50%;
}

.blog_prev i,
.blog_next i {
    position: relative;
    z-index: 2;
    color: #075f37;
    transition: 0.5s;
}

.blog_prev:hover::before,
.blog_next:hover::before {
    transform: scale(1);
}

.blog_prev:hover,
.blog_next:hover {
    transform: translateY(-8px);
}

.blog_prev:hover i,
.blog_next:hover i {
    color: #fff;
}

/*=========================================
    RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .title {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .doctoright-blog {
        padding: 80px 0;
    }

    .title {
        font-size: 32px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-content h3 {
        font-size: 24px;
    }

    .blog-image img {
        height: 260px;
    }

    .sub-title::before,
    .sub-title::after {
        display: none;
    }

}

/* =========================
   Breadcrumb Base
========================= */

.custom-breadcrumb {
    position: relative;
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #041d13 0%, #0d7c4a 100%);
    overflow: hidden;
}

/* Floating animated shapes */

.breadcrumb-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.25;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-one {
    width: 320px;
    height: 320px;
    background: #7ddc9c;
    top: -80px;
    left: -80px;
}

.shape-two {
    width: 280px;
    height: 280px;
    background: #ffffff;
    bottom: -100px;
    right: -60px;
    animation-delay: 2s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(20px) scale(1.05);
    }
}

/* =========================
   Text Animations
========================= */

.animate-fade-up {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */

.breadcrumb-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #d7ffe7;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

/* Title */

.breadcrumb-content h1 {
    color: #ffffff;
    font-size: 72px;
    margin-bottom: 25px;
    line-height: 1.1;
}

/* Menu */

.breadcrumb-menu {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 60px;
    backdrop-filter: blur(10px);
}

.breadcrumb-menu a,
.breadcrumb-menu p {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
}

.breadcrumb-menu a:hover {
    color: #7ddc9c;
}



/* =========================FOOTER section=================== */

.doctoright-footer {
    position: relative;
    overflow: hidden;
    background: #071b12;
    padding-top: 60px;
    color: #fff;
}

/* BACKGROUND SHAPE */

.doctoright-footer::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(13, 124, 74, 0.08);
    top: -350px;
    right: -250px;
}

.doctoright-footer::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(13, 124, 74, 0.05);
    bottom: -250px;
    left: -180px;
}

.footer-top {
    position: relative;
    z-index: 5;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title span {
    display: inline-block;
    color: #0d7c4a;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-title h2 {
    font-size: 50px;
    line-height: 1.1;
    margin: 0;
    font-weight: 700;
}

/* NEWSLETTER */

.footer-newsletter form {
    background: #fff;
    border-radius: 80px;
    padding: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 580px;
    margin-left: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.footer-newsletter input {
    flex: 1;
    border: none;
    outline: none;
    height: 55px;
    padding: 0 25px;
    border-radius: 60px;
    font-size: 15px;
}

.footer-newsletter button {
    border: none;
    background: #0d7c4a;
    color: #fff;
    height: 65px;
    padding: 0 35px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: .35s ease;
}

.footer-newsletter button:hover {
    background: #111;
}



.footer-middle {
    position: relative;
    z-index: 5;
    padding: 80px 0;
}

/* LOGO */

.footer-logo {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 230px;
    object-fit: contain;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 380px;
}

/* SOCIAL */

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: .35s ease;
}

.footer-social a:hover {
    background: #0d7c4a;
    transform: translateY(-5px);
}


.footer-links h4,
.footer-contact h4 {
    font-size: 26px;
    margin-bottom: 28px;
    font-weight: 700;
    color: #fff;
}

.footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 16px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.72);
    transition: .3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links ul li a:hover {
    color: #fff;
    padding-left: 8px;
}

/* ==================CONTACT============= */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 22px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    min-width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: #0d7c4a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    font-size: 15px;
}

/* =============== FOOTER BOTTOM=================== */

.footer-bottom {
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px 0;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.footer-bottom-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: .3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* =========================
   Related Products (Light Animated BG)
========================= */

.related-products-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #f4fff8;
    /* light base */
}

/* Animated glowing background */
.related-products-section::before,
.related-products-section::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    z-index: 0;
    animation: floatGlow 10s ease-in-out infinite;
}

/* Green glow */
.related-products-section::before {
    background: #0d7c4a;
    top: -120px;
    left: -120px;
}

/* White-green glow */
.related-products-section::after {
    background: #7ddc9c;
    bottom: -120px;
    right: -120px;
    animation-delay: 2s;
}

/* Floating animation */
@keyframes floatGlow {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(30px) scale(1.1);
    }
}

/* Ensure content stays above bg */
.related-products-section .container {
    position: relative;
    z-index: 2;
}

/* =========================
   Section Header
========================= */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header span {
    color: #0d7c4a;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-family: var(--primary-font);
}

.section-header h2 {
    color: #0b2e1c;
    font-size: 46px;
    margin-top: 12px;
    font-family: var(--secondary-font);
}

/* =========================
   Product Card (dark contrast)
========================= */

.product-card {
    background: #0d7c4a;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.product-card:hover {
    transform: translateY(-10px);
    background: #11945a;
}

/* Image */
.product-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* Content */
.product-content {
    padding: 28px;
    text-align: center;
}

.product-content h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: var(--secondary-font);
}

.product-content p {
    color: #d7ffe7;
    font-size: 18px;
    margin-bottom: 22px;
}

/* Button */
.product-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffffff;
    color: #041d13;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s ease;
    font-weight: 600;
}

.product-btn:hover {
    background: #d7ffe7;
}

/* =========================
   Swiper Navigation
========================= */

.swiper-button-next,
.swiper-button-prev {
    color: #0d7c4a;
}

/* =========================
   Responsive
========================= */

@media (max-width: 768px) {

    .section-header h2 {
        font-size: 36px;
    }

    .product-image img {
        height: 260px;
    }
}

.product-details-section {
    padding: 100px 0;
    background: #041d13;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ================= LEFT GALLERY ================= */

.product-gallery img {
    width: 100%;
    border-radius: 18px;
    display: block;
}

/* Main slider */
.productMainSwiper {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
}

/* Thumbs */
.productThumbSwiper .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    transition: 0.3s;
}

.productThumbSwiper .swiper-slide-thumb-active {
    opacity: 1;
}

.productThumbSwiper img {
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
}

/* Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #7ddc9c;
}

/* ================= RIGHT CONTENT ================= */

.product-category {
    color: #7ddc9c;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.product-info h1 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}

.product-price {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.new-price {
    color: #7ddc9c;
    font-size: 32px;
    font-weight: bold;
}

.old-price {
    color: #aaa;
    text-decoration: line-through;
}

/* Description */
.product-description {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Meta */
.product-meta p {
    color: #fff;
    margin-bottom: 8px;
}

/* Quantity */
.quantity-wrapper {
    display: flex;
    gap: 10px;
    margin: 25px 0;
}


/* Buttons */
.product-actions {
    display: flex;
    gap: 15px;
}




/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
    }
}

/* =========================
           RESPONSIVE
        ========================= */

@media(max-width:991px) {

    .mobile-nav-toggle {
        display: block;
    }

    .navmenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: #fff;
        padding: 90px 20px 30px;
        transition: .4s ease;
        overflow-y: auto;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.08);
    }

    .navmenu.active {
        right: 0;
    }

    .navmenu>ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        height: 90%;
        overflow-y: auto;
    }

    .navmenu ul li {
        width: 100%;
    }

    .navmenu ul li a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #eee;
        justify-content: space-between;
    }

    /* MOBILE MEGA MENU */

    .listing-dropdown>ul {
        position: relative;
        left: 0;
        top: 0;
        transform: unset;

        width: 100%;
        max-width: 100%;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        display: none;
        grid-template-columns: 1fr;

        padding: 18px;
        margin-top: 10px;

        border-radius: 14px;

        background: #f7f9f8;
        box-shadow: none;
    }

    .listing-dropdown.active>ul {
        display: grid;
    }

    .listing-dropdown ul li {
        border-right: 0;
        border-bottom: 1px solid #e4e4e4;
        /* padding-bottom: 15px;
        margin-bottom: 15px; */
    }

    .listing-dropdown ul li:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .listing-dropdown ul li h5 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .listing-dropdown ul li a {
        border: 0;
        padding: 7px 0 !important;
    }

    .contact-btn {
        display: none !important;
    }

    .hero-item {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: auto auto 35px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-image img {
        margin: auto;
    }

    .image-circle {
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

@media(max-width:991px) {

    .counter_slider_wrapper {
        flex-direction: column;
    }

    .counter_left {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .counter_right {
        width: 100%;
    }

    .counter_left h2 {
        font-size: 42px;
    }

    .header.sticky .navmenu>ul>li>a {
        color: inherit;
    }

    .close_btn {
        width: 50px;
        height: 50px;
        background: #137f4f;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        cursor: pointer;
        font-size: 28px;
        transition: 0.3s;
        position: absolute;
        top: 17px;
        left: 5px;
    }

    .close_btn:hover {
        background: #03150d;
        transform: rotate(360deg);
    }
}

@media(max-width:768px) {
    .header-top {
        padding: 15px 0;
        display: none;
    }

    .header-top-wrapper {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .header-contact {
        justify-content: center;
        gap: 15px;
    }

    .header-contact a {
        font-size: 13px;
    }

    .header-social {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-social span {
        display: none;
    }

    .doctoright-hero {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-image img {
        height: 460px;
        border-radius: 28px;
    }

    .image-circle {
        width: 320px;
        height: 320px;
    }

    .floating-card {
        padding: 16px;
    }

    .floating-card span {
        font-size: 24px;
    }

    .card-one {
        left: 0;
        top: 20px;
    }

    .card-two {
        right: 0;
        bottom: 20px;
    }

    /* ----------testimonial section  */

    .doctoright-testimonial {
        padding: 50px 0;
    }

    .testimonial-heading {
        margin-bottom: 45px;
    }

    .testimonial-heading h2 {
        font-size: 38px;
    }

    .testimonial-card {
        padding: 25px;
        border-radius: 28px;
    }

    .client-image {
        width: 70px;
        height: 70px;
    }

    .quote-icon {
        width: 58px;
        height: 58px;
        font-size: 26px;
    }

    .client-info h4 {
        font-size: 20px;
    }

    /* ---------blog section ----------  */
    .doctoright-blog {
        padding: 70px 0;
    }

    .blog-heading {
        margin-bottom: 45px;
    }

    .blog-heading h2 {
        font-size: 38px;
    }

    .blog-image {
        height: 240px;
    }

    .blog-content {
        padding: 45px 22px 25px;
    }

    .blog-content h3 {
        font-size: 22px;
    }

    .blog-date {
        width: 70px;
        height: 70px;
    }

    .blog-date span {
        font-size: 24px;
    }

    /* ----------------founde section ---------  */
    .founder-image-box img {
        height: 500px;
    }

    .founder-info-card {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .founder-info-card h2 {
        font-size: 30px;
    }

    .founder-info-card p {
        font-size: 16px;
    }

    .experience-title h3 {
        font-size: 30px;
    }

    .exp-card {
        padding: 25px;
        border-radius: 22px;
    }

    .exp-content h4 {
        font-size: 22px;
    }

    /* =========footer======== */
    .doctoright-footer {
        padding-top: 70px;
    }

    .footer-top {
        padding-bottom: 50px;
    }

    .footer-title h2 {
        font-size: 34px;
    }

    .footer-newsletter form {
        flex-direction: column;
        border-radius: 25px;
        padding: 18px;
    }

    .footer-newsletter input,
    .footer-newsletter button {
        width: 100%;
    }

    .footer-middle {
        padding: 60px 0;
    }

    .footer-links,
    .footer-contact {
        margin-top: 10px;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-logo img {
        width: 190px;
    }

    .breadcrumb-content h1 {
        font-size: 48px;
    }

    .heading .title {
        font-size: 30px;
    }
}

@media(max-width:576px) {

    .counter_slider_section {
        padding: 70px 0;
    }

    .counter_card {
        min-width: 240px;
        padding: 35px 25px;
    }

    .counter_card h3 {
        font-size: 42px;
    }

    .counter_left h2 {
        font-size: 34px;
    }

    .breadcrumb-content h1 {
        font-size: 38px;
    }
}