@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0097D2;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden !important;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

a {
    text-decoration: none !important;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-media {
    width: 520px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
    /* animation: rotate 2s linear infinite; */
}

.loader-media.pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-text {
    font-size: 18px;
    color: #00bcd4;
    font-weight: 600;
    margin-top: 10px;
}

.loading-dots span {
    animation: blink 1.4s infinite both;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }
}

/* btn scroll */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    cursor: pointer;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--box-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
    cursor: pointer;
    z-index: 999;
}

.scroll-top img {
    width: 24px;
    height: 24px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.6);
    transform: translateY(-4px);
}

.scroll-top:active {
    transform: scale(0.95);
}

/* header */

.header {
    background: #fff;
    box-shadow: var(--box-shadow);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
}

.logo img {
    height: 40px;
    width: auto;
}

@media (max-width: 575px) {
    .logo img {
        height: 30px;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a.active {
    color: var(--primary-color);
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lang-btn:hover {
    color: #0099cc;
}

.lang-btn i {
    font-size: 20px;
    color: var(--primary-color);
}

.appointment-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
    border: none;
}

.appointment-btn:hover {
    background: #0088bb;
    color: #fff;
}

.navbar-toggler {
    border: none;
    padding: 5px 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 153, 204, 1%29' stroke-linecap='round' stroke-miterlap='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
    .nav-menu {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .appointment-btn {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.offcanvas {
    width: 280px;
}

@media (min-width: 992px) {
    .offcanvas {
        display: none;
    }
}

.offcanvas .nav-actions button,
.offcanvas .nav-actions a {
    display: block;
    padding: 12px;
    font-size: 16px;
}

.offcanvas .nav-menu li {
    margin-bottom: 15px;
}


:root {
    --primary-color: #00bcd4;
    --secondary-color: #0097D2;
    --dark-text: #2c3e50;
    --light-text: #6c757d;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0, 188, 212, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 188, 212, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 188, 212, 0.15);
}

.logo img {
    height: 35px;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-menu .nav-link {
    color: var(--dark-text);
    font-weight: 500;
    padding: 0.5rem 1.2rem;
    transition: all 0.3s;
    position: relative;
}

.nav-menu .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after {
    width: 80%;
}

.nav-menu .nav-link.active {
    color: var(--primary-color);
}


.logout-link {
    color: #dc3545;
}

.logout-link i {
    color: #dc3545;
}

.logout-link:hover {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* hero-section  */
.slider-container {
    width: 100%;
    position: relative;
}


@media (min-width: 1600px) {
    .hero-section {
        height: 85vh !important;
    }
}

.hero-section {
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(2px);
    z-index: 1;
}


@media(min-width:1600px) {
    .hero-section .main-section {
        padding-top: 50px !important;
    }
}

.hero-section .main-section {
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 120px;
    z-index: 2;
}

.hero-section .left-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .person-image {
    width: 650px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.hero-section .rotating-icons {
    position: absolute;
    width: 500px;
    height: 500px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-continuous 20s linear infinite;
    z-index: 1;
}

.hero-section .rotating-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes rotate-continuous {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-section .right-side {
    flex: 1;
}

.hero-section .main-heading {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-section .description {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.6;
    margin-bottom: 50px;
}

.hero-section .price-card {
    background: white;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: stretch;
    max-width: 600px;
    overflow: hidden;
}


@media(max-width: 576px) {
    .hero-section .price-card {
        flex-direction: column;
        max-width: 100%;
    }

    .hero-section .price-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
}

.hero-section .price-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    padding: 35px 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e0e0e0;
}

.hero-section .discount-badge {
    background: #2196f3;
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-section .price {
    font-size: 38px;
    font-weight: 700;
    color: #2196f3;
    margin-bottom: 0;
}

.hero-section .old-price {
    font-size: 28px;
    color: #9e9e9e;
    text-decoration: line-through;
    margin-left: 15px;
}

.hero-section .info-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 25px 35px;
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
}

.hero-section .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-section .info-icon img {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .info-icon i {
    font-size: 26px;
    color: #2196f3;
}

.hero-section .info-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0;
}

.hero-section .info-text p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 0;
}

.hero-section .envato-badge {
    position: absolute;
    bottom: 40px;
    left: 80px;
    background: #1a1a1a;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

@media (max-width: 992px) {
    .hero-section .main-section {
        flex-direction: column;
        padding-top: 80px !important;
    }

    .hero-section .right-side {
        padding-left: 0;
        margin-top: 50px;
    }

    .hero-section .main-heading {
        font-size: 32px;
    }

    .hero-section .person-image {
        width: 350px;
        height: 500px;
    }

    .hero-section .rotating-icons {
        width: 500px;
        height: 500px;
    }

    .hero-section .right-side {
        order: -1;
    }



}

.hero-section .left-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 70vh;
}

.hero-section .person-image {
    width: 450px;
    height: auto;
    background: transparent;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.hero-section .person-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
    animation: float-person 4s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .hero-section .left-side {
        min-height: 75vh !important;
    }

}





.hero-section .slide {
    position: relative;
    overflow: hidden;
    outline: none;
}

@media(min-width:1600px) {
    .hero-section .slide-image {
        height: 950px !important;
    }
}

.hero-section .slide-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7);
    -webkit-filter: brightness(0.7);

}

.hero-section .slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    z-index: 10;
}

.hero-section .slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #20b2aa;
    animation: fadeInDown 1s ease;
    -webkit-animation: fadeInDown 1s ease;
}

.hero-section .slide-subtitle {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section .slide {
        height: 400px;
    }

    .hero-section .slide-title {
        font-size: 2rem;
    }

    .hero-section .slide-subtitle {
        font-size: 1rem;
    }

    .hero-section .slick-prev,
    .slick-next {
        width: 40px;
        height: 40px;
    }

    .hero-section .slick-prev {
        left: 10px;
    }

    .hero-section .slick-next {
        right: 10px;
    }
}

/* category-card */

.main-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow);
    -webkit-transform: translateY(-10px) scale(1.02);
    -moz-transform: translateY(-10px) scale(1.02);
    -ms-transform: translateY(-10px) scale(1.02);
    -o-transform: translateY(-10px) scale(1.02);
}

.icon-wrapper {
    margin-bottom: 30px;
    position: relative;
}

.icon-circle {
    width: 150px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.icon-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0;
    }
}

.lab-icon img {
    width: 70%;
}

.scan-icon {
    background: var(--primary-color);
}

.category-card:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
}

.icon-circle svg {
    width: 50px;
    height: 50px;
    fill: white;
    transition: all 0.3s ease;
}

.category-card:hover .icon-circle svg {
    transform: scale(1.1);
}

.category-title {
    font-size: 1.40rem;
    font-weight: 700;
    color: #1f2937;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.category-description {
    font-size: 14px !important;
    color: #6b7280 !important;
    margin-top: 15px;
    font-weight: 600;
    transform: translateY(10px);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.category-card:hover .category-description {
    opacity: 1;
    transform: translateY(0);
}

.decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.lab-card .decorative-element {
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: -30px;
    right: -30px;
}

.scan-card .decorative-element {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    bottom: -30px;
    left: -30px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }

    .category-card {
        padding: 40px 20px;
    }

    .icon-circle {
        width: 120px;
        height: 120px;
    }

    .icon-circle svg {
        width: 60px;
        height: 60px;
    }

    .category-title {
        font-size: 1.6rem;
    }
}


/* featured-tests */

.featured-tests {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
}


.featured-tests>* {
    position: relative;
    z-index: 1;
}


.featured_main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.featured-tests {
    margin-top: 20px;
}

.featured_main h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
    animation: fadeInDown 1s ease;
    color: var(--primary-color);
}

.featured-tests .view-all {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.featured-tests .view-all:hover {
    color: #087A96;
    gap: 12px;
}

.featured-tests .view-all::after {
    content: '→';
    font-size: 1.3rem;
}

.featured-tests .test-slider {
    margin: 0 -15px;
}



.featured-tests .test-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

@media(max-width:991px) {
    .featured-tests .test-image {
        height: 150px !important;
    }
}

.featured-tests .test-content {
    padding: 30px;
    text-align: center;
}

.featured-tests .test-title {
    font-size: 1.4rem;
    color: #0A9DBF;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-tests .test-availability {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-tests .book-btn {
    width: 100%;
    background: #0F7685;
    color: white;
    border: none;
    padding: 7px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    width: 100%;
    display: block;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.featured-tests .book-btn:hover {
    background: #0F7685;
}

.featured-tests .book-btn:active {
    transform: translateY(0);
}

.featured-tests .slick-dots {
    display: none !important;
}

.featured-tests .custom-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.featured-tests .custom-dot {
    width: 35px;
    height: 8px;
    border-radius: 10%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
}

.featured-tests .custom-dot:hover {
    background: #9CA3AF;
    transform: scale(1.1);
}

.featured-tests .custom-dot.active {
    background: #0de0fe;
    width: 35px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
}

/* .hero-section_banner */

.hero-section_banner {
    background-image: url("../img/video-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 80px 0;
}

.hero-section_banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.648);
    z-index: 1;
}

.hero-section_banner * {
    position: relative;
    z-index: 2;
}


.hero-section_banner .microscope-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="rgba(0,0,0,0.2)" width="800" height="600"/></svg>');
    background-size: cover;
    opacity: 0.5;
}

.hero-section_banner .microscope-image {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 400px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.3) 0%, rgba(234, 88, 12, 0.2) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section_banner .microscope-icon {
    font-size: 200px;
    color: rgba(249, 115, 22, 0.6);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-section_banner .career-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #10b981;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: fadeInDown 1s ease-out;
    z-index: 999999;
}

.hero-section_banner .career-tag i {
    color: #10b981;
}

.hero-section_banner .main-heading {
    font-size: 22px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInLeft 1s ease-out 0.3s both;
}

.hero-section_banner .career-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #1e3a8a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-section_banner .career-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: #f0f9ff;
}

.hero-section_banner .play-button {
    position: absolute;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    z-index: 20;
}

.hero-section_banner .play-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-section_banner .play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.hero-section_banner .play-button::before,
.play-button::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: ripple 2s infinite;
}

.hero-section_banner .play-button::after {
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    0% {
        width: 100px;
        height: 100px;
        opacity: 1;
    }

    100% {
        width: 150px;
        height: 150px;
        opacity: 0;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section_banner .main-heading {
        font-size: 56px;
    }

    .hero-section_banner .microscope-image {
        width: 400px;
        height: 320px;
    }

    .hero-section_banner .microscope-icon {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .hero-section_banner .main-heading {
        font-size: 42px;
    }

    .hero-section_banner .microscope-image {
        width: 300px;
        height: 240px;
        right: 5%;
    }

    .hero-section_banner .microscope-icon {
        font-size: 100px;
    }

    .hero-section_banner .play-button {
        width: 80px;
        height: 80px;
        right: 10%;
    }

    .hero-section_banner .play-button i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-section_banner .main-heading {
        font-size: 32px;
    }

    .hero-section_banner .career-btn {
        padding: 12px 30px;
        font-size: 12px;
    }

    .hero-section_banner .microscope-bg {
        width: 100%;
        opacity: 0.3;
    }
}


/* .partners-section */


.partners-section {
    padding-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 20px;
    margin-top: 20px;
}

.section-header h2 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 700;
}

.partners-section .carousel-controls {
    display: flex;
    gap: 15px;
}

.partners-section .carousel-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #fff;
}

.partners-section .carousel-controls button:hover {
    background: #4ECDC4;
    color: white;
    border-color: #4ECDC4;
    transform: scale(1.1);
}

.partners-section .partner-card {
    flex-shrink: 0;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    border: 1px solid rgb(227, 230, 234);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin-left: 7px;
}


.partners-section .partner-image {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px;
}

.partners-section .partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;

}

.partners-section .partner-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-section .partner-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.partners-section .partner-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.partners-section .book-btn {
    background: #16a596;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partners-section .book-btn:hover {
    background: #148a7d;
    transform: scale(1.05);
}

