/* ==========================================================================
   Base Styles
   ========================================================================== */

a {
    text-decoration: none;
    transition: all var(--transition-duration) ease;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
    /* Colors */
    --primary-dark-color: #A80000;
    --primary-color: #D80013;
    --primary-hover: #b8000f;
    --body-font-color: #707070;
    --heading-font-color: #252525;
    --gray-ab: #ABABAB;
    --secondary-color: #fff;
    --white: #fff;
    --dark-text: #252525;
    --light-gray: #F1F1F1;
    --success-color: #0A8442;
    --description-color: #787878;
    --card-description-color: #414146;
    --page-title-color: #5a5a5a;
    --table-label-color: #626262;

    /* Typography */
    --font-family: 'Poppins', sans-serif;

    /* Font Sizes - Desktop */
    --hero-heading-size: 50px;
    --section-title-size: 36px;
    --section-description-size: 20px;
    --card-title-size: 20px;
    --button-font-size: 14px;
    --nav-font-size: 14px;
    --contact-label-size: 14px;
    --contact-link-size: 16px;
    --testimonial-title-size: 16px;
    --testimonial-description-size: 14px;
    --counter-number-size: 42px;
    --blog-title-size: 20px;
    --blog-subtitle-size: 16px;
    --blog-description-size: 14px;
    --footer-menu-size: 18px;
    --price-size: 26px;
    --regular-price-size: 20px;
    --discount-size: 20px;
    --cashback-size: 14px;
    --rating-size: 12px;
    --small-text-size: 14px;
    --download-title-size: 48px;
    --page-title-size: 24px;
    --blog-detail-size: 32px;

    /* Line Heights */
    --hero-heading-line-height: 76px;
    --section-title-line-height: 50px;
    --section-description-line-height: 30px;
    --download-title-line-height: 4rem;
    --testimonial-line-height: 1.5em;
    --blog-line-height: 1.5em;

    /* Font Weights */
    --weight-light: 400;
    --weight-medium: 500;
    --weight-semibold: 600;
    --weight-bold: 700;

    /* Spacing */
    --padding-xs: 8px;
    --padding-sm: 10px;
    --padding-md: 12px;
    --padding-lg: 16px;
    --padding-xl: 20px;
    --padding-xxl: 22px;
    --padding-xxxl: 26px;
    --padding-huge: 28px;
    --padding-mega: 60px;

    --margin-xs: 4px;
    --margin-sm: 8px;
    --margin-md: 12px;
    --margin-lg: 16px;
    --margin-xl: 20px;
    --margin-xxl: 22px;
    --margin-xxxl: 26px;
    --margin-huge: 28px;

    /* Border Radius */
    --radius-xs: 5px;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 30px;
    --radius-xxl: 40px;
    --radius-circle: 50%;

    /* Borders */
    --border-width: 1px;
    --border-width-thick: 2px;
    --border-width-thicker: 3px;
    --border-style: solid;
    --border-style-dashed: dashed;

    /* Shadows */
    --shadow-light: 0 4px 12px rgba(216, 0, 19, 0.3);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-testimonial: 4px 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-testimonial-hover: 4px 8px 25px rgba(0, 0, 0, 0.15);
    --shadow-floating: -8px 8px 28px rgba(0, 0, 0, 0.06);

    /* Transitions */
    --transition-duration: 0.3s;
    --transition-long: 0.8s;

    /* Z-index */
    --z-background: -1;
    --z-base: 1;
    --z-overlay: 2;

    /* Transforms */
    --transform-hover-up: translateY(-2px);
    --transform-hover-up-sm: translateY(-1px);
    --transform-hover-up-md: translateY(-3px);
    --transform-hover-up-lg: translateY(-5px);
    --transform-scale-hover: scale(1.1);
    --transform-scale-hover-sm: scale(1.05);

    /* Container Sizes */
    --hero-bg-width: 900px;
    --startup-width: 180px;
    --customer-image-size: 40px;
    --testimonial-image-size: 80px;
    --blog-small-image-width: 200px;
    --blog-small-image-height: 120px;
    --blog-card-image-height: 300px;

    /* Opacity */
    --opacity-hidden: 0;
    --opacity-visible: 1;
}

