/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}
.bg-secondary {
    background-color: #161d51 !important;
}
.txt-white {
    color: #ffffff !important;
}
.txt-blue {
    color: #161d51 !important;
}
.txt-orange {
    color: #f18500 !important;
}

.fw-medium {
    font-weight: 600;
}

.mt-6 {
    margin-top: 5rem;
}

.mb-6 {
    margin-bottom: 5rem;
}

.pt-6 {
    padding-top: 5rem;
}

.pb-6 {
    padding-bottom: 5rem;
}

p{
    font-size:18px;
    font-family: "Playfair Display", serif;
}
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Poppins", Sans-serif!important;
}
ul{
    padding: 0;
    margin: 0;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--bs-dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-xl-square {
    width: 60px;
    height: 60px;
}

.btn-xxl-square {
    width: 75px;
    height: 75px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square,
.btn-xl-square,
.btn-xxl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 20px;
    padding: 25px 0;
    color: var(--bs-dark);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel .carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    text-align: left;
    background: rgba(0, 0, 0, .7);
    padding: 3rem;
    padding-left: 11rem;
    z-index: 1;
}

.carousel .carousel-indicators {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: 80px;
    flex-direction: column;
    margin: 0;
    margin-left: 3rem;
}

.carousel .carousel-indicators [data-bs-target] {
    width: 70px;
    height: 70px;
    text-indent: 0;
    margin: 5px 0;
    border: 5px solid #ffffff;
    overflow: hidden;
    border-radius: 50%;
}

.carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .carousel .carousel-item {
        position: relative;
        min-height: 600px;
    }
    
    .carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 60px;
        height: 60px;
    }

    .carousel .carousel-caption {
        padding-left: 10rem;
    }
}

@media (max-width: 768px) {
    .carousel .carousel-item {
        min-height: 500px;
    }

    .carousel .carousel-indicators [data-bs-target] {
        width: 50px;
        height: 50px;
    }

    .carousel .carousel-caption {
        padding-left: 9rem;
    }
}

@media (min-width: 1200px) {
    .carousel .carousel-item .display-1 {
        font-size: 7rem;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/banner_11.jpg) center center no-repeat;
    background-size: cover;
}


/*** About ***/
.about-img {
    position: relative;
    padding-left: 45px;
}
.about-img img{
    border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
.about-img::before {
    position: absolute;
    content: "";
    width: 200px;
    height: 300px;
    top: 0;
    left: 0;
    border: 5px solid var(--bs-primary);
    animation: animateUpDown 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes animateUpDown { 
    0% { 
        top: -25px;
    }
    50% { 
        top: -45px;
    }
    100% { 
        top: -25px;
    } 
}


/*** Features ***/
.feature {
    background: linear-gradient(to right, rgba(0, 0, 0, .1), rgba(22, 29, 81, 1) 50%), url(../img/patient-consultation.jpg) left center no-repeat;
    background-size: cover;
}

.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.feature-icon {
    position: relative;
    transition: .5s;
    border-radius: 50%;
}

.feature-item:hover .feature-icon {
    margin-left: 3rem;
}

.feature-item a::after {
    /*position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--bs-secondary);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;*/
}

.feature-item a:hover {
    color: var(--bs-primary) !important;
}

.feature-item a:hover::after {
    background: var(--bs-primary);
}

.experience .progress {
    height: 5px;
}

.experience .progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Service ***/
.service .service-item {
    position: relative;
    margin-top: 45px;
}

.service .service-inner {
    position: relative;
    height: 100%;
    margin-top: 45px;
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.service .service-inner::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    transition: 1s;
    background: var(--bs-primary);
}

.service .service-inner:hover::before {
    height: 100%;
    top: 0;
}

.service .service-item img {
    margin-top: -45px;
    padding-left: 45px;
}

.service .service-item * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service .service-item:hover h5,
.service .service-item:hover p {
    color: var(--bs-white);
}

.service .service-item:hover a {
    padding-left: 45px !important;
}


/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(22,29,81,1), rgba(0,0,0,0)), url(../img/success-stories-bg.jpg) center/cover no-repeat;
    background-size: cover;
}


/*** Team ***/
.team .team-item {
    background: var(--bs-white);
    box-shadow: 0 0 45px rgba(0, 0, 0, .05);
}