.partners-section .rating {
    background: #ffc107;
    color: white;
    padding: 6px 6px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}




.partners-section .slick-list {
    margin: 0 -10px;
}

.partners-section .slick-dots {
    bottom: -40px;
}

.partners-section .slick-dots li button:before {
    font-size: 12px;
    color: #4ECDC4;
}

.partners-section .slick-dots li.slick-active button:before {
    color: #4ECDC4;
}

@media (max-width: 768px) {
    .partners-section h2 {
        font-size: 13px;
    }

    .partners-section .carousel-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .partners-section .partner-image {
        height: 150px;
    }
}

/* fqas */
.faq-section .section-header_main {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 30px;
}

.faq-section .section-subtitle {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.faq-section .section-title {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
}

.faq-section .faq-container {
    display: flex;
    gap: 50px;
    align-items: start;
}

.faq-section .faq-image-side {
    flex: 0 0 45%;
    position: relative;
}

.faq-section .faq-image-wrapper {
    position: relative;
    border-radius: 0;
    overflow: visible;
}

.faq-section .faq-image-wrapper img {
    width: 100%;
    height: 500px;
    display: block;
    border-radius: 0;
}

.faq-section .happy-patients-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 35px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.faq-section .emoji-icon {
    font-size: 45px;
    line-height: 1;
}

.faq-section .badge-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1;
}

.faq-section .badge-content p {
    font-size: 16px;
    color: #888;
    margin: 0;
    line-height: 1.3;
}

.faq-section .faq-accordion-side {
    flex: 0 0 50%;
}


.faq-section .accordion-item {
    background: white;
    border: none;
    border-radius: 20px !important;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-button {
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
    position: relative;
}

.faq-section .accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #333;
}

.faq-section .accordion-button::after {
    content: '+';
    background: none;
    color: #4ECDC4;
    width: 30px;
    height: 30px;
    border: 2px solid #4ECDC4;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 400;
    background-image: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-section .accordion-button:not(.collapsed)::after {
    content: '−';
    background: #4ECDC4;
    color: white;
    transform: rotate(0deg);
}

.faq-section .accordion-body {
    padding: 0 25px 20px 25px;
    color: #888;
    font-size: 13px;
    line-height: 1.7;
    background: #ffffff;
}



/* Remove focus outline */
.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

@media (max-width: 992px) {
    .faq-section .faq-container {
        flex-direction: column;
    }

    .faq-section .faq-image-side,
    .faq-accordion-side {
        flex: 0 0 100%;
    }

    .faq-section .section-title {
        font-size: 32px;
    }

    .faq-section .happy-patients-badge {
        bottom: 20px;
        padding: 12px 25px;
    }

    .faq-section .emoji-icon {
        font-size: 35px;
    }

    .faq-section .badge-content h3 {
        font-size: 22px;
    }

    .faq-section .badge-content p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-section .section-title {
        font-size: 26px;
    }

    .faq-section .accordion-button {
        font-size: 14px;
        padding: 15px 18px;
    }

    .faq-section .accordion-body {
        padding: 0 18px 15px 18px;
        font-size: 13px;
    }

    .faq-section .accordion-button::after {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
}


/* work-section */

.work-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 60px;
}

.work-img-info .work-img {
    position: absolute;
    bottom: 0px;
}

.work-img img {
    max-width: 100%;
    height: 352px;
    padding-bottom: 20px;
}

.work-details {
    padding-left: 100px;
}

@media(max-width:991px) {
    .work-details {
        padding-left: 0;
        margin-bottom: 400px;
    }
}

.section-header-one {
    margin-bottom: 30px;
}

@media(max-width:767px) {
    .section-header-one {
        text-align: center;
    }
}

.section-header-one h5 {
    font-weight: 600;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 10px;
}


.section-header-one .section-title {
    display: inline-block;
    position: relative;
}

.section-header-one h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0px;
}

@media(max-width:767px) {
    .section-header-one h2 {
        font-size: 26px;
    }
}

.work-info {
    -webkit-box-align: start;
    align-items: start;
    margin-bottom: 35px;
    display: flex;
}


@media(max-width:575px) {
    .work-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding: 0 20px;
    }
}

.work-info .work-icon {
    margin-right: 20px;
}

.work-info .work-icon span {
    min-width: 70px;
    height: 70px;
    transform: rotate(0deg);
    background: rgb(224, 231, 255);
    border-radius: 10px;
    transition: 0.7s;
}

.work-info .work-icon span img {
    transform: rotate(0deg);
    transition: 0.7s;
}



.work-info .work-icon span:hover {
    background: rgb(255, 255, 255);
    transform: scale(1.1) rotate(10deg);
}

.work-info .work-icon span:hover img {
    transform: rotate(20deg);
}


.work-info .work-content h5 {
    font-weight: 600;
    font-size: 18px;
    color: rgb(31, 41, 55);
    margin-bottom: 14px;
}

.work-info .work-content p {
    font-size: 16px;
    margin-bottom: 0px;
}

.work-info .work-icon span {
    min-width: 70px;
    height: 70px;
    background: #E0E7FF;
    border-radius: 10px;
    -webkit-transition: 0.7s;
    -ms-transition: 0.7s;
    transition: 0.7s;
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    padding: 20px 10px;
}

/* app */

.app-section {
    background-color: #ffffff;
    margin: 0;
    padding: 40px 0 20px;
}

.app-bg {
    background: #117f8c;
    background-image: url(../img/app-bg.png);
    background-position: right top;
    background-repeat: no-repeat;
    border-radius: 25px;
    padding: 0px 50px;
}

@media (max-width: 768.98px) {
    .app-bg {
        background-position: center top;
        padding: 30px 20px;
    }
}

.app-header {
    padding-bottom: 40px;
}

.app-header h5 {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.app-header h2 {
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0;
    max-width: 565px;
}

@media (max-width: 768.98px) {
    .app-header h2 {
        font-size: 32px;
    }
}

.app-scan {
    padding-bottom: 40px;
}

.app-scan p {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
}

.google-imgs a {
    margin-right: 24px;
}

.google-imgs a:last-child {
    margin-right: 0;
}

.mobile-img {
    text-align: end;
}

@media (max-width: 1440.98px) {
    .mobile-img img {
        max-width: 380px;
    }
}



/* about */
.about {
    display: flex;
    align-items: center;
}

.about .hero-content h2 {
    color: aliceblue;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero_about {
    background: #F2F6F6;
    color: white;
    padding-top: 140px;
    padding-bottom: 60px;
    text-align: center;
}

.hero_about h2 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
    color: var(--primary-color);
}

.hero_about .breadcrumb {
    font-size: 15px;
    opacity: 0.9;
    color: var(--primary-color);
    animation: fadeInUp 1s ease;
    justify-content: center;
    -webkit-animation: fadeInUp 1s ease;
}

.hero_about .breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
    font-size: 15px;
}

.doctor-imag {
    width: 100%;
    max-height: 700px;
    height: auto;
    object-fit: contain;
}

.experience-badge {
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    box-shadow: 0 8px 20px rgba(54, 209, 220, 0.3);
}