/* ==========================================================================
   Responsive Font Sizes
   ========================================================================== */

/* Tablet Styles */
@media (max-width: 768px) {
    :root {
        --hero-heading-size: 30px;
        --hero-heading-line-height: 36px;
        --section-title-size: 28px;
        --section-title-line-height: 34px;
        --section-description-size: 14px;
        --section-description-line-height: 28px;
        --download-title-size: 30px;
        --download-title-line-height: 3rem;
        --card-title-size: 14px;
        --counter-number-size: 30px;
        --blog-title-size: 14px;
        --footer-menu-size: 12px;
        --price-size: 20px;
        --regular-price-size: 14px;
        --discount-size: 14px;
        --cashback-size: 12px;

        /* Adjust spacing for tablets */
        --padding-mega: 40px;
        --padding-huge: 20px;
        --padding-xxxl: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    :root {
        --hero-heading-size: 28px;
        --hero-heading-line-height: 40px;
        --section-title-size: 24px;
        --section-title-line-height: 32px;
        --section-description-size: 16px;
        --section-description-line-height: 24px;
        --download-title-size: 28px;
        --download-title-line-height: 2.5rem;
        --card-title-size: 16px;
        --counter-number-size: 28px;
        --blog-title-size: 16px;
        --footer-menu-size: 14px;
        --price-size: 20px;
        --regular-price-size: 16px;
        --discount-size: 16px;
        --cashback-size: 14px;
        --testimonial-title-size: 14px;
        --testimonial-description-size: 12px;
        --button-font-size: 13px;
        --nav-font-size: 13px;

        /* Adjust spacing for mobile */
        --padding-mega: 30px;
        --padding-huge: 16px;
        --padding-xxxl: 16px;
        --padding-xxl: 16px;
        --margin-huge: 16px;
        --margin-xxxl: 16px;

        /* Adjust container sizes for mobile */
        --hero-bg-width: 600px;
        --startup-width: 120px;
        --customer-image-size: 32px;
        --testimonial-image-size: 60px;
        --blog-small-image-width: 150px;
        --blog-small-image-height: 90px;
        --blog-card-image-height: 200px;
    }
}

/* ==========================================================================
   Body & Typography
   ========================================================================== */

body {
    font-family: var(--font-family);
    color: var(--body-font-color);
}

h1.sectione-heading {
    font-size: var(--hero-heading-size);
    line-height: var(--hero-heading-line-height);
    font-weight: var(--weight-semibold);
    color: var(--dark-text);
}

p.sectione-description {
    font-size: var(--testimonial-title-size);
    line-height: var(--section-description-line-height);
    font-weight: var(--weight-light);
    color: var(--description-color);
}

h2.section-title {
    font-size: var(--section-title-size);
    line-height: var(--section-title-line-height);
    font-weight: var(--weight-medium);
    color: var(--heading-font-color);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: var(--padding-sm) var(--padding-xl);
    border-radius: var(--radius-xs);
    border: none;
    transition: all var(--transition-duration) ease;
    transform: translateY(0);
    font-size: var(--button-font-size);
}

.btn:hover {
    background: var(--primary-dark-color);
    color: #fff;
}

a.add-to-card {
    border: var(--border-width-thick) var(--border-style) var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--radius-xl);
    font-size: var(--button-font-size);
    transition: all var(--transition-duration) ease;
    display: inline-block;
}

a.add-to-card:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: var(--transform-hover-up-sm);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav ul li a {
    color: var(--gray-ab);
    font-weight: var(--weight-light);
    transition: all var(--transition-duration) ease-in-out;
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary-color);
}

/* ==========================================================================
   Contact Info
   ========================================================================== */

.contact-info span {
    color: var(--gray-ab);
    font-size: var(--contact-label-size);
}

.contact-info a {
    color: var(--heading-font-color);
    font-size: var(--contact-link-size);
    transition: color var(--transition-duration) ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

section.hero {
    position: relative;
}

.hero_bg_shap_01 {
    width: var(--hero-bg-width);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-36%, -54%);
    z-index: var(--z-background);
}

.hero_bg_shap_02 {
    margin-left: -100px;
}

._startupindia {
    width: var(--startup-width);
}