.team .team-item .team-social {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    transition: .5s;
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team .team-item:hover .team-social {
    width: 100%;
    left: 0;
}

.team .team-item .team-social .btn {
    opacity: 0;
    transition: .5s;
}

.team .team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
    overflow: hidden;
}

.testimonial-img div {
    position: absolute;
    width: 100px;
    height: 100px;
    animation-duration: 5s;
}

.testimonial-img div:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: .1s;
}

.testimonial-img div:nth-child(2) {
    top: 60%;
    left: 20%;
    animation-delay: .4s;
}

.testimonial-img div:nth-child(3) {
    top: 20%;
    left: 60%;
    animation-delay: .7s;
}

.testimonial-img div:nth-child(4) {
    bottom: 10%;
    right: 10%;
    animation-delay: 1s;
}

.testimonial-img div::after {
    position: absolute;
    content: "";
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    box-shadow: 0 0 10px 10px var(--bs-white) inset;
    z-index: 1;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 15px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    color: var(--bs-primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-dark);
}


/*** Contact ***/
@media (min-width: 992px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 0px;
        height: 100%;
        top: 0;
        left: 50%;
        border-left: 1px dashed rgba(255, 255, 255, .2);
    }
}

@media (max-width: 991.98px) {
    .contact-info::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 0px;
        top: 50%;
        left: 0;
        border-top: 1px dashed rgba(255, 255, 255, .2);
    }
}


/*** Appoinment ***/
.newsletter {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-3.jpg) left center no-repeat;
    background-size: cover;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--bs-secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    font-family: "Playfair Display", serif;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--bs-primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--bs-primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #222222;
}

.copyright a {
    color: var(--bs-white);
}

.copyright a:hover {
    color: var(--bs-primary);
}


/* new css */

.free_membership {
    background: #161d51;
    padding-top: 15px;
    padding-bottom: 15px;
}
.free_membership p {
    color: #fff;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: bold;
    margin-top: 15px;
    text-align:right;
    font-family: "Poppins", Sans-serif;
}
.white_btn {
    display: inline-block;
    position: relative;
    color: #161d51;
    font-weight: 500;
    padding: 15px 50px;
    text-align: center;
    background-color: #fff;
    background-repeat: no-repeat;
    transition: background-position-y
ease-in-out 250ms;
font-size:20px;
}
.white_btn:hover {
        color: #fff;
        background:#f18500;
}
.bg_gray{
    background: #f8f8f8;
    position: relative;
    z-index: 0;
}
.z-index-postion{
    position: relative;
    z-index: 0;
}

