:root {
    --primary-color: #F84948;
    --secondary-color: #C8A155;
    --red-color: #ff0000;
    --yellow-color: #FCBF2E;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Jacques Francois", serif;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.section-padding {
    padding: 40px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 600;
    color: #121212;
    margin-bottom: 1.5rem;
}

.section-title span {
    color: #c00;
}

/* ================================ 
Banner Section 
=================================== */
.navbar {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    margin: 0;
}

.navbar-brand img {
    height: 50px;
}

.navbar .nav-link {
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease-in-out;
    padding: 0.5rem 0.85rem !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000001f;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* ================================ 
Banner Section 
=================================== */
.banner .banner-img {
    width: 100%;
    height: 504px;
    object-fit: cover;
    filter: brightness(0.7);
}

.collectionForm .form-control {
    font-size: 14px;
    min-height: 44px;
}

.collectionForm label {
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
}

.collectionForm .form-control:focus {
    box-shadow: none;
    border-color: #0472c7;
}

.banner .slick-dots {
    bottom: 15px;
}


.banner-content {
    transform: translateY(-50%);
    left: 5%;
    right: 5%;
    color: var(--white-color);
}

.banner-content h1 {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 12px;
}

/* ================================ 
Departments Section 
=================================== */
.departments {
    background-color: #f1f4ffe8;
}

.departments .inner-contain {
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
}
.departments .img-fluid {
    width: 100%;
    height: 200px;
    object-fit: cover
}

.departments .inner-contain h4 {
    font-size: 20px;
    min-height: 48px;
}

.departments .inner-contain .read-more {
    font-size: 14px;
}

/* ================================ 
Feature Packages Section 
=================================== */
.feature-package .inner-contain {
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #c3c3c3;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white-color);
}

.feature-package .inner-contain h4 {
    font-size: 18px;
  margin-bottom: 10px;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 26px;
  min-height: 52px;

}

.feature-package .inner-contain .delivery {
    margin-bottom: 8px;
    color: #272727;
}

.feature-package .inner-contain .tag-badge {
    font-size: 12px;
    padding: 5px 10px;
    background-color: rgb(211, 255, 211);
    color: #008b05;
    border-radius: 4px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 6px;
    display: inline-block;
}

.feature-package .inner-contain .danger-badge {
    background-color: rgb(255, 223, 223);
    color: #ec0000;
}

.feature-package .inner-contain .price {
    font-size: 22px;
    display: block;
    margin-top: 12px;
    font-weight: 500;
    margin-bottom: 8px;
}

/* ================================ 
Call Back Section 
=================================== */
.call-back {
    background-color: #fff5f5d1;
}


/* ================================ 
Test Organ Section 
=================================== */
.test-organ .inner-contain {
    padding: 16px;
    border: 2px dashed var(--yellow-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.test-organ .inner-contain img {
    height: 70px;
    margin-bottom: 16px;
}

.test-organ .inner-contain h4 {
    font-size: 20px;
    font-weight: 500;
}



/* ================================ 
About Us Section 
=================================== */
.about-us h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

/* ================================ 
Blogs Section 
=================================== */
.blogs .inner-contain img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blogs .inner-contain .date-badge {
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    display: inline-block;
    padding-bottom: 4px;
}

.blogs .inner-contain h3 {
    font-size: 20px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 30px;
    font-weight: 500;
    padding: 0 10px;
    color: #353535;
}


/* Footer Panel */
/* ====================================== */
footer {
    background: #11161b;
    padding-top: 3rem;
    color: #fff;
}

footer ul {
    list-style: none;
}

footer h4 {
    color: var(--white-color);
}

footer .logo {
    color: var(--theme-color);
}

.list-unstyled li a {
    font-weight: 500;
    color: #b1b1b1;
    transition: all 0.2s ease-in-out;
}

.list-unstyled li a:hover {
    color: var(--theme-color);
}

.link-widget li {
    margin-bottom: 0.75rem;
}

.link-widget li a {
    color: #b1b1b1;
}

.link-widget li a:hover {
    color: var(--theme-color);
}

.timing p {
    color: var(--white-color);
    margin-bottom: 0;
}

footer .copy>a:hover {
    color: var(--theme-color) !important;
}


/* ================================ 
Testimonial section 
=================================== */
.testimonial .inner-contain {
    padding: 24px;
    box-shadow: 4px 4px 0 0 var(--secondary-color);
    border-radius: 15px;
    border: 1px solid #B7B7B7;
}

.testimonial .img-contain {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial .img-contain img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
}

.testimonial .inner-contain h6 {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial .inner-contain small {
    font-size: 12px;
}


/* ================================ 
            Toast Section 
=================================== */
.fixed-toast {
    position: fixed;
    bottom: 5%;
    right: 1%;
    z-index: 200;
    display: inline-block;
}

#toast {
    visibility: hidden;
    max-width: 60px;
    height: 60px;
    margin: auto;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    font-size: 17px;
    white-space: nowrap;
    transition: visibility 0.5s, opacity 0.5s;

    display: flex;
    align-items: center;
    /* Center vertically */
    padding: 16px;
    padding-left: 0;
}

#toast #img {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    color: #fff;
    font-size: 28px;
    overflow: hidden;
    flex-shrink: 0;
    /* Prevent shrinking */
}

#toast #desc {
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    text-align: start;
    flex-grow: 1;
    /* Allow description to take up remaining space */
    margin-left: 20px;
    /* Space between img and description */
    font-size: 15px !important;
}

#toast.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
    animation: fadein 0.5s, expand 0.5s 0.5s, stay 3s 1s, shrink 0.5s 4s, fadeout 0.5s 4.5s;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes expand {
    from {
        min-width: 50px;
    }

    to {
        min-width: 280px;
    }
}

@keyframes stay {
    from {
        min-width: 280px;
    }

    to {
        min-width: 280px;
    }
}

@keyframes shrink {
    from {
        min-width: 280px;
    }

    to {
        min-width: 50px;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 60px;
        opacity: 0;
    }
}


/* ================================ 
Inner banner Section 
=================================== */

.inner-banner {
    width: 100%;
    width: 100%;
    height: 30vh;
    background:
        url(../images/banner/inner-banner.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
}

.inner-banner h1,
.inner-banner h2 {
    font-size: 42px;
    margin-bottom: 8px;
}

.search-btn {
    width: 40px;
    height: 100%;
    background: var(--primary-color);
    color: var(--white-color);
    outline: none;
    border: none;
    display: inline-block;
    border-radius: 0 5px 5px 0;
    transition: all 0.25s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.search-btn:hover {
    background: var(--secondary-color);
    color: #121212;
}

/* ================================ 
About Page 
=================================== */
.mission h2 {
    font-size: 26px;
    margin-bottom: 14px;
    text-decoration: underline;
}

.mission h2 span {
    color: var(--primary-color);
}

.mission ul {
    list-style-type: disc;
}

.mission ul li {
    margin-bottom: 10px;
}



.package-dets .inner-contain {
    padding: 30px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: var(--white-color);
}

.package-dets .inner-contain:last-child {
    margin-bottom: 0;
}

.package-dets .inner-contain h1 {
    font-size: 26px;
    margin-bottom: 10px;
}

.package-dets .inner-contain h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.package-dets .inner-contain p {
    font-size: 16px;
    line-height: 26px;
}

.package-dets .inner-contain p:last-child {
    margin-bottom: 0;
}

.package-dets .inner-contain ul {
    list-style-type: disc;
}

.package-dets .inner-contain h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.package-dets .inner-contain h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.package-dets .inner-contain h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600
}

.accordion-item {
    margin-bottom: 0;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: #ffe9a5;
    font-size: 18px;
    font-weight: 400;
    color: #121212
}

.accordion-header {
    margin-bottom: 0 !important;
}

.accordion-button {
    font-size: 18px;
    font-weight: 400;
    color: #121212
}

.wrapper-contain {
    box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #ebebeb;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--white-color);
}

.wrapper-contain h4 {
    font-size: 18px;
    margin-bottom: 10px;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wrapper-contain .delivery {
    margin-bottom: 8px;
    color: #272727;
}

.wrapper-contain .tag-badge {
    font-size: 12px;
    padding: 5px 10px;
    background-color: rgb(211, 255, 211);
    color: #008b05;
    border-radius: 4px;
    font-weight: 400;
    margin-bottom: 15px;
    margin-top: 6px;
    display: inline-block;
}

.wrapper-contain .danger-badge {
    background-color: rgb(255, 223, 223);
    color: #ec0000;
}

.form-contain {
    background-color: var(--white-color);
    padding: 20px;
    box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    border: 1px solid #ebebeb;
}

.form-contain,
.wrapper-contain {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    z-index: 99;
}

/*================================================
Contact Page
=================================================*/
.contact-area {
    position: relative;
    z-index: 1;
}

.contact-form form {
    text-align: center;
}

.contact-form form .form-control {
    background-color: #ffffff;
    border: none;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.2) !important;
    height: 57px;
}

.contact-form form .form-group {
    text-align: left;
    margin-bottom: 15px;
}

.contact-form form .row {
    margin-left: -7px;
    margin-right: -7px;
}

.contact-form form .row .col-lg-12,
.contact-form form .row .col-lg-6 {
    padding-left: 7px;
    padding-right: 7px;
}

.contact-form form textarea.form-control {
    height: auto;
    padding-top: 15px;
}

.contact-form form .btn {
    font-size: 16px;
    margin-top: 10px;
    box-shadow: 0px 5px 28.5px 1.5px rgba(149, 152, 200, 0.5) !important;
}

.contact-form form .btn.disabled {
    cursor: not-allowed !important;
}

.contact-form form .btn.disabled:hover::before,
.contact-form form .btn.disabled:focus::before {
    opacity: 1;
    visibility: visible;
}

.contact-form form .btn.disabled:hover::after,
.contact-form form .btn.disabled:focus::after {
    opacity: 0;
    visibility: hidden;
}

.contact-form form .help-block ul {
    padding-left: 0;
    list-style-type: none;
    margin-top: 5px;
    margin-bottom: 0;
}

.contact-form form .help-block ul li {
    color: red;
}

.contact-form form #msgSubmit {
    margin-bottom: 0;
    text-align: center !important;
}

.contact-form form #msgSubmit.text-danger,
.contact-form form #msgSubmit.text-success {
    margin-top: 8px;
    font-size: 20px;
    font-weight: 600;
}