.hero-mid {
    width: 100%;
    position: relative;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */

.easy-appo-booking,
.best_certified_team_of_specialists {
    position: absolute;
    bottom: 80px;
    left: 50px;
    transform: translateX(-46%);
    background-color: var(--white);
    text-align: center;
    padding: var(--padding-xs) var(--padding-huge);
    border-radius: var(--radius-md);
    color: var(--primary-color);
    font-size: var(--button-font-size);
    font-weight: var(--weight-semibold);
    box-shadow: var(--shadow-floating);
    animation: fadeInUp var(--transition-long) ease-out;
}

.best_certified_team_of_specialists {
    width: 70%;
    bottom: 10px;
    left: 80%;
}

.happy-customers, .quote {
    position: absolute;
    top: 42%;
    right: -36%;
    transform: translateX(50%);
    background-color: var(--white);
    background: radial-gradient(circle, #FFFFFF 40%, #F6CFD3 98%);
    padding: var(--padding-sm) var(--padding-xl);
    border: var(--border-width-thick) var(--border-style) var(--primary-color);
    border-radius: var(--radius-lg);
    animation: fadeInRight var(--transition-long) ease-out 0.3s both;
}

.quote {
    width: 70%;
    top: 80%;
    font-size: var(--button-font-size);
}

.quote img {
    position: absolute;
    bottom: 90%;
    left: var(--padding-lg);
}

@keyframes fadeInUp {
    from {
        opacity: var(--opacity-hidden);
        transform: translateX(-46%) translateY(20px);
    }

    to {
        opacity: var(--opacity-visible);
        transform: translateX(-46%) translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: var(--opacity-hidden);
        transform: translateX(70%);
    }

    to {
        opacity: var(--opacity-visible);
        transform: translateX(50%);
    }
}

/* ==========================================================================
   Customer Images & Info
   ========================================================================== */

.customers-images {
    display: flex;
    align-items: center;
    justify-content: center;
}

.customers-images img {
    object-fit: cover;
    object-position: center;
    width: var(--customer-image-size);
    height: var(--customer-image-size);
    border-radius: var(--radius-circle);
    margin-left: var(--margin-sm);
    transition: transform var(--transition-duration) ease;
}

.customers-images img:hover {
    transform: var(--transform-scale-hover);
    z-index: var(--z-overlay);
    position: relative;
}

.customers-images img:first-child {
    margin-left: 0px;
}

.customers-count {
    font-size: var(--section-description-size);
    font-weight: var(--weight-semibold);
    color: var(--dark-text);
    margin-left: var(--margin-md);
}

.happy-customers h3 {
    font-size: var(--button-font-size);
    font-weight: var(--weight-semibold);
    color: var(--primary-color);
}

/* ==========================================================================
   Rating & Stars
   ========================================================================== */

.rating-star {
    display: flex;
    align-items: center;
    justify-content: start;
    font-size: var(--rating-size);
    color: var(--body-font-color);
}

.rating-star img:last-child {
    display: inline-block;
    margin-right: var(--margin-xs);
}

.search .search-frm, .book-for, .report-detail, .offer-detail, .billing, .payment {
    padding: 16px 26px 16px 36px;
    border-radius: 28px;
    border: 2px solid rgba(203, 138, 144, 0.77);
    background: radial-gradient(161.39% 113.45% at 40.95% -10.45%, #FFF 32.81%, #FFF8F8 97.64%);
    box-shadow: 3.122px 9.366px 21.854px 0 rgba(0, 0, 0, 0.06);
    white-space: nowrap;
}
.checkout .book-for,.checkout .report-detail,.checkout .offer-detail,.checkout .billing,.checkout .payment{
    padding: 16px;
}
.choices {
    border: none !important;
    background: none !important;
    padding: 0 !important;
    width: 100%;
    margin: 0;
    display: block;
}
.choices__list--multiple{
    display: flex;
    flex-wrap: wrap;
}
.choices__inner {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    font-size: 16px;
    background: transparent !important;
}

.choices__list--dropdown {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}
.choices__input{
    display: block;
    background-color: transparent;
    font-size: 14px;
    border: 0;
    border-radius: 0;
    width: 100% !important;
    padding: 0;
    height: 50px;
    margin: 0;
}
.choices__list--multiple .choices__item{
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
.choices[data-type*=select-multiple] .choices__button,
.choices[data-type*=text] .choices__button {
    border-left-color: #D80013;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRDgwMDEzIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==");
}
.custom-search-container {
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,0,0,0.2);
    border-radius: 50px;
    overflow: hidden;
    background: white;
    box-shadow: 0 0 10px rgba(255,0,0,0.1);
}

.search-btn {
    background: #d32f2f;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.search-btn:hover {
    background: #b71c1c;
}




.search select {
    border: none;
    outline: none;
    background: transparent;
}

.search .book-now {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 16px;
    border-radius: 14px;
    box-shadow: 3.122px 9.366px 21.854px 0 rgba(0, 0, 0, 0.06);
}

/* ==========================================================================
   Solar Play Card
   ========================================================================== */

.solar_play_card {
    width: 100%;
    position: relative;
}

.solar_play {
    position: absolute;
    right: 10%;
    font-size: var(--button-font-size);
    color: var(--primary-color);
}

/* ==========================================================================
   Section Specific Styles
   ========================================================================== */

.vh-slider-section h2.section-title,
.seasonal_report h2.section-title {
    text-align: center;
}

.simple_ways_for_a_healthy_life p.sectione-description {
    font-size: var(--button-font-size);
    color: var(--body-font-color);
}

.simple_ways_for_a_healthy_life_img {
    position: relative;
}

.simple_ways_for_a_healthy_life .bg {
    background-color: #FDF2F3;
    border-radius: var(--radius-xxl);
    padding: var(--padding-mega) var(--padding-lg) 0px;
}

/* ==========================================================================
   Tabs
   ========================================================================== */
.tab {
    width: 100%;
    overflow: auto;
    max-width: 1100px;
    display: flex;
}

.tab a {
    padding: var(--padding-sm) var(--padding-xl);
    border: var(--border-width) var(--border-style) var(--light-gray);
    border-radius: var(--radius-xl);
    color: var(--body-font-color);
    font-size: var(--nav-font-size);
    transition: all var(--transition-duration) ease;
    display: inline-block;
    text-transform: uppercase;
    white-space: nowrap;
}

.tab a.active,.tab a:hover {
    background-color: var(--dark-text);
    color: var(--secondary-color);
}

/* ==========================================================================
   Slider Cards
   ========================================================================== */
.swiper {
    padding: 16px 8px;
}

.slider-card {
    background-color: var(--white);
    border: var(--border-width-thick) var(--border-style) var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--padding-xxl);
    transition: all var(--transition-duration) ease;
    transform: translateY(0);
}

.slider-card:hover {
    transform: var(--transform-hover-up-lg);
    /*box-shadow: var(--shadow-card);*/
    border-color: var(--primary-color);
}

h3.slider-card-title {
    font-size: var(--card-title-size);
    color: var(--dark-text);
    font-weight: var(--weight-semibold);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

p.slider-card-description {
    font-size: var(--small-text-size);
    color: var(--body-font-color);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==========================================================================
   Dividers & Pricing
   ========================================================================== */

.divider {
    border: var(--border-width) var(--border-style-dashed) var(--light-gray);
}

.price p.sale_price {
    font-size: var(--price-size);
    color: var(--dark-text);
    font-weight: var(--weight-semibold);
}

.price p.regular_price {
    font-size: var(--regular-price-size);
    color: var(--gray-ab);
    font-weight: var(--weight-light);
    text-decoration: line-through;
}

p.discount {
    font-size: var(--discount-size);
    font-weight: var(--weight-semibold);
    color: var(--success-color);
}

p.cashback {
    color: var(--body-font-color);
    font-size: var(--cashback-size);
    font-weight: var(--weight-medium);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why_choose_us p {
    color: var(--dark-text);
    font-size: var(--button-font-size);
    /*margin-bottom: var(--margin-xxxl);*/
}
.why_choose_us .position-relative{

}
.why_choose_us .why-image{
    display: block;
    margin-left: auto;
    height: auto;
    width: auto;
    max-width: 100%;
}

/* ==========================================================================
   Download App Section
   ========================================================================== */

.download_the_vahcare_app {
    background-image: url('../../images/new/download_the_vahcare_app.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% -50%;
    position: relative;
}

.download_the_vahcare_app::before {
    position: absolute;
    content: '';
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    background-image: url('../../images/new/svg/Frame.png');
}

.download_the_vahcare_app::after {
    position: absolute;
    content: '';
    width: 60px;
    height: 60px;
    top: 50%;
    left: 46%;
    transform: translate(-50%, -50%);
    background-image: url('../../images/new/svg/Vector.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.download_the_vahcare_app .section-title {
    font-size: var(--download-title-size);
    font-weight: var(--weight-bold);
    line-height: var(--download-title-line-height);
    position: relative;
}

.download_the_vahcare_app .section-title::before {
    position: absolute;
    content: '';
    width: 200px;
    height: 150px;
    top: 12%;
    left: 02%;
    transform: translate(-50%, -50%);
    background-image: url('../../images/new/svg/Group000011340.png');
}

.download_the_vahcare_app .sectione-description {
    color: var(--card-description-color);
    font-size: var(--button-font-size);
    font-weight: var(--weight-medium);
}

.download_the_vahcare_app .section-title span {
    color: var(--primary-color);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.download_the_vahcare_app .get-app {
    display: flex;
    gap: var(--margin-sm);
}

.download_the_vahcare_app .get-app label {
    font-size: var(--button-font-size);
    color: var(--dark-text);
    background-color: var(--white);
    padding: var(--padding-md);
    border-radius: var(--radius-sm);
}

.download_the_vahcare_app .get-app label span {
    border-right: var(--border-width) var(--border-style) var(--light-gray);
    padding-right: var(--padding-md);
    margin-right: var(--padding-md);
}

.download_the_vahcare_app .get-app label input {
    border: none;
    outline: none;
}

.download_the_vahcare_app .get-app label input::placeholder {
    color: var(--gray-ab);
}

.download_the_vahcare_app .get-app .getapp {
    border: none;
    outline: none;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    padding: 0px var(--padding-lg);
    transition: all var(--transition-duration) ease;
    cursor: pointer;
}

.download_the_vahcare_app .get-app .getapp:hover {
    background-color: var(--primary-hover);
    transform: var(--transform-hover-up-sm);
    box-shadow: var(--shadow-light);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial .section-title {
    text-align: center;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.testimonial-card-body {
    background-color: var(--white);
    border: var(--border-width-thick) var(--border-style) var(--light-gray);
    border-radius: var(--radius-lg);
    padding: var(--padding-xxxl);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding-top: var(--padding-mega);
    transition: all var(--transition-duration) ease;
}

.testimonial-card-body:hover {
    transform: var(--transform-hover-up-md);
}

.testimonial-card-images {
    width: var(--testimonial-image-size);
    margin-bottom: 0;
    z-index: var(--z-base);
    transition: transform var(--transition-duration) ease;
}

.testimonial-card:hover .testimonial-card-images {
    transform: var(--transform-scale-hover-sm);
}

.testimonial-card-title {
    text-align: center;
    margin: var(--margin-sm) 0px;
    color: var(--dark-text);
    font-size: var(--testimonial-title-size);
    font-weight: var(--weight-medium);
}

.testimonial-card-description {
    text-align: center;
    margin: var(--margin-sm) 0px;
    color: var(--body-font-color);
    font-size: var(--testimonial-description-size);
    line-height: var(--testimonial-line-height);
}

/* ==========================================================================
   Counter Section
   ========================================================================== */

.counter {
    background-image: url('../../images/new/counter.png');
}

.counter .section-title {
    text-align: center;
    color: var(--white);
}

.counter .sectione-description {
    text-align: center;
    color: var(--white);
}

.counter-card {
    border-left: var(--border-width-thicker) var(--border-style) var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 var(--padding-lg);
}

.counter-card h3 {
    font-size: var(--counter-number-size);
    color: var(--white);
    margin: 0px 0px var(--margin-md) 0px;
    animation: countUp 2s ease-out;
}

.counter p {
    color: var(--white);
    margin: 0;
}

/* ==========================================================================
   Blog Cards
   ========================================================================== */

.blog-card .blog-card-images {
    border-radius: var(--radius-lg);
    margin-bottom: 0;
    height: var(--blog-card-image-height);
    object-fit: cover;
    object-position: center;
}

.blog-card .meta-info {
    font-size: var(--small-text-size);
    color: var(--dark-text);
}

.blog-card .blog-card-title {
    font-size: var(--blog-title-size);
    color: var(--dark-text);
    font-weight: var(--weight-medium);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .blog-card-description {
    font-size: var(--blog-description-size);
    color: var(--body-font-color);
    line-height: var(--blog-line-height);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .blog-card-btn {
    color: var(--primary-color);
    font-size: var(--small-text-size);
    font-weight: var(--weight-semibold);
}
.blog-card p{
    color: var(--body-font-color);
}
.blog-card-small {
    margin-bottom: 0;
}

.blog-card-small .blog-card-images {
    width: var(--blog-small-image-width);
    height: var(--blog-small-image-height);
    margin: 0px var(--margin-xxl) 0px 0px;
}

.blog-card-small .blog-card-title {
    margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.menu-footer ul {
    gap: var(--padding-lg);
}

.menu-footer ul li a {
    font-size: var(--footer-menu-size);
    color: var(--dark-text);
    font-weight: var(--weight-medium);
    text-transform: capitalize;
    transition: color var(--transition-duration) ease;
}

.menu-footer ul li a:hover {
    color: var(--primary-color);
}

.social-media {
    gap: var(--padding-lg);
}

.policy-menu {
    gap: var(--padding-lg);
}

.policy-menu a {
    color: var(--body-font-color);
    transition: color var(--transition-duration) ease;
}

.policy-menu a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   CLONZA
   ========================================================================== */
.loginform{
    padding: 24px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.field_err {
    color: red;
    font-size: 13px;
}

.w-100 {
    width: 100%;
}

.our-media img {
    width: calc(100% - 20px);
    max-height: 150px;
    object-fit: fill;
    margin-bottom: 0;
    padding: 10px;
    background: #f5f0f0;
    border-radius: 8px;
}

.text-left {
    text-align: left !important;
}

.policy h2 {
    font-size: 24px;
    padding: 50px 0 40px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
}

.policy h4 {
    margin: 0 auto;
    padding: 24px 0 8px;
    text-transform: uppercase;
}

.policy p {
    font-size: 14px;
    color: #868686;
}

.policy a {
    text-decoration: underline;
    color: #868686;
}

.note-sm {
    font-size: 12px;
    font-style: italic;
    color: #9f9f9f;
}

.dropdown, .dropdown-center, .dropend, .dropstart, .dropup, .dropup-center {
    position: unset;
}

.c-avatar {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50em;
    width: 38px;
    height: 38px;
    font-size: 14.4px;
}

.c-avatar-img {
    width: 100%;
    height: auto;
    border-radius: 50em;
}

.dropdown-menu {
    position: absolute;
    top: 38px;
    right: 0;
    z-index: 1;
    display: none;
    min-width: 10rem;
    padding: 0 4px;
    margin: 0;
    text-align: left;
    list-style: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
}

.c-header-nav:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 6px;
    white-space: nowrap;
    color: #707070;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    font-size: 14px;
    border-bottom: 1px solid #ededed;
}

.dropdown-item:last-child {
    border: none;
    color: #d80113;
}

.dropdown-item i {
    margin-right: 8px;
}

.dropdown-item:hover,
.dropdown-item:focus {
    text-decoration: none;
    color: #635e5e;
    background-color: #eee;
}

.vh-table {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.vh-head {
    background: #fafafa;
    border: none;
}

.vh-table td, .vh-table th {
    font-size: 14px;
    padding: 16px;
    color: var(--table-label-color);
}

.vh-table tr {
    border-bottom: 1px solid #e8e8e8;
}

.vh-table tr:last-child {
    border: none;
}

.vh-table tr td:nth-child(2) {
    color: var(--dark-text);
}

.vh-table.report tr td:first-child {
    width: 70%;
}

.vh-table .search {
    width: 100%;
    max-width: 200px;
    min-height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: left;
    padding: 8px 10px;
}

.page-title {
    font-size: var(--page-title-size);
    color: var(--page-title-color);
    padding: 24px 16px 16px;
    text-align: center;
    font-weight: 600;
}

.add-patient {
    font-weight: 400;
    text-align: right;
}

.truncate {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pl-3 {
    padding-left: 8px;
}

.vh-blog img {
    width: 100%;
    object-fit: cover;
    max-height: 160px;
    border-radius: 12px;
}

.vh-blog .title {
    font-size: var(--blog-subtitle-size);
    color: var(--dark-text);
    font-weight: var(--weight-medium);
    padding: 8px 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vh-blog .blog-desc {
    padding: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
    color: var(--description-color);
}

.blog-auth {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    align-content: center;
    flex-direction: row;
}

.vh-blog .date {
    color: var(--gray-ab);
    font-size: 12px;
}

.vh-blog .category {
    color: var(--primary-hover);
    text-transform: uppercase;
    font-size: 10px;
    border: 1px solid #ddd;
    padding: 3px 8px;
    border-radius: 3px;
    margin-right: 3px;
}

.vh-blog-detail .category {
    color: var(--primary-hover);
    text-transform: uppercase;
    font-size: 14px;
    border: 1px solid #ddd;
    padding: 4px 16px;
    border-radius: 6px;
    margin-right: 12px;
}

.seprate {
    width: 3px;
    height: 3px;
    background: gray;
    display: inline-block;
    border-radius: 50%;
    margin: 0 7px;
}

.vh-blog-detail .seprate {
    width: 4px;
    height: 4px;
    background: gray;
    display: inline-block;
    border-radius: 50%;
    margin: 0 7px;
}

.blog-page-title {
    font-size: var(--hero-heading-size);
    color: var(--page-title-color);
    font-weight: 500;
}

.blog-detail-title {
    font-size: var(--blog-detail-size);
    color: var(--card-description-color);
    font-weight: 500;
}

.blog-form {
    position: relative;
    width: 100%;
    display: block;
    max-width: 400px;
    margin: 0 auto;
}

.blog-frm-search {
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--gray-ab);
    padding: 16px;
    border-radius: 8px;
}

.blog-form button {
    position: absolute;
    right: 0;
    margin: 7px;
}

.vh-pagination .page-item .page-link {
    color: var(--primary-color);
    background-color: var(--light-gray);
    border: 1px solid var(--light-gray);
    padding: 8px 16px;
    margin: 0 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vh-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    color: var(--light-gray);
    border-color: var(--primary-color);
}

.vh-pagination .page-item .page-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.blog-sub-title {
    text-align: center;
    font-size: 18px;
}

.blog-detail-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.btn-share {
    padding: 6px 16px;
    border: 1px solid #eee;
    background: transparent;
    color: #525252;
    border-radius: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.btn-share .copied {
    color: var(--success-color);
}

.contact-me {
    font-size: var(--rating-size);
    color: var(--primary-color);
    padding-bottom: 4px;
}

.how-can {
    font-size: var(--blog-detail-size);
    color: var(--heading-font-color);
    font-weight: 500;
}

.fill-form {
    font-size: var(--blog-description-size);
}

.contact-link {
    gap: 18px;
}

.contact-link a {
    border: 1px solid #ddd;
    font-size: 12px;
    width: auto;
    padding: 12px 24px;
    border-radius: 8px;
    color: #252525;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    gap: 8px;
    font-weight: 500;
}
.pr-4{
    padding-right: 1.5rem !important;
}
.highlight{
    font-weight: var(--weight-semibold);
}
.mobile-menu{
    display: none;
    padding: 24px 12px 12px;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
    color: #252525;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 99999;
    background: #fff;
    box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1);
    border-top-right-radius: 36px;
    border-top-left-radius: 36px;
}
.mobile-menu a{
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
}
.mobile-menu a i{
    font-size: var(--price-size);
}
.sec-title{
    padding: 10px 20px;
    font-size: var(--contact-link-size);
    font-weight: var(--weight-medium);
}
.sidenav {
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
    text-align: center;
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    background-color: #111111d4;
    backdrop-filter: blur(23px);
    -webkit-backdrop-filter: blur(10px);
}

.sidenav a {
    padding: 8px 16px;
    text-decoration: none;
    font-size: 20px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover{
    color: #f1f1f1;
}

.sidenav .closebtn {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 36px;
}
.vhnav-menu{
    display: none;
    font-size: 28px;
    position: absolute;
    right: 16px;
    top: 10px;
}
.right-0{
    right: 0;
}
/* ==========================================================================
   CLONZA END
   ========================================================================== */

/* ==========================================================================
   Scroll Animations
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: var(--opacity-hidden);
        transform: translateY(30px);
    }

    to {
        opacity: var(--opacity-visible);
        transform: translateY(0);
    }
}

.section-title {
    animation: fadeIn 0.6s ease-out;
}

.sectione-description {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

/* ==========================================================================
   Counter Animation
   ========================================================================== */

@keyframes countUp {
    from {
        transform: scale(0.5);
        opacity: var(--opacity-hidden);
    }

    to {
        transform: scale(1);
        opacity: var(--opacity-visible);
    }
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */

/* Container responsiveness */
@media (max-width: 990px) {
    .happy-customers, .quote {
        top: 46%;
        right: 30%;
    }
    .quote {
        top: 80%;
    }
}
@media (max-width: 768px) {
    .hero_bg_shap_02 {
        margin-left: -50px;
    }

    .easy-appo-booking,
    .best_certified_team_of_specialists {
        width: auto;
        left: 24%;
    }

    .download_the_vahcare_app .get-app {
        flex-direction: column;
        gap: var(--margin-md);
    }

    .download_the_vahcare_app .get-app label {
        width: 100%;
    }

    .download_the_vahcare_app .get-app input[type="submit"] {
        width: 100%;
        padding: var(--padding-md);
    }
}

@media (max-width: 480px) {
    .mobile-menu{
        display: flex;
        align-items: flex-start;
    }
    .vhnav-menu{
        display: block;
    }
    .hero_bg_shap_01 {
        width: 100%;
    }

    .hero_bg_shap_02 {
        margin-left: -20px;
    }

    .hero-mid .doctor {
        width: 60%;
    }

    .easy-appo-booking,
    .best_certified_team_of_specialists {
        position: absolute;
        transform: none;
        margin: 0;
        width: 100%;

    }

    .easy-appo-booking, .best_certified_team_of_specialists {
        width: calc(var(--blog-small-image-width) + 20px);
        font-size: 8px;
        left: 8px;
        bottom: 0;
        padding: 2px;
    }

    .easy-appo-booking img, .best_certified_team_of_specialists img {
        width: 16px !important;
    }

    .quote {
        width: 40%;
        padding: 12px;
        right: 25%;
    }

    .quote img {
        width: 36px;
        margin-bottom: 0;
    }

    .quote p {
        font-size: 10px;
    }

    .customers-images {
        justify-content: start;
        align-items: center;
    }

    .customers-images img {
        width: 20px;
        height: 20px;
        margin-left: -4px;
    }

    .customers-images p {
        font-size: 14px;
        margin-bottom: 0;
        margin-left: 4px;
    }

    .happy-customers h3 {
        font-size: 12px;
    }

    .rating-star {
        font-size: 8px;
    }

    .rating-star img {
        width: 10px;
    }

    .rating-star img:last-child {
        width: 5px;
    }

    .simple_ways_for_a_healthy_life .bg {
        padding: 36px 16px 0px 16px;
    }

    .simple_ways_for_a_healthy_life_img img {
        width: 80%;
    }

    .best_certified_team_of_specialists {
        left: unset;
        right: 0;
    }

    .why_choose_us {
        height: 700px;
    }

    .download-vahcare-app {
        width: 100%;
    }

    .testimonial-card-body {
        padding: var(--padding-lg);
        padding-top: var(--padding-xxxl);
    }

    .testimonial-card-images {
        margin-bottom: 0;
    }

    .blog-card-small .blog-card-images {
        width: var(--blog-small-image-width);
        height: var(--blog-small-image-height);
        margin: 0px var(--margin-lg) var(--margin-md) 0px;
    }

    .counter-card {
        width: 50%;
        border-left: none;
        border-left: var(--border-width-thick) var(--border-style) var(--white);
        padding: var(--padding-lg) 0;
        text-align: start;
        margin-bottom: 0;
        padding-left: 16px;
    }

    .download_the_vahcare_app::before,
    .download_the_vahcare_app::after {
        display: none;
    }

    .download_the_vahcare_app .section-title::before {
        display: none;
    }
}