.section-label {
    color: #36d1dc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-icon {
    background: linear-gradient(135deg, #36d1dc 0%, #5b86e5 100%);
    width: 50px;
    height: 50px;
}

.content_about h2 {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
}

.content_about p {
    font-size: 18px;
    text-align: justify;
}

/* about servies */

.main_test_servies {
    padding: 30px 0;
}

.main_test_servies .header-title {
    color: #0d5f7f;
    font-weight: bold;
    font-size: 22px;
    margin-bottom: 10px;
}

.main_test_servies .subtitle {
    color: #0d5f7f;
    font-size: 15px;
    margin-bottom: 30px;
}

.main_test_servies .book-text {
    color: #0d5f7f;
    font-size: 20px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 30px;
}

.main_test_servies .call-btn {
    background-color: #0d5f7f;
    color: white;
    border: none;
    padding: 7px 15px;
    border-radius: 8px;
    font-size: 17px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-right: 20px;
    transition: background-color 0.3s;
}

.main_test_servies .call-btn i {
    font-size: 13px;
}

.main_test_servies .call-btn:hover {
    background-color: #094a63;
}

.main_test_servies .form-control,
.form-select {
    border-radius: 10px;
    padding: 15px;
    border: none;
    background-color: #fff;
    font-size: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.main_test_servies .form-control:focus,
.form-select:focus {
    background-color: #ffffff;
    border-color: #0d5f7f;
}

.main_test_servies .upload-btn {
    background-color: #3fc1d8;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s;
}

.main_test_servies .upload-btn:hover {
    background-color: #2da6bb;
}

.main_test_servies .search-btn {
    background: #16a596;
    color: white;
    border: none;
    padding: 14px;
    text-decoration: none;
    width: 100%;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 40%;
    display: block;
    text-align: center;
    transition: transform 0.2s;
}

.main_test_servies .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(94, 199, 63, 0.3);
}

.main_test_servies .image-container {
    position: relative;
}

.main_test_servies .circle-image {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main_test_servies .blue-circle {
    position: absolute;
    width: 320px;
    height: 320px;
    background-color: #3fc1d8;
    border-radius: 50%;
    top: -30px;
    right: -30px;
    z-index: -1;
}

@media (max-width: 768px) {
    .main_test_servies .header-title {
        font-size: 2rem;
    }

    .main_test_servies .book-text {
        font-size: 1.5rem;
    }

    .main_test_servies .circle-image {
        max-width: 300px;
        height: 300px;
    }

    .main_test_servies .blue-circle {
        width: 280px;
        height: 280px;
    }
}


/* card serives */
.card_test_servies .main_decotoer {
    font-size: 12px;
    padding-bottom: 10px;
}

.card_test_servies .page-title {
    color: #1a5f7a;
    font-weight: bold;
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 10px;
}

.card_test_servies .page-subtitle {
    color: #666;
    font-size: 15px;
    margin-bottom: 30px;
}

.card_test_servies .sidebar {
    background: linear-gradient(135deg, #1a5f7a 0%, #2c8ca8 100%);
    border-radius: 10px;
    padding: 25px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card_test_servies .sidebar.fixed {
    position: fixed;
    top: 90px !important;
    z-index: 9999;
}



.card_test_servies .sidebar.absolute {
    position: absolute;
    top: auto;
    width: 100%;
}



@media (max-width: 1199px) {
    .card_test_servies .sidebar.fixed {
        width: calc(25% - 30px);
    }
}

@media(max-width:991px) {
    .card_test_servies .sidebar.fixed {
        position: relative;
        width: 100%;
        margin-bottom: 120px;
    }
}

.card_test_servies .sidebar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card_test_servies .sidebar-title {
    font-size: 13px;
    font-weight: 600;
}

.card_test_servies .selected-section {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.card_test_servies .selected-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card_test_servies .selected-title {
    color: #4dd4f7;
    font-size: 14px;
    font-weight: 500;
}

.card_test_servies .badge-count {
    background: #4dd4f7;
    color: #1a5f7a;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.card_test_servies .selected-item {
    background: white;
    color: #333;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-size: 14px;
}

.card_test_servies .remove-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.card_test_servies .add-test-section {
    position: relative;
    margin-bottom: 20px;
}

.card_test_servies .add-test-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    color: white;
    padding: 12px 45px 12px 15px;
    border-radius: 6px;
    width: 100%;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.card_test_servies .add-test-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.card_test_servies .add-test-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.card_test_servies .add-test-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.card_test_servies .add-test-icon:hover {
    background: rgba(255, 255, 255, 0.3);
}

.card_test_servies .search-btn {
    background: #22c55e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card_test_servies .search-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.card_test_servies .lab-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--box-shadow);
    margin-bottom: 20px;
    transition: all 0.3s;
}


.card_test_servies .lab-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.card_test_servies .lab-logo {
    width: 70px;
    height: 70px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.card_test_servies .lab-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card_test_servies .lab-name {
    color: #0ea5e9;
    font-size: 22px;
    font-weight: 600;
}

.card_test_servies .lab-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.card_test_servies .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 15px;
}

.card_test_servies .star-rating {
    color: #fbbf24;
    font-size: 18px;
}

.card_test_servies .views-count {
    color: #888;
}

.card_test_servies .home-sample {
    color: #0ea5e9;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card_test_servies .details-section {
    color: #0ea5e9;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.card_test_servies .price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.card_test_servies .price-label {
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.card_test_servies .price-values {
    display: flex;
    align-items: center;
    gap: 12px;
}

.card_test_servies .old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 13px;
}

.card_test_servies .new-price {
    color: #0ea5e9;
    font-size: 17px;
    font-weight: bold;
}



.card_test_servies .book-btn {
    background: #16a596;
    color: white;
    border: none;
    padding: 11px;
    border-radius: 8px;
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.card_test_servies .book-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.card_test_servies .powered-by {
    text-align: center;
    color: #888;
    font-size: 17px;
    margin-top: 15px;
}

.card_test_servies .powered-by img {
    width: 10%;
    height: 30px;
}

.card_test_servies .powered-logo {
    max-height: 25px;
    margin-right: 5px;
    vertical-align: middle;
}


/* contact */
.contact .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.contact {
    padding: 40px 0;
}

.contact .info-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact .info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact .icon-wrapper {
    width: 50px;
    height: 50px;
    background: #e8f7fb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .icon-wrapper svg {
    width: 24px;
    height: 24px;
    fill: #4fc3dc;
}

.contact .info-content h3 {
    color: #1a2332;
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact .info-content p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
}

.contact .form-section {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact .form-group {
    display: flex;
    flex-direction: column;
}

.contact .form-group.full-width {
    grid-column: 1 / -1;
}

.contact label {
    color: #1a2332;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact input,
textarea {
    padding: 12px 16px;
    border: 1px solid #ffffff;
    box-shadow: var(--box-shadow);
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.contact input:focus,
textarea:focus {
    outline: none;
    border-color: #4fc3dc;
}

.contact textarea {
    resize: vertical;
    min-height: 120px;
}

.contact .submit-btn {
    background: #4fc3dc;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.contact .submit-btn:hover {
    background: #3ba9c4;
}

@media (max-width: 968px) {
    .contact .content-wrapper {
        grid-template-columns: 1fr;
    }

    .contact .form-row {
        grid-template-columns: 1fr;
    }

    .contact .header-title {
        font-size: 28px;
    }

    .contact .form-section {
        padding: 30px 20px;
    }
}

/* login */
.container_login {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 100px;
    background-image:
        url("../img/shape-6.png"),
        url("../img/shape-7.png");
    background-position:
        left top,
        right bottom;
    background-repeat:
        no-repeat,
        no-repeat;
}

@media (max-width:991px) {
    .container_login {
        padding: 90px 30px;
    }
}

.container_login .back-btn {
    display: flex;
    align-items: center;
    color: #666;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
}

.container_login .back-btn:hover {
    color: #333;
}

.container_login h2 {
    text-align: center;
    color: #1a1a1a;
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 600;
}

.container_login .form-group {
    margin-bottom: 25px;
}

.container_login label {
    display: block;
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.container_login .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 12px 15px;
    background: white;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.container_login .input-wrapper:focus-within {
    border-color: #4db8c4;
}

.container_login .input-icon {
    color: #4db8c4;
    font-size: 16px;
}

.container_login input {
    border: none;
    padding-left: 10px;
    outline: none;
    width: 100%;
    border-radius: 40px;
    font-size: 14px;
    color: #333;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
}

.container_login .check-icon {
    color: #4db8c4;
    font-size: 16px;
}

.container_login .eye-icon {
    color: #666;
    cursor: pointer;
    font-size: 16px;
}

.container_login .forgot-password {
    text-align: left;
    margin-top: 10px;
}

.container_login .forgot-password a {
    color: #4db8c4;
    text-decoration: none;
    font-size: 13px;
}

.container_login .forgot-password a:hover {
    text-decoration: underline;
}

.container_login .login-btn {
    width: 100%;
    background: linear-gradient(135deg, #4db8c4 0%, #3ca5b0 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    transition: transform 0.2s;
    text-align: center;

}

.container_login .login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(77, 184, 196, 0.3);
}

.container_login .signup-text {
    text-align: center;
    margin-top: 20px;
    color: #666;
    font-size: 14px;
}

.container_login .signup-text a {
    color: #4db8c4;
    text-decoration: none;
    font-weight: 600;
}

.container_login .signup-text a:hover {
    text-decoration: underline;
}

.container_login .divider {
    text-align: center;
    margin: 30px 0;
    color: #999;
    font-size: 14px;
    position: relative;
}

.container_login .divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
}

.container_login .divider::before {
    right: 0;
}

.container_login .divider::after {
    left: 0;
}

.container_login .social-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: white;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s;
}

.container_login .social-btn:hover {
    background: #f9f9f9;
    border-color: #ccc;
}

.container_login .social-btn img,
.social-btn svg {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

/* Sign up */

.signup-container {
    border-radius: 20px;
    padding: 120px 30px;
    max-width: 500px;

    width: 100%;
    margin: 0 auto;
}

.signup-container .back-btn {
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: color 0.3s;
}

.signup-container .back-btn:hover {
    color: #495057;
}

.signup-container .signup-title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 30px;
}

.signup-container .form-group {
    position: relative;
    margin-bottom: 20px;
}

.signup-container .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    padding: 12px 20px;
    transition: all 0.3s;
}

.signup-container .input-wrapper:focus-within {
    border-color: #17a2b8;
    background: white;
}

.signup-container .input-icon {
    color: #17a2b8;
    font-size: 18px;
    flex-shrink: 0;
}

.signup-container .form-input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    padding: 0 10px;
    font-size: 15px;
    color: #495057;
}

.signup-container .form-input::placeholder {
    color: #adb5bd;
}

.signup-container .country-flag {
    width: 24px;
    height: 16px;
    margin-left: 10px;
}

.signup-container .dropdown-arrow {
    color: #adb5bd;
    margin-right: 10px;
    font-size: 14px;
}

.signup-container .toggle-password {
    color: #adb5bd;
    cursor: pointer;
    margin-right: 10px;
    font-size: 18px;
}

.signup-container .toggle-password:hover {
    color: #495057;
}

.signup-container .gender-group {
    margin-bottom: 20px;
}

.signup-container .gender-label {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 10px;
    display: block;
}

.signup-container .gender-options {
    display: flex;
    gap: 20px;
}

.signup-container .gender-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.signup-container .gender-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.signup-container .gender-option label {
    color: #495057;
    font-size: 15px;
    cursor: pointer;
}

.signup-container .terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
}

.signup-container .terms-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin-top: 2px;
    flex-shrink: 0;
}

.signup-container .terms-text {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
}

.signup-container .terms-link {
    color: #17a2b8;
    text-decoration: none;
}

.signup-container .terms-link:hover {
    text-decoration: underline;
}

.signup-container .signup-btn {
    width: 100%;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(23, 162, 184, 0.3);
}

.signup-container .signup-btn:hover {
    background: linear-gradient(135deg, #138496 0%, #117a8b 100%);
    box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
    transform: translateY(-2px);
}

.signup-container .login-link {
    text-align: center;
    margin-top: 20px;
    color: #6c757d;
    font-size: 15px;
}

.signup-container .login-link a {
    color: #17a2b8;
    text-decoration: none;
    font-weight: 600;
}

.signup-container .login-link a:hover {
    text-decoration: underline;
}

.signup-container select.form-input {
    cursor: pointer;
    appearance: none;
}

.signup-container input[type="date"].form-input {
    cursor: pointer;
}

/* start footer */
.footer {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f0f0 100%);
    padding: 60px 40px 30px;
    border-top: 1px dashed var(--primary-color);
    position: relative;
    overflow: hidden;
    background-image: url(../img/doctor-shape-img1.png), url(../img/doctor-shape-img2.png);
    background-position: left top, right bottom;
    background-repeat: no-repeat, no-repeat;
    overflow: hidden;
}


.footer-content {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h2 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.footer .logo {
    color: #00bcd4;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer .footer-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.footer .footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #00bcd4;
    transform: translateX(5px);
}

.footer .contact-info {
    list-style: none;
    padding: 0;
}

.footer .contact-info li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    color: #666;
    font-size: 15px;
}

.footer .contact-info i {
    color: #999;
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
    min-width: 20px;
}

.footer .social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer .social-icons a {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.footer .social-icons a:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.footer .scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00bcd4;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.footer .scroll-top:hover {
    background: #00bcd4;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 188, 212, 0.4);
}

.footer .copyright {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 188, 212, 0.1);
    color: #999;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer .social-icons {
        flex-direction: row;
    }
}

/* details list servies */

.card-container {
    margin: 120px 0;
    border-radius: 20px;
    width: 100%;
}

.card-container .main_row_info {
    background-color: #F0FAFF !important;
}

.card-container .logo-box img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-container .logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.card-container .brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.card-container .rating-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-container .star-icon {
    color: #ffc107;
    font-size: 22px;
}

.card-container .rating-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.card-container .review-count {
    color: #6c757d;
    font-size: 16px;
    margin-left: 5px;
}

.card-container .view-reviews-btn {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}

.card-container .view-reviews-btn:hover {
    color: #0aa2c0;
}

.card-container .info-row {
    background: #FFF4EA;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}


.info-row_main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.card-container .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



.card-container .info-text {
    font-size: 15px;
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 576px) {

    .card-container .brand-name {
        font-size: 24px;
    }

    .card-container .info-text {
        font-size: 14px;
    }
}

.card-container .calendar-icon {
    background-color: #FFF4EA !important;
}


.card-container .rating-container {
    background-color: #F0FAFF;
    padding: 5px;
    margin-top: 10px;
    border-radius: 10px;
}

/* map */

.map-wrapper {
    margin-top: 30px;
    position: relative;
    background: #e8f0f2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper #map {
    height: 350px;
    width: 100%;
    border-radius: 0 0 30px 30px;
}

.map-wrapper .location-card {
    position: relative;
    padding: 20px 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 90px;
    transition: all 0.3s ease;
}

.map-wrapper .location-card.updating {
    opacity: 0.7;
}

.map-wrapper .icon-wrapper {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.map-wrapper .location-icon {
    width: 28px;
    height: 28px;
    color: #06b6d4;
}

.map-wrapper .location-info {
    color: white;
    text-align: right;
    flex: 1;
}

.map-wrapper .location-label {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.95;
    font-weight: 500;
}

.map-wrapper .location-address {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.map-wrapper .coordinates {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

.map-wrapper .menu-icon {
    width: 35px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    margin-left: auto;
}

.map-wrapper .menu-icon span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Custom marker */
.map-wrapper .custom-marker {
    width: 40px;
    height: 40px;
    background: #06b6d4;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.5);
    position: relative;
}

.map-wrapper .custom-marker::before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

.map-wrapper .loading {
    font-size: 14px;
    color: white;
    opacity: 0.9;
}

@media (max-width: 640px) {
    .map-wrapper .location-card {
        padding: 15px 20px;
    }

    .map-wrapper .location-address {
        font-size: 16px;
    }

    .map-wrapper .location-label {
        font-size: 14px;
    }
}

.map-wrapper .leaflet-control-attribution {
    font-size: 10px !important;
}

/* cart  */

.cart-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.cart-button {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    animation: bounce 1s infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cart-button img {

    width: 70px;
    height: 70px;
}

.cart-button i {
    color: #fff;
    font-size: 24px;

}

.cart-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cart-icon {
    color: #fff;
    transition: transform 0.3s;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #ff4757;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}


/* tab scn */

.tab_main_promation h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.tab_main_promation .tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tab_main_promation .tab {
    flex: 1;
    padding: 12px 20px;
    border: 2px dashed transparent;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: var(--box-shadow);
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.tab_main_promation .tab.active {
    border-color: #3EBDC6;
    background: #EFFCFC;
    box-shadow: var(--box-shadow);
    color: #2E2E34;
}

.tab_main_promation .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.tab_main_promation .test-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.tab_main_promation .test-item:hover {
    background: #f0f0f0;
}

.tab_main_promation .test-info h3 {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.tab_main_promation .test-info p {
    font-size: 16px;
    font-weight: 600;
    color: #0ea5e9;
    margin: 0;
}

.tab_main_promation .add-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #e0f2fe;
    border: none;
    color: #0ea5e9;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tab_main_promation .add-btn:hover {
    background: #7dd3fc;
    color: white;
}

.tab_main_promation .mt-40 {
    margin-top: 40px;
}

.tab_main_promation .tab-content {
    display: none;
}

.tab_main_promation .tab-content.active {
    display: block;
}

@media(max-width:991px) {
    .liset_servies {
        margin-top: 50px !important;
    }
}

/* reviews */


.card-containe_main {
    margin-top: 100px;
    margin-bottom: 30px;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    width: 100%;
    box-shadow: var(--box-shadow);
}

.card-containe_main .main_row_info {
    background-color: #F0FAFF !important;
}

.card-containe_main .logo-box img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.card-containe_main .logo-text {
    font-size: 32px;
    font-weight: bold;
    color: #2c3e50;
}

.card-containe_main .brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.card-containe_main .rating-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-containe_main .star-icon {
    color: #ffc107;
    font-size: 22px;
}

.card-containe_main .rating-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.card-containe_main .review-count {
    color: #6c757d;
    font-size: 16px;
    margin-left: 5px;
}

.card-containe_main .view-reviews-btn {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
}


.container_mian_rvew .reviews-header {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.container_mian_rvew .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.container_mian_rvew .review-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 20px;
    border-radius: 16px;
}

.container_mian_rvew .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.container_mian_rvew .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.container_mian_rvew .avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #999;
}

.container_mian_rvew .reviewer-info {
    flex: 1;
}

.container_mian_rvew .reviewer-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    margin-bottom: 3px;
}

.container_mian_rvew .review-date {
    color: #666;
    font-size: 13px;
}

.container_mian_rvew .stars {
    margin-bottom: 12px;
}

.container_mian_rvew .star {
    color: #ffc107;
    font-size: 18px;
}

.container_mian_rvew .star.empty {
    color: #e0e0e0;
}

.container_mian_rvew .review-text {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .container_mian_rvew .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* cart */


.cart .cart-section,
.summary-section {
    background: white;
    border-radius: 7px;
}

.cart .section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #2d3748;
}

.cart .product-card {
    background: #ffffff;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    box-shadow: var(--box-shadow);
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.cart .product-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 10px;
}

@media(max-width:991px) {
    .cart .product-image {
        width: 100%;
        height: 100%;
    }
}


.main_available_card_cart {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.product-info {
    flex: 1;
}

.cart .product-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.cart .product-color {
    font-size: 13px;
    color: #718096;
}

.cart .quantity-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 0px;
    border-radius: 10px;
}

.cart .qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f7fafc;
    color: #4a5568;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .qty-btn:hover {
    background: #edf2f7;
    color: #2d3748;
}

.cart .qty-display {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: #2d3748;
}

.cart .product-price {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    min-width: 120px;
    text-align: center;
}

.cart .delete-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: #fff5f5;
    color: #e53e3e;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart .delete-btn:hover {
    background: #feb2b2;
    transform: scale(1.1);
}

.cart .coupon-section {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.cart .coupon-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: all 0.2s;
}

.cart .coupon-input:focus {
    outline: none;
    border-color: #4299e1;
}

.cart .apply-coupon-btn {
    width: 100%;
    padding: 10px;
    background: white;
    color: #4299e1;
    border: 2px solid #4299e1;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cart .apply-coupon-btn:hover {
    background: #4299e1;
    color: white;
}

.cart .order-summary {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.cart .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
}

.cart .summary-label {
    color: #718096;
}

.cart .summary-value {
    font-weight: 600;
    color: #2d3748;
}

.cart .total-row {
    border-top: 2px solid #e2e8f0;
    padding-top: 15px;
    margin-top: 15px;
}

.cart .total-row .summary-label,
.total-row .summary-value {
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
}

.cart .payment-methods {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.cart .payment-option {
    flex: 1;
    min-width: 40px;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.cart .payment-option:hover {
    border-color: #4299e1;
    background: white;
    transform: translateY(-2px);
}

.cart .payment-option.active {
    border-color: #4299e1;
    background: #ebf8ff;
}

.cart .checkout-btn {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    display: block;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.cart .checkout-btn:hover {
    background: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(66, 153, 225, 0.3);
}

.cart .action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cart .back-btn,
.cancel-btn {
    padding: 14px 60px;
    border: none;
    text-decoration: none;
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

@media(max-width:991px) {
    .cart .back-btn, .cancel-btn {
        padding: 13px 40px !important;
    }
}

.cart .back-btn {
    background: #edf2f7;
    color: #4a5568;
}

.cart .back-btn:hover {
    background: #e2e8f0;
}

.cart .cancel-btn {
    background: #0F7685;
    color: white;
    flex: 1;
}

@media (max-width: 991px) {
    .cart .product-card {
        flex-direction: column;
        text-align: center;
    }

    .cart .product-price {
        font-size: 18px;
    }

    .cart .payment-methods {
        justify-content: center;
    }
}


.summary-section {
    width: 100%;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.summary-fixed {
    position: fixed;
    top: 20px;
    width: 350px;
}

/* check out */

.check_out {
    margin-bottom: 50px;
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding: 20px;
}

.check_out .form-card {
    border-radius: 12px;
    margin: 0 auto;
}

.check_out .form-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.check_out .back-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-left: 12px;
    color: #333;
}

.check_out .form-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    color: #333;
}

.check_out .section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #333;
}

.check_out .section-title:first-of-type {
    margin-top: 0;
}

.check_out .form-label {
    font-size: 13px;
    color: #888;
    margin-bottom: 6px;
    display: block;
    font-weight: 400;
}

.check_out .form-control,
.form-select {
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    margin-bottom: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    width: 100%;
    background: white;
}

.check_out .form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #0F7685;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.check_out .checkbox-group {
    margin-bottom: 16px;
}

.check_out .checkbox-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.check_out .checkbox-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-left: 12px;
    accent-color: #0F7685;
    cursor: pointer;
}

.check_out .checkbox-item input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-left: 12px;
    accent-color: #0F7685;
    cursor: pointer;
}

.check_out .checkbox-item label {
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    color: #333;
}

.check_out .info-text {
    font-size: 12px;
    color: #888;
    margin-bottom: 8px;
    line-height: 1.5;
}

.check_out .file-upload {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    background: #fafafa;
}

.check_out .file-upload i.fa-file-image {
    color: #9c27b0;
    margin-left: 8px;
}

.check_out .file-upload span {
    font-size: 13px;
    color: #333;
}

.check_out .file-upload .delete-btn {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 16px;
}

.check_out .upload-btn {
    width: 100%;
    padding: 12px;
    border: 2px dashed #0F7685;
    background: #f0f9fa;
    color: #0F7685;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.check_out .upload-btn:hover {
    background: #e0f5f7;
    border-color: #00acc1;
}

.check_out .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-top: 20px;
}

.check_out .summary-row span:first-child {
    font-size: 14px;
    color: #666;
}

.check_out .summary-row span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.check_out .confirm-btn {
    background: linear-gradient(135deg, #00bcd4, #00acc1);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    width: 100%;
    display: block;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.check_out .confirm-btn:hover {
    transform: translateY(-2px);
}

.check_out .divider {
    border-top: 1px solid #e8e8e8;
    margin: 20px 0;
}

/* vailable */
.popup-overlay_main {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
}


.main_available .popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 25px;
    border-radius: 10px;
    width: 500px;
    text-align: center;
    display: none;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);

}

.main_available .popup h3 {
    margin-bottom: 10px;
}

.main_available .close-btn {
    margin-top: 15px;
    padding: 8px 20px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
}


.available_times {
    /* margin-top: 90px; */
}


.available_times .checkout-card {
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.available_times .back-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    margin-right: 12px;
    color: #333;
}

.available_times .title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
    color: #333;
}

.available_times .section-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 16px;
    margin-top: 24px;
    color: #333;
}

.available_times .section-title:first-of-type {
    margin-top: 0;
}

.available_times .tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.available_times .tab {
    flex: 1;
    padding: 10px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    background: white;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.available_times .tab.active {
    background: #EFFCFC;
    border-color: #3EBDC6;
    color: #3EBDC6;
    font-weight: 500;
}

.available_times .tab-content {
    display: none;
}

.available_times .tab-content.active {
    display: block;
}

.available_times .calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 12px;
}

.available_times .calendar-header h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    flex: 1;
    text-align: center;
}

.available_times .nav-btn {
    background: #e8f5f7;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #00bcd4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.available_times .nav-btn:hover {
    background: #00bcd4;
    color: white;
}

.available_times .emergency-info {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-radius: 12px;
    margin-bottom: 20px;
}

.available_times .emergency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff5252, #f44336);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(244, 67, 54, 0.3);
}