/*  Custom HorizontalImage Accordation */

 .slider-container {
        display: flex;
        overflow: hidden;
        height: 400px;
        border-radius: 12px;
      }
      .slider-item {
        flex: 1;
        transition: flex 0.5s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        background-size: cover;
        background-position: center;
        color: white;
        padding: 20px;
        position: relative;
        border-radius: 12px;
        margin: 5px;
        border: 5px solid #f18500;
      }
      .slider-item:not(.active) {
        color: #003366;
        background-color: #f5f7fa;
        justify-content: center;
        align-items: center;
      }
      .slider-item.active {
        flex: 2;
      }
      .slider-item .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
        border-radius: 12px;
      }
      .slider-content {
        position: relative;
        z-index: 2;
      }
      .slider-title {
        font-size: 1.5rem;
        font-weight: bold;
      }
      .slider-subtitle {
        font-size: 1rem;
        margin-top: 5px;
        opacity: 0.9;
        font-family: "Playfair Display", serif;
      }
      .slider-link {
        display: inline-block;
        margin-top: 10px;
        color: #fff;
        font-weight: 500;
        text-decoration: none;
      }
      .slider-item:not(.active) .slider-title,
      .slider-item:not(.active) .slider-subtitle,
      .slider-item:not(.active) .slider-link {
        color: #ffffff;
      }
      .m-2{
        margin: 20px;
      }
        .gallery-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .gallery-column video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .header-wrapper {
      background: #fff;
      -webkit-box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
              box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
      position: relative;
      z-index: 100;
    }

    /* Top bar */
    .top-bar {
      background: #f18500;
      color: #fff;
      font-size: 18px;
      padding: 42px 0;
    }
   .top-bar a {
    color: #fff;
    text-decoration: none;
    margin-left: 12px;
    border-left: 1px solid;
    padding: 0 20px;
}

    /* Navbar */
    .navbar {
      background: #fff;
      border-top: 1px solid #e6e6e6;
      padding: 0!important;
    }

    /* Mega menu */
    .dropdown-menu.mega-menu {
      width: 920px;
      padding: 24px;
      left: 100% !important;
      transform: translateX(-50%) !important;
      border-radius: 10px;
      -webkit-box-shadow: 0 22px 48px rgba(0,0,0,0.12), 0 6px 18px rgba(0,0,0,0.06);
              box-shadow: 0 22px 48px rgba(0,0,0,0.12), 0 6px 18px rgba(0,0,0,0.06);
    }
    .mega-menu h6 { font-weight: 700; margin-bottom: 8px; font-size: 14px; }
    .mega-menu .dropdown-item { padding: 4px 0; font-size: 13px; color: #333; }
    .dropdown-menu.mega-menu ul{ margin-left:20px;padding-left:20px;}

    /* Header icons */
    .header-icons a i { 
        margin-left: 18px;
        font-size: 18px;
        color: #333;
        position: relative;
        background: #f7f8f4;
        padding: 15px;
        border-radius: 50%;
     }
    .header-icons a .badge { font-size: 11px; position: absolute; top: -6px; right: -8px; }

    .navbar-brand {
    padding-top: 0!important;
    padding-bottom: 0!important;
}
.font-size-20 i{
    font-size: 30px;
}
.btn_section a{
    border-radius: 30px;
}
.text-black{
    color:#000;
}
/* carousel video*/
    .carousel-wrapper-video {
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
      padding: 20px;
      margin: 40px auto;
      max-width: 1200px;
    }

    .carousel-wrapper-video .carousel-item video {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .carousel-wrapper-video .carousel-control-prev-icon,
    .carousel-wrapper-video .carousel-control-next-icon {
      filter: invert(1);
      width: 40px;
      height: 40px;
    }

    .carousel-wrapper-video .carousel-indicators [data-bs-target] {
      background-color: #333;
    }
    
element.style {
}
.mt-3 {
    margin-top: 1rem !important;
}
  .carousel-wrapper-video .carousel-indicators {
    right: 0!important;
    bottom: 0!important;
    left: 0!important;
    z-index: 2!important;
    display: flex!important;
    justify-content: center!important;
    padding: 0!important;
    margin-right: 15%!important;
    margin-bottom: 1rem!important;
    margin-left: 15%!important;
    top: 0!important;
        flex-direction: initial!important;
}

    .carousel-wrapper-video .carousel-indicators [data-bs-target] {
    box-sizing: content-box!important;
    flex: 0 1 auto!important;
    width: 30px!important;
    height: 3px!important;
    padding: 0!important;
    margin-right: 3px!important;
    margin-left: 3px!important;
    text-indent: -999px!important;
    cursor: pointer!important;
    background-color: #fff!important;
    background-clip: padding-box!important;
    border: 0!important;
    border-top: 10px solid transparent!important;
    border-bottom: 10px solid transparent!important;
    opacity: .5!important;
    transition: opacity .6s ease!important;

}
.get-aquote-bttn{
    background: #161d51;
    padding: 10px 20px;
    border-radius: 30px;
    color: #fff;
    margin-left: 10px;
}
 .get-aquote-bttn:hover{
    color: #fff;
    background:#f18500;
}

/* Responsive heights */
@media (max-width: 768px) {
  .carousel-wrapper-video .carousel-item video {
    height: 180px;
  }
}

.slider_border{
    border-bottom:2px solid #dadada!important;
}

/**********************/
/*product carousel */
/*******************/
.products-bg{
    background:#fbf6f4;
}
    .product-card {
      border: 2px solid #f18500;
      border-radius: 15px;
      overflow: hidden;
      padding: 10px;
      cursor: pointer; /* hand icon */
      transition: transform 0.3s, box-shadow 0.3s;
      background: #fff;
    }
    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .product-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
    }
    .owl-nav button {
      background: #fff;
      border: 2px solid #c98970;
      border-radius: 50%;
      padding: 10px 15px;
      margin: 5px;
      transition: 0.3s;
    }
    .owl-nav button:hover {
      background: #c98970;
      color: #fff;
    }
    .owl-dots {
      margin-top: 15px;
    }
    .owl-dot span {
      width: 12px;
      height: 12px;
      background: #007bff;
      display: block;
      border-radius: 50%;
      margin: 5px;
    }
    .owl-dot.active span {
      background: #28a745;
    }
    
    /* Common arrow style */
    .owl-prev, .owl-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(0,0,0,0.5);
      color: #fff !important;
      font-size: 22px !important;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      cursor: pointer;
      z-index: 1000;
    }
    
    /* Left arrow */
    .owl-prev {
      left: -55px;
    }
    
    /* Right arrow */
    .owl-next {
      right: -55px;
    }
    
    /* Hover effect */
    .owl-prev:hover, .owl-next:hover {
      background: #cea673;   /* custom highlight color */
      color: #000 !important;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    }
    .owl-theme .owl-nav [class*=owl-] {
        color: #FFF;
        padding: 7px!important;
        background: #f18500;
    }
    
    /* title underline*/
    .title {
      position: relative;
      padding-bottom: 15px; /* space for underline */
      color: #333;
      width: 35%;
    margin: auto;
    }
    
    .title::before,
    .title::after {
      content: "";
      position: absolute;
      top: 35%;
      width: 60px;       /* length of underline sides */
      height: 3px;       /* thickness of underline */
      background: #f18500;
    }
    
    .title::before {
      left: -70px;       /* distance from text */
    }
    
    .title::after {
      right: -70px;
    }
    
    .title-icon {
      display: inline-block;
      position: relative;
      margin: 0 10px;
      font-size: 22px;   /* icon size */
      color: #cea673;    /* icon color */
      vertical-align: middle;
    }

    .list_p p{
        display:flex;
    }
    .border-left-10{border-radius: 10px 0 0 10px;}
    .border-right-10{border-radius: 0 10px 10px 0;}
    .list_p p i{
        align-content: center;
    }
    .padding-none{
        padding:0!important;
        margin:0!important;
    }
    .navbar-brand {
            position: absolute;
        }
    
    @media only screen and (min-width: 320px) and (max-width: 768px) {
    .navbar-brand {
        position: initial!important;
        }
    .free_membership p {
        text-align: center!important;

    }
    }


    
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/


/*** Carousel Header Start ***/
.header-carousel.owl-carousel .owl-nav .owl-prev,
.header-carousel.owl-carousel .owl-nav .owl-next {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 87%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f28b00;
    color: #fff;
}

.header-carousel.owl-carousel .owl-nav .owl-prev {
    right: 130px;
    transition: 0.5s;
}

.header-carousel.owl-carousel .owl-nav .owl-next {
    right: 60px;
    transition: 0.5s;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
}



.header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.header-carousel.owl-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.carousel .carousel-header-banner {
    position: relative;
}

.carousel .carousel-banner-offer {
    position: absolute;
    top: 20px; 
    left: 20px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.carousel .carousel-banner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; 
    left: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}


.header-carousel .carousel-img img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}