.contact-info-2 {
    padding-left: 25px;
}

.contact-info-2 ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
}

.contact-info-2 ul li {
    position: relative;
    padding-left: 80px;
    color: #7d7d7d;
    margin-bottom: 30px;
}

.contact-info-2 ul li .icon {
    border: 1px dashed var(--primary-color);
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #ffffff;
    border-radius: 50%;
    font-size: 25px;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.contact-info-2 ul li .icon::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--secondary-color);
    border-radius: 50%;
    margin: 6px;
    box-shadow: 0 1px 3px 1px #C8A155;
    z-index: -1;
}

.contact-info-2 ul li span {
    display: block;
    margin-bottom: 8px;
    color: #121521;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.contact-info-2 ul li a {
    color: #7d7d7d;
    transition: all 0.3s ease-in-out;
    display: block;
}

.contact-info-2 ul li a:hover {
    color: var(--primary-color);
}

.contact-info-2 ul li:last-child {
    margin-bottom: 0;
}

.bg-map {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    text-align: center;
    margin: 0 auto;
    opacity: 0.4;
}

/*================================================
Health Screen Page
=================================================*/
.screen h1 {
    font-size: 32px;
    margin-bottom: 14px;
}

.screen ul {
    list-style-type: disc;
}

.screen ul li {
    margin-bottom: 10px;
}