.available_times .emergency-icon i {
    font-size: 40px;
    color: white;
}

.available_times .emergency-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.available_times .emergency-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.available_times .emergency-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    color: #f44336;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.available_times .emergency-note i {
    font-size: 16px;
}

.main_lin_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 75px;
}


@media(max-width:991px) {
    .main_lin_date {
        gap: 30px;
    }
}

.calendar-days {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .calendar-days {
        scrollbar-width: none;
    }

    .calendar-days::-webkit-scrollbar {
        display: none;
    }
}

@media (min-width: 769px) {
    .calendar-days::-webkit-scrollbar {
        height: 4px;
    }

    .calendar-days::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 10px;
    }

    .calendar-days::-webkit-scrollbar-thumb {
        background: #00bcd4;
        border-radius: 10px;
    }
}



.calendar-days .day {
    flex: 0 0 calc((100% - 6 * 15px) / 7);
}


.available_times .day-label {
    text-align: center;
    font-size: 12px;
    color: #888;
    font-weight: 500;
    padding: 8px 0;
}

.available_times .day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px dashed #ddd;
}

.available_times .day:hover {
    background: #f0f0f0;
}

.available_times .day.selected {
    background: none;
    color: #0096D1;
    border-color: #0096D1;
    font-weight: 600;
}

.available_times .day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.available_times .day.disabled:hover {
    background: transparent;
}

.available_times .time-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
}

.available_times .time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.available_times .time-slot {
    padding: 10px;
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
}

.available_times .time-slot:hover {
    border-color: #00bcd4;
}

.available_times .time-slot.selected {
    background: none;
    color: #0096D1;
    border-color: #0096D1;
    font-weight: 500;
}

.available_times .time-slot.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #fafafa;
}

.available_times .time-slot.disabled:hover {
    border-color: #e0e0e0;
}

.available_times .details-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.available_times .details-row .label {
    color: #888;
}

.available_times .details-row .value {
    color: #333;
    font-weight: 500;
}

.available_times .promo-section {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.available_times .promo-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
}

.available_times .promo-input::placeholder {
    color: #bbb;
}

.available_times .apply-btn {
    padding: 10px 20px;
    background: #00bcd4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.available_times .payment-option {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.available_times .payment-option:hover {
    border-color: #00bcd4;
}

.payment-option img {
    width: 20px;
    height: 20px;
    /* padding-right: 10px; */
}

.available_times .payment-label {
    font-size: 14px;
    color: #333;
    padding-left: 10px;
}

.available_times .summary-section {
    margin: 20px 0;
}

.available_times .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.available_times .summary-row span:first-child {
    font-size: 14px;
    color: #666;
}