.header-carousel .carousel-content {
  background: #fff;
}

.header-carousel .owl-nav button, .owl-nav div {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #333;
}

.header-carousel .owl-prev { left: 90%; }
.header-carousel .owl-next { left: 94%; }
/*** Carousel Header End ***/


/*** Page Header start ***/
.page-header {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/banner_11.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/*** Page Header end ***/


/*** Products Start ***/
.product .product-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.product .product-item .product-item-inner {
    height: 100%;
}

.product .product-item .product-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.product .product-item:hover .product-item-add {
    background: var(--bs-white);
    margin-bottom: -124px;
    opacity: 1;
}
.product .product-item:hover .product-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.product .product-item .product-item-inner .product-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.product .product-item .product-item-inner .product-item-inner-item .product-new,
.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.product .product-item .product-item-inner .product-item-inner-item .product-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner .product-item-inner-item .product-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item .product-item-inner img {
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner img {
    transform: scale(1.1);
}

.product .product-item .product-item-inner .product-item-inner-item .product-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.product .product-item .product-item-inner .product-item-inner-item .product-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.product .product-item:hover .product-item-inner .product-item-inner-item .product-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.product .product-item:hover .product-item-inner .product-details {
    opacity: 1;
}

.product .tab-class .nav .nav-item a.active {
    background: var(--bs-primary) !important;
}

.product .tab-class .nav .nav-item a.active span {
    color: var(--bs-white) !important;
}
/*** Product End ***/


/*** ProductList Categories Start ***/
.productList .productList-carousel {
    height: 215px !important;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    position: relative;
    width: calc(100% - 1px);
    transition: 0.5s;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item {
    margin-bottom: 75px;
}

.productList .productList-carousel .productImg-carousel.productList-item .productImg-item:hover {
    border-bottom: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.productList .productList-carousel .owl-nav .owl-prev,
.productList .productList-carousel .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.productList .productList-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    position: absolute;
    top: 0px;
    padding: 5px 10px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
    opacity: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev:hover,
.productList .productList-carousel .productImg-carousel .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-prev {
    left: 0;
}

.productList .productList-carousel .productImg-carousel .owl-nav .owl-next {
    right: 0;
}

.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-prev,
.productList .productList-carousel .productImg-carousel.productList-item:hover .owl-nav .owl-next {
    opacity: 1;
}
/*** ProductList Categories End ***/



/*** bestseller Products Start ***/
.products .products-mini .products-mini-item {
    position: relative;
    border-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.products .products-mini .products-mini-item .products-mini-img {
 position: relative;
 overflow: hidden;
}

.products .products-mini .products-mini-item .products-mini-img img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img img {
    border-bottom-left-radius: 0 !important;
    transform: scale(1.3);
}

.products .products-mini .products-mini-item .products-mini-img .products-mini-icon {
    position: absolute;
    width: 50px; 
    height: 50px; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon {
    opacity: 1;
}

.products .products-mini .products-mini-item:hover .products-mini-img .products-mini-icon:hover {
    background: var(--bs-secondary) !important;
}

.products .products-mini .products-mini-item .products-mini-add {
    position: absolute;
    bottom: 0;
    left: -1px;
    right: -1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bs-white);
    transition: 0.5s;
    z-index: 9;
    opacity: 0;
}

.products .products-mini .products-mini-item:hover .products-mini-add {
    opacity: 1;
    margin-bottom: -75px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** bestseller Products End ***/

/*** Pagination Start ***/
.pagination {
    display: inline-block;
}
  
.pagination a {
    color: var(--bs-dark);
    padding: 10px 16px;
    text-decoration: none;
    transition: 0.5s;
    border: 1px solid var(--bs-secondary);
    margin: 0 4px;
}
  
.pagination a.active {
    background-color: var(--bs-primary);
    color: var(--bs-light);
    border: 1px solid var(--bs-secondary);
}
  
.pagination a:hover:not(.active) {background-color: var(--bs-primary)}

.nav.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Pagination End ***/

/*** Shop Page Start ***/
.shop .product-categories .categories-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.shop .product-categories .categories-item a {
    transition: 0.5s;
}

.shop .product-categories .categories-item a:hover {
    color: var(--bs-primary) !important;
}

.shop .product-color .product-color-item {
    display: flex;
    padding: 10px 0;
}

.shop .product-color .product-color-item a {
    transition: 0.5s;
}

.shop .product-color .product-color-item a:hover {
    color: var(--bs-secondary);
}

.shop .price {
    padding: 10px 0;
}

.shop .additional-product .additional-product-item {
    padding: 10px 0;
}

.shop .featured-product .featured-product-item {
    display: flex;
    align-items: center;
    justify-content: start;
}

.shop .product-tags .product-tags-items a {
    display: inline-block !important;
    background: var(--bs-white);
    color: var(--bs-dark);
    transition: 0.5;
}

.shop .product-tags .product-tags-items a:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

/*** Shop Page End ***/


/*** Single Products Start ***/
.single-product .owl-nav .owl-prev,
.single-product .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*margin-top: -13%;*/
    font-size: 22px;
    color: var(--bs-primary);
}

.single-product .owl-nav .owl-prev {
    left: 0;
}

.single-product .owl-nav .owl-next {
    right: 0 !important;
}


.single-product .single-carousel .owl-dots {
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot img {
    width: 60px;
    height: 60px;
    border-radius: 30px;
    margin-right: 15px;
    border: 2px solid #f28b00;
    transition: 0.5s;
}

.single-product .single-carousel .owl-dots .owl-dot.active img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 4px solid #f92400;
}


.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.single-product .single-carousel .owl-dots .owl-dot.active img {
    width: 80px;
    height: 80px;
    border-radius: 40px;
    border: 4px solid var(--bs-secondary);
}
.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none;
    background: #fff;
}







.related-product .related-carousel .related-item {
    width: 100%;
    height: 100%;
    position: relative;
    margin-bottom: 50px;
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-add {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    z-index: 99;
}

.related-product .related-carousel .related-item:hover .related-item-add {
    background: var(--bs-white);
    margin-bottom: -125px;
    opacity: 1;
}

.related-product .related-carousel .related-item:hover .related-item-inner {
    border-bottom: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    overflow: hidden;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new,
.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    position: absolute;
    width: 60px; 
    height: 60px;
    border-radius: 60px; 
    top: 20px; 
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center; 
    z-index: 5;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-new {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-sale {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item .related-item-inner img {
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner img {
    transform: scale(1.1);
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details {
    position: absolute;
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.related-product .related-carousel .related-item .related-item-inner .related-item-inner-item .related-details a i {
    width: 50px; 
    height: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-item-inner-item .related-details a i:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.related-product .related-carousel .related-item:hover .related-item-inner .related-details {
    opacity: 1;
}


.related-product .owl-nav .owl-prev,
.related-product .owl-nav .owl-next {
    position: absolute;
    top: -40px;
    padding: 5px 40px;
    border-radius: 30px;
    background: var(--bs-primary);
    color: var(--bs-white);
    transition: 0.5s;
}

.related-product .owl-nav .owl-prev {
    left: 0;
}

.related-product .owl-nav .owl-next {
    right: 0;
}

.related-product .owl-nav .owl-prev:hover,
.related-product .owl-nav .owl-next:hover {
    background: var(--bs-secondary) !important;
}
/*** Single Products End ***/

.sidebar h2 {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  padding: 20px;
  border-bottom: 1px solid #e5e7eb;
}

/* ===== CATEGORY LIST ===== */
.category-list {
  list-style: none;
}

.category-list li {
  border-bottom: 1px solid #f1f3f5;
}

.category-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: #374151;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.category-list a .label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.category-list a i {
  color: #6b7280;
  font-size: 17px;
  width: 20px;
  text-align: center;
  transition: color 0.2s ease;
}

.category-list a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

.category-list a:hover i {
  color: #2563eb;
}

.category-list a.active {
  background: #2563eb;
  color: #fff;
}

.category-list a.active i {
  color: #fff;
}

/* ===== DROPDOWN MENU ===== */
.sub-menu {
  list-style: none;
  background: #f9fafb;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.sub-menu li a {
  padding: 12px 50px;
  font-size: 14px;
  color: #4b5563;
  display: block;
}

.sub-menu li a:hover {
  background: #e5e7eb;
  color: #2563eb;
}

/* Open Dropdown */
.category-list li.open .sub-menu {
  max-height: 500px; /* enough for 5 items */
}

/* Rotate Arrow */
.category-list li.open .arrow {
  transform: rotate(90deg);
}

/* Arrow Icon */
.arrow {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: #6b7280;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .sidebar {
    width: 100%;
  }
}

/* Carousel wrapper */
.carousel-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each slide takes full container */
.single-carousel .single-item {
  width: 100% !important; /* force full width */
  /*height: 70vh;           adjust height as needed */
  overflow: hidden;
  position: relative;
}

.single-carousel .single-item img.main-slide {
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill container */
  display: block;
}

/* Custom dots */
.custom-dots .dot {
  width: 60px;
  height: 60px;
  margin: 0 5px;
  border: 2px solid #ccc;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
}

.custom-dots .dot.active {
  border-color: #ff6600;
}

.custom-dots .dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-product .single-carousel .owl-dots{
    display: none;
}

.related-carousel .owl-dots{
    display: none;
}
.white-bg{
    background: #fff;
}
.m-1{
    margin: 10px;
}
.m-2{
    margin: 20px;
}
.m-3{
    margin: 30px;
}
.m-4{
    margin: 40px;
}
.m-5{
    margin: 50px;
}

.cart-icon {
      font-size: 24px;
      cursor: pointer;
      position: relative;
    }

    .cart-icon::after {
      content: '2';
      position: absolute;
      top: -6px;
      right: -10px;
      background: #dc3545;
      color: #fff;
      font-size: 12px;
      padding: 2px 8px;
      border-radius: 50%;
    }

    .offcanvas {
      width: 400px !important;
    }

    .cart-item img {
      width: 60px;
      height: 60px;
      border-radius: 6px;
    }

    .qty-control button {
      border: none;
      background: #e9ecef;
      width: 28px;
      height: 28px;
      border-radius: 4px;
      font-weight: bold;
    }

    .qty-control input {
      width: 40px;
      text-align: center;
      border: 1px solid #ddd;
      border-radius: 4px;
      margin: 0 5px;
    }

    .btn-view {
      background-color: #dc3545;
      color: white;
    }

    .btn-view:hover {
      background-color: #bb2d3b;
    }

    .btn-checkout {
      background-color: #212529;
      color: white;
    }

    .btn-checkout:hover {
      background-color: #343a40;
    }
    .td-align{
        text-align: center;
        vertical-align: middle;
    }

.btn-primary {
    color: #ffffff!important;
    background-color: #f18500!important;
    border-color: #f18500!important;
}
    .btn-primary:hover {
    color: #ffffff;
    background-color: #161d51!important;
    border-color: #161d51!important;
}
.cart-icon {
    font-size: 18px;
    border-radius: 50px;
    background: #f7f8f3;
    padding: 10px 15px;
    color: #000;
}
.btn-view {
    background-color: #f18500;
    color: white;
}
.btn-view:hover {
    background-color: #16214c;
    color: white;
}
.btn-checkout {
    background-color: #16214c;
    color: white;
}
.btn-checkout:hover {
    background-color: #f18500;
    color: white;
}
.header-carousel .header-item img{
    width: 100%;
    height: 80vh;
    object-fit: cover;
}
.bg_img1{
    background-color: #F5F5F5;
    background: url(../img/R3-Stem-Cell-CTA-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/* Mobile Responsive */

/* ---- Mobile view (max-width: 767.98px) ---- */
@media screen and (min-width: 320px) and (max-width: 1000px) {
  .top-bar a {
    border-left: none!important;
  }

}

@media screen and (min-width: 320px) and (max-width: 767px) {
.header-carousel .owl-prev {
    left: 74%;
}
.header-carousel .owl-next {
    left: 87%;
}
.free_membership {
    padding-bottom: 30px;
}
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
.header-carousel .owl-next {
    left: 85%;
}
}

/* ---- Mobile (≤767px) ---- */
@media (max-width: 767.98px) {
  .slider-container {
    flex-direction: column; /* stack items vertically */
    height: auto; /* adjust height automatically */
  }

  .slider-item {
    flex: none; /* remove flex growth for stacked layout */
    margin: 10px 0; /* smaller margin */
    height: 250px; /* reduce height */
    padding: 15px;
    border-width: 3px;
  }

  .slider-title {
    font-size: 1.2rem;
  }

  .slider-subtitle {
    font-size: 0.9rem;
  }

  .slider-link {
    font-size: 0.85rem;
  }
}

/* ---- Tablet (768px - 991px) ---- */
@media (min-width: 768px) and (max-width: 991.98px) {
  .slider-container {
    flex-direction: row; /* keep row layout */
    height: 300px; /* slightly smaller than desktop */
  }

  .slider-item {
    margin: 5px;
    padding: 15px;
    border-width: 4px;
  }

  .slider-title {
    font-size: 1.3rem;
  }

  .slider-subtitle {
    font-size: 0.95rem;
  }

  .slider-link {
    font-size: 0.9rem;
  }
}

/* ---- Desktop (≥992px) ---- */
@media (min-width: 992px) {
  .slider-container {
    height: 400px; /* original height */
  }

  .slider-item {
    margin: 5px;
    padding: 20px;
    border-width: 5px;
  }

  .slider-title {
    font-size: 1.5rem;
  }

  .slider-subtitle {
    font-size: 1rem;
  }

  .slider-link {
    font-size: 1rem;
  }
}

/* Optional: make gallery videos responsive */
.gallery-column video {
  max-width: 100%;
  height: auto;
}