/*================================================
Blogs Details Page
=================================================*/
.blog-details h1 {
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 38px;
    font-weight: 500;
}

.blog-details .details-img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
}

.blog-details .other-heading {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 400;
    line-height: 26px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-details .date {
    font-size: 14px;
}

/*================================================
Service Page
=================================================*/
.ser-info h1 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.ser-info ul {
    list-style: disc;

    li {
        margin-bottom: 10px;
    }
}

/*================================================
Service Details Page
=================================================*/
.service-dets h1 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.service-dets ul {
    list-style: disc;
    padding-left: 1rem;
    margin-top: 14px;
}

.service-dets ul li {
    margin-bottom: 8px;
    font-size: 15px;
}


/*================================================
Why us Page
=================================================*/
.why-us {
    h2 {
        font-size: 24px;
        margin-bottom: 14px;
        font-weight: 600;
    }

    ul {
        list-style: disc;

        li {
            margin-bottom: 8px;
        }
    }

    .spec-ul {
        display: flex;
        margin-top: 14px;
        flex-wrap: wrap;
        list-style-type: disc;

        li {
            flex-basis: 49%;
            margin-bottom: 8px;
        }
    }
}

.getquoteModal .my-btn-close {
    position: absolute;
    top: 12px;
  right: 12px;
    border-radius: 50%;
    padding: 10px;
    background-color: var(--red-color);
    color: var(--white-color);
    width: 30px;
    height: 30px;
    border-radius: 5px;
    z-index: 88;
    border: none;
    outline: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}


.blood-data {
    h1 {
        font-size: 32px;
        margin-bottom: 14px;
    }
    h2 {
        font-size: 26px;
        margin-bottom: 14px;
    }
    h3 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    ul {
        list-style: disc;
        li{
            margin-bottom : 8px;
        }
    }
}







@media (max-width: 1440px) {
    .inner-banner h1, .inner-banner h2 {
      font-size: 34px;
    }
}
@media (max-width: 991px) {
     #offcanvasNavbar {
        width: 300px;
        height: 100vh;
        background-color: #fff
    }
    .offcanvas-title img {
    height: 40px
  }

  .offcanvas-header {
    background-color: #fff8f3;
    padding-top: .75rem;
    padding-bottom: .75rem
  }

  .navbar .nav-link {
    font-size: 16px;
    display: block;
    margin: 0;
    padding: 10px 0 !important;
    padding-left: 18px !important;
    border-bottom: 1px dashed #a8a8a8;
    border-width: 1px
  }

  .navbar .nav-link::after {
    display: none
  }

  .offcanvas-body {
    padding-left: 0 !important;
    padding-top: 8px;
    padding-right: 0 !important
  }

.banner-content h1 {
  font-size: 30px;
}
.banner .banner-img {
  height: 430px;
}
.inner-banner h1, .inner-banner h2 {
    font-size: 30px;
  }
  .inner-banner {
  height: 20vh;
  }
}