.available_times .summary-row span:last-child {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.available_times .confirm-btn {
    background: linear-gradient(135deg, #00bcd4, #00acc1);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s;
}

.available_times .confirm-btn:hover {
    transform: translateY(-2px);
}


/* conform */

.main_form_conform {
    margin: 20px 0;
}

.main_form_conform .container {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 10px 20px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--box-shadow);
}


.main_form_conform .brand-name {
    font-size: 19px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}


.main_form_conform .rating-text {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.main_form_conform .star-icon {
    color: #ffc107;
    font-size: 22px;
}


.main_form_conform .rating-container {
    background-color: #F0FAFF;
    padding: 5px;
    margin-top: 10px;
    border-radius: 10px;
}


.main_form_conform .logo-box img {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.main_form_conform .info-row {
    background: #FFF4EA;
    border-radius: 12px;
    padding: 15px 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.main_form_conform .rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.main_form_conform .star {
    color: #ffd700;
}

.main_form_conform .rating-text {
    color: #666;
}


.main_form_conform .section-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0 !important;
}

.main_form_conform .detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

.main_form_conform .detail-row:last-child {
    border-bottom: none;
}

.main_form_conform .detail-label {
    color: #666;
    font-size: 15px;
}

.main_form_conform .detail-value {
    color: #333;
    font-weight: 500;
    font-size: 15px;
    text-align: left;
}

.main_form_conform .section {
    margin-bottom: 3px;
}

.main_form_conform .total-row {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.payment-method,
.address-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.main_form_conform .change-link {
    color: #00bcd4;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
}

.cash-icon {
    font-size: 24px;
}

.location-icon {
    color: #00bcd4;
    font-size: 20px;
}

.confirm-btn {
    width: 100%;
    display: block;
    background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 198, 218, 0.4);
}

.main_form_conform .confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 198, 218, 0.5);
}

.main_form_conform .confirm-btn:active {
    transform: translateY(0);
}


.method-box,
.address-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.payment-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    outline: none;
    font-family: inherit;
}

.payment-select:focus {
    outline: none;
}

.cash-icon {
    font-size: 24px;
}

.location-icon {
    color: #00bcd4;
    font-size: 20px;
}

.main_form_conform .confirm-btn {
    width: 100%;
    background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-decoration: none;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(38, 198, 218, 0.4);
}


.confirm-btn_main {
    width: 100%;
    background: #fff;
    color: #00838f;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: block;
    text-decoration: none;
    margin: 0 auto;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.confirm-btn_main:hover {
    transform: translateY(-2px);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.main_form_conform .confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 198, 218, 0.5);
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
}

.main_form_conform .confirm-btn:active {
    transform: translateY(0);
}


.address-wrapper {
    position: relative;
}

.selected-address {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
}

.blue-box {
    width: 14px;
    height: 14px;
    background-color: #3EBDC6;
    border-radius: 4px;
    flex-shrink: 0;
}

.address-options {
    display: none;
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-top: 6px;
    z-index: 10;
    padding-left: 0;
}

.address-options li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
}

.address-options li:hover {
    background: #f5f5f5;
}

.address-text {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.payment-wrapper {
    width: 100%;
    position: relative;
    cursor: pointer;
}

.selected-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 8px;
}

.selected-payment img {
    width: 30px;
}

.payment-options {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 5px;
    z-index: 10;
}

.payment-options li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.payment-options li:hover {
    background: #f5f5f5;
}

.payment-options img {
    width: 30px;
}

/* map_address */

.map_main_container .map-container {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 120px;
    /* z-index: -1; */
    border-radius: 12px;
}

.map_main_container #map {
    width: 100%;
    height: 100%;
}

.map_main_container .back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.map_main_container .back-btn i {
    color: #333;
    font-size: 18px;
}

.map_main_container .back-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map_main_container .location-btn {
    position: absolute;
    bottom: 160px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s;
}

.map_main_container .location-btn i {
    color: #666;
    font-size: 18px;
}

.map_main_container .location-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.map_main_container .center-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 1000;
    pointer-events: none;
}

.map_main_container .pin-icon {
    font-size: 48px;
    color: #00bcd4;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.map_main_container .form-container {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 24px;
    margin-top: -20px;
    position: relative;
    z-index: 10;
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
}

.map_main_container .drag-indicator {
    width: 60px;
    height: 4px;
    background: #00bcd4;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.map_main_container .section-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 8px;
}

.map_main_container .section-subtitle {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-bottom: 24px;
}

.map_main_container .address-input-group {
    position: relative;
    margin-bottom: 20px;
}

.map_main_container .address-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #00bcd4;
    font-size: 18px;
}

.map_main_container .address-input {
    width: 100%;
    padding: 14px 40px 14px 40px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.map_main_container .address-input:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.map_main_container .close-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
}

.map_main_container .close-icon:hover {
    color: #666;
}

.map_main_container .label-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    font-weight: 500;
}

.map_main_container .detail-textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 13px;
    color: #333;
    resize: vertical;
    transition: all 0.3s;
}

.map_main_container .detail-textarea:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.map_main_container .input-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media(max-width:991px) {
    .map_main_container .input-row {
        grid-template-columns: repeat(1, 1fr);
    }
}

.map_main_container .input-group {
    display: flex;
    flex-direction: column;
}

.map_main_container .input-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.map_main_container .input-field {
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    text-align: center;
    transition: all 0.3s;
}

.map_main_container .input-field:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.map_main_container .confirm-btn {
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px;
    background: linear-gradient(135deg, #26c6da 0%, #00acc1 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.map_main_container .confirm-btn.active {
    background: #00bcd4;
    color: white;
    cursor: pointer;
}

.map_main_container .confirm-btn.active:hover {
    background: #00acc1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.3);
}

.map_main_container .loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 20;
}

.map_main_container .spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #00bcd4;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 10px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
    }
}

/* confirmation-card */
.confirmation-card {
    background: white;
    margin-top: 120px !important;
    margin-bottom: 30px !important;
    box-shadow: var(--box-shadow);
    padding: 3rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    text-align: center;
}

.confirmation-card .image-container {
    width: 200px;
    height: 100px;
    margin: 20px auto 2rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
}

.confirmation-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    margin-bottom: 30px;
}

.confirmation-card .checkmark-circle {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.confirmation-card .checkmark-inner {
    width: 64px;
    height: 64px;
    background: #80deea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirmation-card .checkmark {
    color: #00838f;
    font-size: 32px;
    font-weight: bold;
}

.confirmation-card .title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 1rem;
}

.confirmation-card .description {
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.confirmation-card .btn-track {
    width: 50%;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: #00acc1;
    font-weight: 600;
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
}

.confirmation-card .btn-track:hover {
    color: #0097a7;
}

.confirmation-card .btn-receipt {
    width: 50%;
    padding: 1rem;
    background: #3EBDC6;
    border: none;
    border-radius: 15px;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--box-shadow);
}

.confirmation-card .btn-receipt:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 198, 218, 0.4);
    background: linear-gradient(135deg, #00acc1 0%, #0097a7 100%);
}

.confirmation-card .btn-home {
    width: 100%;
    padding: 0.75rem;
    background: transparent;
    border: none;
    color: #00acc1;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.confirmation-card .btn-home:hover {
    color: #0097a7;
}

.confirmation-card .home-icon {
    width: 20px;
    height: 20px;
}


.eiBHti {
    padding: 8px 0px 0px;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    align-items: center;
}

.filbLj {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgb(227, 230, 234);
    overflow: hidden;

}

.fUUPdo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cbeSqQ {
    margin: 0px;
    color: rgb(72, 72, 72);
    font-weight: 600;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 135px;
}


.iKYjsN {
    display: flex;
    gap: 3px;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(102, 102, 102);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;

}

.iKYjsN {
    display: flex;
    gap: 3px;
    -webkit-box-align: center;
    align-items: center;
    color: rgb(102, 102, 102);
    font-weight: 400;
    font-size: 13px;
    line-height: 20px;
}


.test-card {
    flex-shrink: 0;
    padding: 6px;
    border-radius: 12px;
    overflow: hidden;
    background: rgb(255, 255, 255);
    box-sizing: border-box;
    border: 1px solid rgb(227, 230, 234);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    margin-left: 7px;
    margin-right: 7px;
    margin-bottom: 20px;
}


.test-card img {
    border-radius: 12px;
}


.test-image {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    overflow: hidden;
}

.details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #484848;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.details p {
    font-size: 12px;
    font-weight: 400;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.details .location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    color: #666;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.location-icon {
    width: 14px;
    height: 14px;
    background-image: url('https://cdn-icons-png.flaticon.com/512/684/684908.png');
    background-size: cover;
    display: inline-block;
}


@media(max-width:991px) {
    .mobile-img img {
        text-align: center;
        margin-top: 30px;
        max-width: 280px !important;
    }
}

/*  */

#doctors-content .card {
    background: rgb(255, 255, 255);
    border-radius: 12px;
    padding: 35px 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

#doctors-content .main-content {
    display: flex;
    align-items: flex-start;
}

#doctors-content .left-section {
    display: flex;
    gap: 13px;
    flex: 1;
}

#doctors-content .doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e0e0;
}

#doctors-content .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#doctors-content .doctor-label {
    color: #1e88e5;
    font-size: 15px;
    font-weight: 500;
}

#doctors-content .doctor-name {
    color: #1e88e5;
    font-size: 18px;
    font-weight: 600;
}

#doctors-content .doctor-specialty {
    color: #9e9e9e;
    font-size: 15px;
    margin-bottom: 5px;
}

#doctors-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

#doctors-content .stars {
    display: flex;
    gap: 3px;
}

#doctors-content .star {
    color: #ffc107;
    font-size: 22px;
}

#doctors-content .joined-badge {
    color: #757575;
    font-size: 13px;
}

#doctors-content .info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}

#doctors-content .info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

#doctors-content .specialty-link {
    color: #1e88e5;
    text-decoration: none;
    font-weight: 500;
}

#doctors-content .specialty-link:hover {
    text-decoration: underline;
}

#doctors-content .fee-text {
    color: #424242;
}

#doctors-content .location-text {
    color: #616161;
    font-size: 12px;
}

#doctors-content .right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

#doctors-content .nav-arrow {
    background: none;
    border: none;
    font-size: 32px;
    color: #bdbdbd;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

#doctors-content .nav-arrow:hover {
    color: #757575;
}

#doctors-content .dates-grid {
    display: flex;
    gap: 15px;
}

#doctors-content .date-card {
    width: 140px;
}

#doctors-content .date-header {
    background: #1e88e5;
    color: white;
    padding: 12px 20px;
    border-radius: 6px 6px 0 0;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
}

#doctors-content .date-body {
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 6px 6px;
    padding: 7px;
    background: white;
}

#doctors-content .time-slot {
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 500;
}

#doctors-content .time-slot.unavailable {
    color: #d0d0d0;
    text-decoration: line-through;
}

#doctors-content .time-slot.available {
    color: #1e88e5;
}

#doctors-content .more-btn {
    color: #1e88e5;
    background: none;
    border: none;
    width: 100%;
    padding: 8px 0;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

#doctors-content .more-btn:hover {
    text-decoration: underline;
}

#doctors-content .book-btn {
    background: #3EBDC6;
    color: white;
    border: none;
    width: 100%;
    padding: 5px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

#doctors-content .book-btn:hover {
    background: #0096d1;
}

#doctors-content .footer-text {
    text-align: center;
    color: #9e9e9e;
    margin-top: 30px;
    font-size: 14px;
}

@media (max-width: 1200px) {
    #doctors-content .main-content {
        flex-direction: column;
    }

    #doctors-content .right-section {
        width: 100%;
        justify-content: center;
    }

    #doctors-content .dates-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #doctors-content .left-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #doctors-content .doctor-name-row {
        flex-direction: column;
        align-items: center;
    }

    #doctors-content .info-row {
        justify-content: center;
    }
}

.main-container {
    background: white;
    border-radius: 15px;
    margin: 0 auto;
}

.nav-tabs {
    border-bottom: none;
    margin-bottom: 30px;
}

.nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    background: transparent;
}

@media (max-width: 576px) {
    .nav-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}

.nav-tabs .nav-link.active {
    color: #0d6efd;
    border-bottom: 3px solid #0d6efd;
    background: transparent;
}

.main_container_services .tab-content {
    display: none;
}

.main_container_services .tab-content.active {
    display: block;
}

.filter-section {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-dropdown {
    flex: 1;
    min-width: 250px;
}

.filter-dropdown select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 15px;
    cursor: pointer;
}

.doctor-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}


@media (max-width: 991px) {
    .doctor-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.doctor-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.doctor-details {
    flex: 1;
}

.doctor-name {
    font-size: 18px;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 5px;
}

.doctor-title {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 15px;
}

.rating-stars {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 15px;
}

.joined-badge {
    display: inline-block;
    color: #6c757d;
    font-size: 14px;
    margin-left: 10px;
}

.doctor-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #495057;
}

.doctor-info-item i {
    width: 20px;
    color: #0d6efd;
}

.speciality-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.appointment-section {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: flex-start;
}

.day-card {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    min-width: 140px;
    cursor: pointer;
    transition: all 0.3s;
}

.day-card.active {
    background: #0d6efd;
    color: white;
    border-color: #0d6efd;
}

.day-card.disabled {
    background: #a0c4e8;
    color: white;
    cursor: not-allowed;
}

.day-card.available {
    background: #e7f3ff;
    border-color: #0d6efd;
}

.day-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 10px;
}

.time-slot {
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 5px;
    margin: 5px 0;
    font-size: 14px;
}

.day-card.active .time-slot {
    background: rgba(255, 255, 255, 0.2);
}

.no-appointments {
    color: #6c757d;
    font-size: 13px;
    margin-top: 10px;
}

.more-link {
    color: #0d6efd;
    font-size: 13px;
    text-decoration: none;
    margin-top: 8px;
    display: inline-block;
}



.book-btn.disabled {
    background: #adb5bd;
    cursor: not-allowed;
}

.book-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reservation-text {
    color: #6c757d;
    font-size: 13px;
    text-align: center;
}

.nav-arrow {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background: #f8f9fa;
    border-color: #0d6efd;
}

.appointment-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.clinic-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.clinic-header {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .clinic-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.clinic-icon {
    width: 80px;
    height: 80px;
    background: #0d6efd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    color: white;
}

.clinic-name {
    font-size: 26px;
    color: #212529;
    font-weight: 600;
    margin-bottom: 5px;
}

.clinic-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
}

.reviewer-name {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
}

.review-date {
    color: #6c757d;
    font-size: 13px;
}

.review-text {
    color: #495057;
    line-height: 1.6;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.insurance-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.insurance-card:hover {
    border-color: #0d6efd;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.15);
}

.insurance-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.insurance-name {
    font-weight: 600;
    font-size: 16px;
    color: #212529;
    margin-bottom: 8px;
}

.insurance-coverage {
    color: #6c757d;
    font-size: 13px;
}


.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #444;
}

.info-icon i {
    color: #0d6efd;
    font-size: 16px;
}

.specialty-link {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.specialty-link:hover {
    text-decoration: underline;
}


.available-bar {
    display: none !important;
}

@media (max-width: 991px) {
    .available-bar {
        display: flex !important;
        flex-direction: column;
        justify-content: center !important;
        margin: 0 auto;
    }


    .right-section {
        display: none !important;
    }
}

.available-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    max-width: 420px;
}

.available-text {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}


.icon-circle_main img {
    width: 24px;
    height: 24px;
}


.main_row_detels {
    margin-top: 120px !important;
    margin-bottom: 30px !important;
}


.file-upload {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.file-upload:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.file-upload>div {
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-upload span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.delete-btn {
    background: rgba(244, 67, 54, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.delete-btn i {
    color: #f44336;
    font-size: 14px;
}

.delete-btn:hover {
    background: #f44336;
}

.delete-btn:hover i {
    color: #fff;
}



.main_row_detels .form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    animation: slideUp 0.6s ease;
    transition: opacity 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main_row_detels .section-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin: 25px 0 18px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #0096d1;
    display: inline-block;
}

.main_row_detels .section-title:first-child {
    margin-top: 0;
}

.main_row_detels .checkbox-group {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.main_row_detels .checkbox-item {
    flex: 1;
    min-width: 200px;
}

.main_row_detels .checkbox-item input[type="radio"],
.checkbox-item input[type="checkbox"] {
    display: none;
}

.main_row_detels .checkbox-item label {
    display: block;
    padding: 12px 18px;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: #4a5568;
}

.main_row_detels .checkbox-item input:checked+label {
    background: linear-gradient(135deg, #0096d1 0%, #3ebdc6 100%);
    color: white;
    border-color: #0096d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 150, 209, 0.4);
}

.main_row_detels .checkbox-item label:hover {
    border-color: #0096d1;
    transform: translateY(-2px);
}

.main_row_detels .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.main_row_detels .col-md-12 {
    display: flex;
    flex-direction: column;
}

.main_row_detels .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 14px;
}

.main_row_detels .form-control,
.form-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: white;
}

.main_row_detels .form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #0096d1;
    box-shadow: 0 0 0 3px rgba(0, 150, 209, 0.1);
}

.main_row_detels textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.main_row_detels .info-text {
    color: #718096;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.main_row_detels .upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f7fafc;
    border: 2px dashed #cbd5e0;
    border-radius: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.main_row_detels .upload-btn:hover {
    background: #edf2f7;
    border-color: #0096d1;
    color: #0096d1;
}

.main_row_detels #fileList {
    margin: 15px 0;
}

.main_row_detels .file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f7fafc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.main_row_detels .file-item button {
    background: #fc8181;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.main_row_detels .divider {
    height: 2px;
    background: #e2e8f0;
    margin: 30px 0;
}

.main_row_detels .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #f7fafc;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
}

.main_row_detels .confirm-btn {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0096d1 0%, #3ebdc6 100%);
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 150, 209, 0.25);
}

.main_row_detels .confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 150, 209, 0.35);
}

@media (max-width: 768px) {
    .main_row_detels .form-card {
        padding: 25px;
    }

    .main_row_detels .checkbox-group {
        flex-direction: column;
    }

    .main_row_detels .checkbox-item {
        min-width: 100%;
    }
}


.card_test_servies .card {
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 15px;
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}



/* profil */


.card_test_servies .profile-section {
    display: flex;
    gap: 25px;
}

.card_test_servies .left-section {
    display: flex;
    gap: 25px;
    flex: 1;
}

.card_test_servies .avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e0e0e0;
}

.card_test_servies .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card_test_servies .doctor-details {
    flex: 1;
    max-width: 500px;
}

.card_test_servies .clinic-label {
    color: #00a8ff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 2px;
}

.card_test_servies .doctor-name {
    color: #00a8ff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 3px;
}

.card_test_servies .specialization {
    color: #6c757d;
    font-size: 12px;
}

.card_test_servies .rating-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 5px 0;
}

.card_test_servies .stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 3px;
    margin: 30px 0;
}

.card_test_servies .rating-count {
    color: #6c757d;
    font-size: 12px;
    margin-left: 5px;
}

.card_test_servies .hygiene {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #e7f5ff;
    color: #0096d1;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin: 8px 0 15px 0;
}

.card_test_servies .details-grid {
    display: grid;
    gap: 20px;
}

.card_test_servies .detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: #495057;
}

.card_test_servies .detail-icon {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.card_test_servies .waiting {
    color: #28a745;
    font-weight: 600;
}

.card_test_servies .link {
    color: #0096d1;
    text-decoration: none;
}

/* Appointment Section */
.card_test_servies .appointment-wrapper {
    flex: 1;
    min-width: 400px;
}

.card_test_servies .appointment-header {
    text-align: right;
    color: #6c757d;
    font-size: 13px;
    margin-bottom: 20px;
    padding-right: 10px;
}

.card_test_servies .slider-wrapper {
    position: relative;
    margin: 0 -10px;
}

.card_test_servies .slick-slider {
    padding: 0 35px;
}

.card_test_servies .appointment-card {
    padding: 0 8px;
    outline: none;
}

.card_test_servies .card-inner {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 50px 10px rgba(0, 0, 0, 0.05);
}

.card_test_servies .day-header {
    background: #0096d1;
    color: white;
    padding: 7px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
}

.card_test_servies .times-container {
    background: white;
    padding: 0px 5px 8px 5px;
}

.card_test_servies .time-item {
    text-align: center;
    padding: 4px 0;
    font-size: 11px;
    font-weight: 600;
    border-bottom: 1px solid #f1f3f5;
}

.card_test_servies .time-item:last-of-type {
    border-bottom: none;
}

.card_test_servies .time-item.available {
    color: #00a8ff;
}

.card_test_servies .time-item.booked {
    color: #dee2e6;
    text-decoration: line-through;
}

.card_test_servies .more-button {
    text-align: center;
    color: #00a8ff;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 0 5px 0;
    cursor: pointer;
}

.card_test_servies .book-button {
    background: #3ebdc6;
    color: white;
    border: none;
    padding: 3px;
    width: 100%;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    display: block;
    text-align: center;

}

.card_test_servies .book-button:hover {
    background: #0096d1;
}

/* Slick Arrows */
.card_test_servies .slick-prev,
.slick-next {
    width: 35px;
    height: 35px;
    z-index: 10;
}

.card_test_servies .slick-prev {
    left: 0;
}

.card_test_servies .slick-next {
    right: 0;
}

.card_test_servies .slick-prev:before,
.slick-next:before {
    font-size: 23px;
    color: #00a8ff;
    opacity: 1;
}

.card_test_servies .slick-disabled:before {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .card_test_servies .profile-section {
        flex-direction: column;
    }

    .card_test_servies .left-section {
        flex-direction: column;
    }

    .card_test_servies .slick-slider {
        padding: 0 40px;
    }

    .card_test_servies .appointment-wrapper {
        min-width: 100%;
    }
}


.hero_test_servies {
    position: relative;
    background-image: url(../img/how-do-blood-tests.jpg);
    background-size: cover;
    background-position: center;
    height: 270px;
}

.hero_test_servies::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(6px);
}