@media (max-width: 767px) {
    body {
        font-size: 95%;
    }
    .feature-package .inner-contain h4 {
  min-height: auto;
  
}
.departments .img-fluid {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.blood-data {
    h1 {
        font-size: 28px;
        margin-bottom: 14px;
    }
    h2 {
        font-size: 22px;
        margin-bottom: 14px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    ul {
        list-style: disc;
        li{
            margin-bottom : 8px;
        }
    }
}
}
@media (max-width: 480px) {
    body {
        font-size: 90%;
    }
    .feature-package .inner-contain h4 {
  min-height: auto;
}
.about-us h2 {
  font-size: 22px;
  line-height: 30px;
}
  .banner .banner-img {
    height: 370px;
  }
  .banner-content h1 {
    font-size: 26px;
    line-height: 34px;
  }
  .section-title {
  font-size: 24px;
  margin-bottom: 1.25rem;
}
.mission h2 {
  font-size: 20px;
}
.screen h1 {
  font-size: 22px;
  line-height: 30px;
}
 .inner-banner h1, .inner-banner h2 {
    font-size: 24px;
  }
    .inner-banner {
    height: 18vh;
  }
  .screen {
      h2 {
          font-size: 22px;
          line-height: 30px;
          margin-bottom: 8px;
      }
  }
  .package-dets .inner-contain h1 {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 30px;
}
 .departments .img-fluid {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.blood-data {
    h1 {
        font-size: 24px;
        margin-bottom: 14px;
    }
    h2 {
        font-size: 20px;
        margin-bottom: 14px;
    }
    h3 {
        font-size: 18px;
        margin-bottom: 14px;
    }
    ul {
        list-style: disc;
        li{
            margin-bottom : 8px;
        }
    }
}

@media (max-width: 430px) {
    .departments .img-fluid {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
}




