.filter-sidebar {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.filter-header {
    background: #0097D2;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-header i {
    font-size: 18px;
}

.filter-header span {
    font-size: 16px;
    font-weight: 600;
}

.filter-section_main {
    border-bottom: 1px solid #e0e0e0;
}

.filter-section_main:last-child {
    border-bottom: none;
}

.filter-title {
    padding: 15px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.filter-title:hover {
    background-color: #f8f9fa;
}

.filter-title-content {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e88e5;
    font-weight: 500;
    font-size: 13px;
}

.filter-title-content i {
    font-size: 14px;
}

.filter-arrow {
    color: #1e88e5;
    transition: transform 0.3s;
    font-size: 14px;
}

.filter-arrow.expanded {
    transform: rotate(90deg);
}

.filter-content {
    padding: 10px 20px 15px 52px;
    display: none;
}

.filter-content.show {
    display: block;
}

.form-check {
    padding: 8px 0;
}

.form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid #00bcd4;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: #1e88e5;
    border-color: #1e88e5;
}

.form-check-label {
    cursor: pointer;
    color: #424242;
    font-size: 14px;
}

.rating-section {
    display: flex;
    gap: 4px;
}

.rating-section i {
    color: #ffc107;
    font-size: 14px;
    padding-top: 5px;
}

.hero_test_servies .hero-content {
    padding-top: 130px;
    z-index: 2;
    position: relative;
}

.hero_test_servies .search-container {
    background: white;
    border-radius: 8px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero_test_servies .search-field {
    flex: 1;
    min-width: 160px;
    position: relative;
}

.hero_test_servies .search-field label {
    display: block;
    color: #666;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: 500;
    white-space: nowrap;
}

.hero_test_servies .search-field i {
    position: absolute;
    left: 12px;
    bottom: 14px;
    color: #00bcd4;
    font-size: 18px;
    pointer-events: none;
    z-index: 5;
}

/* Custom Select */
.hero_test_servies .custom-select {
    position: relative;
    width: 100%;
}

.hero_test_servies .select-selected {
    width: 100%;
    padding: 14px 35px 14px 40px;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    font-size: 14px;
    color: #999;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hero_test_servies .select-selected.has-value {
    color: #333;
    font-weight: 500;
}

.hero_test_servies .select-selected:hover {
    border-color: #00bcd4;
    box-shadow: 0 4px 8px rgba(0, 188, 212, 0.15);
}

.hero_test_servies .select-selected.active {
    border-color: #00bcd4;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.25);
    border-radius: 8px 8px 0 0;
}

.hero_test_servies .select-arrow {
    position: absolute;
    right: 12px;
    bottom: 14px;
    color: #00bcd4;
    font-size: 10px;
    pointer-events: none;
    transition: transform 0.3s ease;
    z-index: 5;
}

.hero_test_servies .select-selected.active~.select-arrow {
    transform: rotate(180deg);
}

.hero_test_servies .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border: 2px solid #00bcd4;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(0, 188, 212, 0.2);
    display: none;
}

.hero_test_servies .select-items.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero_test_servies .select-items div {
    padding: 12px 15px 12px 45px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    font-size: 14px;
    position: relative;
}

.hero_test_servies .select-items div:last-child {
    border-bottom: none;
}

.hero_test_servies .select-items div:hover {
    background: linear-gradient(90deg, #e3f2fd 0%, #ffffff 100%);
    color: #00bcd4;
    padding-left: 50px;
}

.hero_test_servies .select-items div.selected {
    background: linear-gradient(90deg, #00bcd4 0%, #0097a7 100%);
    color: white;
    font-weight: 600;
}

.hero_test_servies .select-items div.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 15px;
    color: white;
}

.hero_test_servies .select-items div:not(.selected):hover::before {
    content: '\f0da';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 20px;
    color: #00bcd4;
}

.hero_test_servies .select-items::-webkit-scrollbar {
    width: 8px;
}

.hero_test_servies .select-items::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 0 0 8px 0;
}

.hero_test_servies .select-items::-webkit-scrollbar-thumb {
    background: #00bcd4;
    border-radius: 4px;
}

/* Input Field */
.hero_test_servies .search-field input {
    width: 100%;
    padding: 14px 15px 14px 40px;
    border: 2px solid #00bcd4;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero_test_servies .search-field input:hover {
    border-color: #00bcd4;
    box-shadow: 0 4px 8px rgba(0, 188, 212, 0.15);
}

.hero_test_servies .search-field input:focus {
    outline: none;
    border-color: #00bcd4;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.25);
}

/* Search Button */
.hero_test_servies .search-btn {
    background: #00bcd4;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    flex-shrink: 0;
}

.hero_test_servies .search-btn:hover {
    transform: translateY(-2px);
}

.hero_test_servies .search-btn i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero_test_servies .search-container {
        overflow-x: auto;
    }

    .hero_test_servies .search-field {
        min-width: 150px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 20px 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(94, 114, 228, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(94, 114, 228, 0.2);
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 15px;
    gap: 10px;
}

.service-info {
    flex: 1;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.service-price {
    font-size: 13px;
    color: #3EBDC6;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency {
    font-size: 0.6em;
    color: #718096;
}

.book-btn {
    padding: 10px 20px;
    background: #3EBDC6;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    cursor: pointer;
    transition: opacity 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.book-btn:hover {
    opacity: 0.9;
}

.category-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #e3f2fd;
    border-radius: 20px;
    font-size: 0.8em;
    color: #0096d1;
    margin-bottom: 8px;
    font-weight: 500;
}

@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }
}

#patientInfoSection .custom-arrow {
    appearance: none;
    /* hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    /* space for the arrow */
}


#patientInfoSection2 .custom-arrow {
    appearance: none;
    /* hide default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 40px;
    /* space for the arrow */
}

#patientInfoSection2 .position-relative {
    position: relative;
}

#patientInfoSection2 .position-relative::after {
    content: "\f107";
    /* fontawesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 38px;
    /* adjust */
    pointer-events: none;
    color: #666;
}

#patientInfoSection .position-relative {
    position: relative;
}

#patientInfoSection .position-relative::after {
    content: "\f107";
    /* fontawesome down arrow */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 38px;
    /* adjust */
    pointer-events: none;
    color: #666;
}


/* Main Wrapper */
.wrapper {
    padding-top: 100px;
    padding-bottom: 40px;
}

@media(min-width:1600px) {
    .profile-header-wrapper .main-content_area {
        margin-left: 0 !important;
    }
}

.profile-header-wrapper .main-content_area {
    margin-left: 40px;
    transition: margin-right 0.3s;
}

/* Profile Card */


.profile-header-wrapper .profile-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    /* position: relative; */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}



.profile-header-wrapper .profile-header {
    /* position: relative; */
    z-index: 1;
    text-align: center;
    margin-bottom: 40px;
}

.profile-header-wrapper .profile-img-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.profile-header-wrapper .profile-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid #fff;
    object-fit: cover;
    transition: transform 0.3s;
}

.profile-header-wrapper .profile-img:hover {
    transform: scale(1.05);
}

.profile-header-wrapper .upload-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: var(--primary-color);
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.profile-header-wrapper .upload-badge:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.profile-header-wrapper .profile-name {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-header-wrapper .profile-joined {
    color: var(--dark-text);
    font-size: 0.95rem;
}

/* Form Styles */
.profile-header-wrapper .form-section {
    margin-top: 30px;
}

.profile-header-wrapper .form-label {
    color: var(--dark-text);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.profile-header-wrapper .form-control,
.form-select {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.profile-header-wrapper .form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 188, 212, 0.15);
}

.profile-header-wrapper .input-icon {
    position: relative;
}

.profile-header-wrapper .input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--light-text);
}

.profile-header-wrapper .input-icon .form-control {
    padding-left: 40px;
}

.profile-header-wrapper .btn-save {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.profile-header-wrapper .btn-save:hover {
    transform: translateY(-3px);
}

/* Sidebar */
.profile-header-wrapper .sidebar {
    width: 320px;
    background: #fff;
    height: calc(100vh - 100px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 80px;
    transition: transform 0.3s;
    overflow-y: auto;
}

.profile-header-wrapper .sidebar.collapsed {
    transform: translateX(100%);
}

.profile-header-wrapper .sidebar-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 25px 20px;
}

.profile-header-wrapper .sidebar-header h5 {
    font-weight: 700;
    margin: 0;
}

.profile-header-wrapper .sidebar-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    transition: all 0.3s;
}

.profile-header-wrapper .sidebar-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.profile-header-wrapper .user-profile-sidebar {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.profile-header-wrapper .user-avatar {
    width: 45px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.profile-header-wrapper .user-status {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.profile-header-wrapper .sidebar-nav {
    padding: 15px 0;
}

.profile-header-wrapper .sidebar-link {
    color: var(--dark-text);
    padding: 15px 20px;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.profile-header-wrapper .sidebar-link:hover {
    background: rgba(0, 188, 212, 0.05);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
}

.profile-header-wrapper .sidebar-link.active {
    background: linear-gradient(90deg, rgba(0, 188, 212, 0.1), transparent);
    border-left-color: var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.profile-header-wrapper .notification-badge {
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Toggle Button */
.profile-header-wrapper .toggle-btn {
    position: fixed;
    right: 340px;
    top: 110px;
    z-index: 999;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    transition: all 0.3s;
    display: none;
}

@media (max-width: 992px) {
    .profile-header-wrapper .toggle-btn {
        display: block;
    }
}

.profile-header-wrapper .toggle-btn:hover {
    transform: scale(1.1);
}

.profile-header-wrapper .toggle-btn.collapsed {
    right: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .profile-header-wrapper .main-content_area {
        margin-right: 0;
    }

    .profile-header-wrapper .sidebar {
        width: 100%;
        border-radius: 0;
        z-index: 99;
    }

    .profile-header-wrapper .toggle-btn {
        display: block !important;
        right: 20px;
    }

    .profile-header-wrapper .toggle-btn.collapsed {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .profile-header-wrapper .profile-card {
        padding: 30px 20px;
    }

    .profile-header-wrapper .main-content_area {
        padding: 15px;
    }
}

/* Custom Scrollbar */
.profile-header-wrapper .sidebar::-webkit-scrollbar {
    width: 6px;
}

.profile-header-wrapper .sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.profile-header-wrapper .sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.profile-header-wrapper .sidebar::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}


.profile-card .form-section {
    padding: 40px;
}

.profile-card .info-row {
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-card .info-row:hover {
    background: #e9ecef;
}



.profile-card .info-content {
    flex: 1;
}

.profile-card .info-label {
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 3px;
    font-weight: 500;
}

.profile-card .info-value {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.profile-card .input-icon {
    position: relative;
}

.profile-card .input-icon i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
}

.profile-card .form-control,
.form-select {
    padding: 12px 45px 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-card .form-control:focus,
.form-select:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.profile-card .btn-edit,
.btn-save,
.btn-cancel {
    padding: 12px 35px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.profile-card .btn-edit:hover {
    transform: translateY(-2px);
}

.profile-card .btn-save {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.profile-card .btn-save:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(56, 239, 125, 0.4);
}

.profile-card .btn-cancel {
    background: #6c757d;
    color: white;
}

.profile-card .btn-cancel:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.profile-card .edit-mode {
    display: none;
}

.profile-card .view-mode.hidden {
    display: none;
}

.profile-card .edit-mode.active {
    display: block;
}


/* Success Popup */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    text-align: center;
    min-width: 350px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    -webkit-transition: transform 0.3s ease, opacity 0.3s ease;
    -moz-transition: transform 0.3s ease, opacity 0.3s ease;
    -ms-transition: transform 0.3s ease, opacity 0.3s ease;
    -o-transition: transform 0.3s ease, opacity 0.3s ease;
}

.success-popup.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #38ef7d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    color: white;
    font-size: 40px;
}

.success-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.success-message {
    color: #6c757d;
    margin-bottom: 25px;
}

.popup-close-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* my appointments */

@media(min-width:1500px) {
    .my_appointments_container .nav-tabs {
        gap: 100px !important;
    }
}

.my_appointments_container .nav-tabs {
    border-bottom: 2px solid #dee2e6;
    gap: 56px;
}

.my_appointments_container .nav-tabs .nav-link {
    color: #666;
    font-weight: 600;
    border: none;
    padding: 12px 6px;
    margin-left: 5px;
}

@media (min-width: 992px) {
    .date-col {
        display: flex;
        justify-content: flex-end;
    }
}

.my_appointments_container .nav-tabs .nav-link.active {
    color: #5bc0be;
    border-bottom: 3px solid #5bc0be;
    background: transparent;
}

.my_appointments_container .orders-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.my_appointments_container .orders-grid a {
    color: #000;
}

@media (max-width: 992px) {
    .my_appointments_container .orders-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 576px) {
    .my_appointments_container .orders-grid {
        grid-template-columns: 1fr;
    }
}


#emergency-content ul {
    list-style: none;
    padding: 0;
}

#emergency-content ul li {
    margin-bottom: 5px;
}

.my_appointments_container .order-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.my_appointments_container .order-card:hover {
    transform: translateY(-2px);
}

.my_appointments_container .order-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.my_appointments_container .lab-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.my_appointments_container .lab-logo {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.my_appointments_container .order-details h6 {
    font-weight: 700;
    margin: 0 0 4px 0;
    font-size: 15px;
}

.my_appointments_container .order-details p {
    margin: 0;
    color: #666;
    font-size: 13px;
}

.my_appointments_container .status-badge {
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.status-approved {
    background-color: #5bc0be;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.my_appointments_container .status-completed {
    background-color: #3aafa9;
}

.main_lin_title .status-completed {
    background-color: #5bc0be;
    border: none;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}


.my_appointments_container .status-canceled {
    background-color: #c84b31;
}

.my_appointments_container .status-damaged {
    background-color: #ff9966;
}

.order-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    margin-top: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}

.meta-item i {
    color: #5bc0be;
    font-size: 14px;
}

.main_tab_search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

@media(max-width:991px) {
    .main_tab_search {
        flex-direction: column;
    }
}

/* payment */

.payment-wrapper {
    position: relative;
    width: 100%;
}

.selected-payment {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

.payment-options {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 5px;
    padding: 0;
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: none;
    z-index: 10;
}

.payment-options li {
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-options li:hover {
    background: #f0f0f0;
}




/* select */

.select-btn {
    background: #0097D2;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.select-btn:active {
    transform: translateY(0);
}

.select-btn.selected {
    background: #00bcd4;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}



.product-card.selected {
    border: 2px solid #00bcd4;
    background: linear-gradient(to right, #f0fdf4 0%, white 100%);
}

.selected-items-count {
    background: #0097D2;
    color: white;
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.selected-items-count i {
    margin-left: 8px;
}

/* Update product card grid to accommodate select button */
.product-card {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 15px;
    align-items: center;
    position: relative;
    padding: 20px;
}

.delete-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fee;
    color: #dc2626;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delete-btn:hover {
    background: #dc2626;
    color: white;
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .product-price {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 8px;
    }

    .select-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }
}


/* my appintments details*/

.main_banner_my_appointments .main_lin {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main_banner_my_appointments .main_lin .main_lin_tow {
    background-color: #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #000;
}


.main_lin_tow {
    width: 42px;
    height: 42px;
    background: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.main_lin_tow i {
    font-size: 16px;
    color: #333;
}

/* Hover */
.main_lin_tow:hover {
    background: #333;
}

.main_lin_tow:hover i {
    color: #fff;
}

.main_img_loog {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.main_img_loog img {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.main_deta_lin_book h2 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin: 5px 0;
}

.main_deta_lin_book p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

.main_banner_my_appointments {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.order-tracking .order-tracking {
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px 20px;
    box-shadow: 0 0 0 1px #eee;
    max-width: 900px;
}

/* Top bar */
.order-tracking .order-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fb;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    margin-top: 20px;
}

.order-tracking .order-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.order-tracking .order-left strong {
    color: #000;
}

.order-tracking .order-right strong {
    color: #000;
}

/* Steps container */
.order-tracking .order-steps {
    display: flex;
    align-items: center;
    margin-top: 20px;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

/* Step */
.order-tracking .step {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.order-tracking .step p {
    margin: 0;
    font-size: 14px;
    color: #000;
    text-shadow: var(--box-shadow);
}

/* Active step */
.order-tracking .step.active p {
    color: #000;
    font-weight: 500;
}

/* Dot */
.order-tracking .dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
}

/* Active dot (loading) */
.order-tracking .dot.loading {
    border: 2px dashed #000;
}

/* Line between steps */
.order-tracking .line {
    flex: 1;
    height: 3px;
    background: #e5e5e5;
    margin: 0 10px;
}

.order-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Cancel Order */
.order-actions .btn-cancel {
    background: none;
    border: none;
    color: #e53935;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.order-actions .btn-cancel:hover {
    text-decoration: underline;
}

/* Create Shipping Label */
.order-actions .btn-shipping {
    background: #00bcd4;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.order-actions .btn-shipping span {
    font-size: 18px;
    line-height: 1;
}

.order-actions .btn-shipping:hover {
    background: #00bcd4;
}

/* ask doctior */

:root {
    --ask-doctor-primary-gradient: #0097D2;
    --ask-doctor-primary-color: #0ea5e9;
    --ask-doctor-primary-dark: #0284c7;
    --ask-doctor-accent-color: #06b6d4;
    --ask-doctor-success-color: #10b981;
    --ask-doctor-text-dark: #1e293b;
    --ask-doctor-text-medium: #64748b;
    --ask-doctor-text-light: #94a3b8;
    --ask-doctor-bg-light: #f8fafc;
    --ask-doctor-bg-white: #ffffff;
    --ask-doctor-border-color: #e2e8f0;
    --ask-doctor-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --ask-doctor-shadow-md: 0 20px 40px rgba(0, 0, 0, 0.05);
    --ask-doctor-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --ask-doctor-shadow-chat: 0 12px 48px rgba(14, 165, 233, 0.3);
}

/* Doctor Card Styles */
.ask-doctor-card {
    background: var(--ask-doctor-bg-white);
    border-radius: 20px;
    box-shadow: var(--ask-doctor-shadow-md);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.ask-doctor-card:hover {
    box-shadow: var(--ask-doctor-shadow-lg);
    transform: translateY(-4px);
}

.ask-doctor-profile-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ask-doctor-left-section {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
}

.ask-doctor-avatar {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.ask-doctor-avatar::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: var(--ask-doctor-primary-gradient);
    border-radius: 50%;
    opacity: 0.15;
    animation: ask-doctor-pulse 3s ease-in-out infinite;
}

@keyframes ask-doctor-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.25;
    }
}

.ask-doctor-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--ask-doctor-bg-white);
    box-shadow: var(--ask-doctor-shadow-sm);
    position: relative;
    z-index: 1;
}

.ask-doctor-details {
    flex: 1;
}

.ask-doctor-clinic-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    color: var(--ask-doctor-primary-color);
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.ask-doctor-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ask-doctor-text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.ask-doctor-specialization {
    font-size: 14px;
    color: var(--ask-doctor-text-medium);
    margin-bottom: 12px;
    font-weight: 500;
}

.ask-doctor-rating-section {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.ask-doctor-rating-section i {
    color: #fbbf24;
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.ask-doctor-rating-section i.fa-regular {
    color: #cbd5e1;
}

.ask-doctor-rating-count {
    font-size: 12px;
    color: var(--ask-doctor-text-light);
    margin-bottom: 18px;
}

.ask-doctor-details-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ask-doctor-detail-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ask-doctor-text-medium);
    font-size: 13px;
    padding: 10px;
    background: var(--ask-doctor-bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ask-doctor-detail-row:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: translateX(4px);
}

.ask-doctor-detail-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--ask-doctor-primary-color);
}

.ask-doctor-detail-icon path {
    fill: var(--ask-doctor-primary-color);
}

.ask-doctor-action-buttons {
    display: flex;
    gap: 12px;
}

.ask-doctor-btn {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.ask-doctor-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ask-doctor-btn:hover::before {
    opacity: 1;
}

.ask-doctor-btn-primary {
    background: var(--ask-doctor-primary-gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.ask-doctor-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.ask-doctor-btn-outline {
    background: white;
    color: var(--ask-doctor-primary-color);
    border: 2px solid var(--ask-doctor-primary-color);
}

.ask-doctor-btn-outline:hover {
    background: rgba(14, 165, 233, 0.05);
    transform: translateY(-2px);
}

.ask-doctor-form-check:last-child {
    margin-bottom: 0;
}

.ask-doctor-form-check-input {
    width: 18px;
    height: 18px;
    border: 2px solid var(--ask-doctor-border-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.ask-doctor-form-check-input:checked {
    background: var(--ask-doctor-primary-gradient);
    border-color: var(--ask-doctor-primary-color);
}

.ask-doctor-form-check-input:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.ask-doctor-form-check-label {
    font-size: 14px;
    color: var(--ask-doctor-text-medium);
    cursor: pointer;
    user-select: none;
}

.ask-doctor-form-check-input:hover {
    border-color: var(--ask-doctor-primary-color);
}

/* Chat Interface */
.ask-doctor-chat-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    max-height: 600px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--ask-doctor-shadow-chat);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.ask-doctor-chat-container.ask-doctor-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.ask-doctor-chat-header {
    background: var(--ask-doctor-primary-gradient);
    padding: 20px;
    color: white;
    position: relative;
    overflow: hidden;
}

.ask-doctor-chat-header-content {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.ask-doctor-chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.ask-doctor-chat-doctor-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.ask-doctor-chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    opacity: 0.9;
}

.ask-doctor-status-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: ask-doctor-blink 2s ease-in-out infinite;
}

@keyframes ask-doctor-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.ask-doctor-chat-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
}

.ask-doctor-chat-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.ask-doctor-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    max-height: 350px;
}

.ask-doctor-chat-messages::-webkit-scrollbar {
    width: 5px;
}

.ask-doctor-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ask-doctor-chat-messages::-webkit-scrollbar-thumb {
    background: var(--ask-doctor-border-color);
    border-radius: 10px;
}

.ask-doctor-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: ask-doctor-slideIn 0.3s ease;
}

@keyframes ask-doctor-slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ask-doctor-message.ask-doctor-user {
    flex-direction: row-reverse;
}

.ask-doctor-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--ask-doctor-border-color);
}

.ask-doctor-message-content {
    max-width: 70%;
}

.ask-doctor-message-bubble {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
}

.ask-doctor-message.ask-doctor-doctor .ask-doctor-message-bubble {
    background: var(--ask-doctor-bg-light);
    color: var(--ask-doctor-text-dark);
    border-bottom-left-radius: 4px;
}

.ask-doctor-message.ask-doctor-user .ask-doctor-message-bubble {
    background: var(--ask-doctor-primary-gradient);
    color: white;
    border-bottom-right-radius: 4px;
}

.ask-doctor-message-time {
    font-size: 10px;
    color: var(--ask-doctor-text-light);
    margin-top: 4px;
    padding: 0 4px;
}

.ask-doctor-message.ask-doctor-user .ask-doctor-message-time {
    text-align: right;
}

.ask-doctor-typing-indicator {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--ask-doctor-bg-light);
    border-radius: 16px;
    width: fit-content;
    margin-bottom: 16px;
}

.ask-doctor-typing-indicator.ask-doctor-active {
    display: flex;
    animation: ask-doctor-slideIn 0.3s ease;
}

.ask-doctor-typing-dots {
    display: flex;
    gap: 3px;
}

.ask-doctor-typing-dots span {
    width: 7px;
    height: 7px;
    background: var(--ask-doctor-text-light);
    border-radius: 50%;
    animation: ask-doctor-typing 1.4s ease-in-out infinite;
}

.ask-doctor-typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.ask-doctor-typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes ask-doctor-typing {

    0%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    30% {
        transform: translateY(-6px);
        opacity: 1;
    }
}

.ask-doctor-chat-input-container {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid var(--ask-doctor-border-color);
}

.ask-doctor-chat-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.ask-doctor-chat-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid var(--ask-doctor-border-color);
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    resize: none;
    transition: all 0.3s ease;
    max-height: 100px;
    min-height: 42px;
}

.ask-doctor-chat-input:focus {
    outline: none;
    border-color: var(--ask-doctor-primary-color);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.ask-doctor-send-button {
    width: 42px;
    height: 42px;
    background: var(--ask-doctor-primary-gradient);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.ask-doctor-send-button:hover {
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px);
}

.ask-doctor-send-button:active {
    transform: translateY(0);
}

.ask-doctor-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.ask-doctor-quick-reply {
    padding: 8px 14px;
    background: white;
    border: 1.5px solid var(--ask-doctor-border-color);
    border-radius: 18px;
    font-size: 12px;
    color: var(--ask-doctor-text-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.ask-doctor-quick-reply:hover {
    background: var(--ask-doctor-primary-color);
    color: white;
    border-color: var(--ask-doctor-primary-color);
    transform: translateY(-2px);
}


@media (max-width: 992px) {
    .filter-sidebar {
        margin-top: 30px;
        position: static;
    }

    .ask-doctor-left-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ask-doctor-action-buttons {
        flex-direction: column;
    }

    .ask-doctor-chat-container {
        right: 10px;
        left: 10px;
        bottom: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }
}

@media (max-width: 576px) {

    .ask-doctor-card {
        padding: 20px;
    }

    .ask-doctor-name {
        font-size: 18px;
    }

    .ask-doctor-avatar {
        width: 90px;
        height: 90px;
    }

    .ask-doctor-message-content {
        max-width: 85%;
    }
}


.filter-content .fa-star {
    color: #f4c150;
    margin-right: 2px;
    font-size: 14px;
}


.cart-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #071D37;
}

.cart-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
}