@import url("bootstrap.min.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/* Global Styles */

:root {
  --primary-clr: #243372;
  --secondary-clr: #f1562e;
  --darkpurple-clr: #2c2d41;
  --light-primary_clr: #4157a1;

  --white-txt-clr: #fff;
  --jetblack-txt-clr: #3c404b;

  --fnt_family: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box !important;
}
html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}
body {
    font-family: var(--fnt_family);
    color: #000;
    background-color: #fff;
    font-size: 14px;
    line-height: 20px;
    /*overflow-x: hidden !important;*/
    height: auto !important;
    /*max-width: 100% !important;*/
}
.placeholder{
  cursor: auto !important;
  opacity: 1 !important;
}
img {
  max-width: 100% !important;
}
.bordertop {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.borderright {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
button[type="button"],
span {
  font-family: var(--fnt_family);
  /*font-style: normal;*/
}

/* Global Styles end */

.header_top {
  background-color: var(--darkpurple-clr);
}
.header_top p {
  font-family: var(--fnt_family);
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  text-wrap: balance;
}

/*:::::::
        header_top end
:::::::::::::*/

/*header.site-header {*/
/*    position: relative;*/
/*}*/
.main_nav {
    position: absolute;
    max-width: 100%;
    top: 35px;
    left: 0;
    width: 100%;
}
.navbar-nav {
  background-color: var(--primary-clr);
  border-radius: 100vw;
  padding: 0.5rem 1.5rem;
}
.cust-fn .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  padding-inline: 1.1rem;
  color: var(--white-txt-clr);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.nav-link:hover {
  text-decoration: none !important;
}
.cust-fn .nav-item .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #4157a1;
  transform: skewX(-15deg) scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
  z-index: -1;
}
.cust-fn .nav-item .nav-link:hover::before,
.cust-fn .nav-item .nav-link.active::before {
  transform: skewX(-15deg) scaleX(1);
}
.support-banner {
  background-color: var(--jetblack-txt-clr);
  color: var(--white-txt-clr);
  padding: 2rem 2.8rem;
  display: inline-flex;
  font-family: var(--fnt_family);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 790px;
  right: 65px;
}
/* Angular cut/fold effect on the bottom-left corner */
.support-banner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 0 25px;
  border-color: transparent transparent transparent var(--white-txt-clr); /* Matches the white page background */
}
/* Icon styling and slight rotation to match the design angle */
.phone-icon-wrapper {
  margin-right: 16px;
  transform: rotate(-10deg);
}
/* Text block container adjustments */
.text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Subtitle helper prompt */
.support-title {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
/* Primary bold phone digit typography */
.phone-number {
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
/* Clean link overrides */
.phone-link {
  color: inherit;
  text-decoration: none;
}
.phone-link:hover {
  color: var(--white-txt-clr);
}

/*:::::::
        main_header end
:::::::::::::*/

.product-description h2{
    font-size: 2.8rem;
    color: var(--jetblack-txt-clr);
    font-weight: 900;
    line-height: 0.9;
}  
.product-description h2 span{
    font-weight: 300;
      letter-spacing: -0.13rem;
}
.product-description ul li{
    font-size: 1.16rem;
      color: var(--jetblack-txt-clr);
      font-weight: 500;
      padding-block: 0.5rem 0.3rem;
}
.product-description ul li.arrow-icon{
    margin-right: 0.2rem;
    vertical-align: middle;
}

/*:::::::
        product-description end
 :::::::::::::*/

/* Outer Wrapper */
.scroll-wrapper {
  padding: 70px 0;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.scroll-wrapper::before,
.scroll-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.scroll-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.scroll-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* CSS Track Configurations */
.scroll-track {
  display: flex;
  width: max-content;
  gap: 1rem;
}

/* Pause animation on hover */
.scroll-wrapper:hover .scroll-track {
  animation-play-state: paused !important;
}

/* Direction 1: Left Animation */
.scroll-left {
  animation: scrollLeft 25s linear infinite;
}

/* Direction 2: Right Animation */
.scroll-right {
  animation: scrollRight 25s linear infinite;
}

/* Double image hover effect */
.img-hover-effect {
  position: relative;
  display: inline-block;
}
.img-hover-effect .hover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.img-hover-effect:hover .hover-img {
  opacity: 1;
}

/* Keyframes using standard CSS transform offsets */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*:::::::
        scroll-wrapper end
 :::::::::::::*/

.values-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: var(--darkpurple-clr) url("https://bmedinstruments.us/bmed-new-listing-2026/imges/values-bg.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

/* Left Hero Section */
.value-content {
  padding: 80px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.badge {
  align-self: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 1rem;
  color: #85879f;
  margin-bottom: 18px;
  font-weight: 500;
  display: flex;
}

.value-title {
  font-size: 3.375rem;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.1rem;
  color: var(--white-txt-clr);

  & .highlight {
    display: block;
    font-weight: 300;
    font-style: italic;
    color: #85879f;
  }
}

/* Right Values Grid (2 Columns, 3 Rows) */
.grid-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, minmax(200px, auto));
}

.grid-cell {
  padding: 50px 40px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "step-number step-number"
    "icon-img grid-content";
  gap: 1rem;
  align-items: start;
}

.grid-cell .step-number {
  grid-area: step-number;
}

.grid-cell .icon-img {
  grid-area: icon-img;
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.grid-cell .grid-content {
  grid-area: grid-content;
}

/* Remove right border for second column items */
.grid-cell:nth-child(2n) {
  border-right: none;
}

/* Remove bottom border for the last row */
.grid-cell:nth-last-child(-n + 2) {
  border-bottom: none;
}

/* Large step number indicator */
.step-number {
  position: absolute;
  top: -20px;
  right: -15px;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Card Content */
.cell-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--white-txt-clr);
}

.cell-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white-txt-clr);
  font-weight: 400;
}
/*:::::::
        values-container end
:::::::::::::*/

.choose-section {
  /* padding-block: 95px 95px; */
  padding-block: 5.938rem 5.938rem;
}

.choose-section .step-indicator {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--secondary-clr);
  line-height: 1;
}
.choose-section .choose-img {
  max-width: 75px !important;
  margin-right: 1rem;
}
.choose-section .choose-content {
  flex: 1;
}
.choose-section .choose-content h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: var(--jetblack-txt-clr);
}
.choose-section .choose-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--jetblack-txt-clr);
  font-weight: 500;
  margin-bottom: 1rem;
}

/*:::::::
     choose-section end
:::::::::::::*/

.custom-footer {
  color: #ffffff;
  font-size: 0.9rem;
  background: var(--primary-clr) url(https://bmedinstruments.us/bmed-new-listing-2026/imges/footer-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
.footer-heading,
.about-heading {
  font-weight: 500;
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}
.about-heading {
  font-size: 1.875rem !important;
  font-weight: 900;
}
.footer-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-txt-clr);
  line-height: 1.6;
}
.footer-link {
  color: #ffffff;
  text-decoration: underline;
}
.footer-link:hover {
  color: var(--white-txt-clr);
}
.footer-divider {
  position: absolute;
  left: 0;
  right: 0;
  border-top-color: #fff !important;
  border-top-width: 2px !important;
  margin: 0;
  opacity: 1;
}

.note-section {
  font-size: 0.8rem;
  font-weight: 500;

  p span {
    font-weight: 700;
  }
}

/*:::::::
     footer-section end
:::::::::::::*/
/* Responsive adjustments */
@media (max-width: 1024px) {
  .values-container {
    grid-template-columns: 1fr;
  }
  .value-content {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px 20px;
  }
  .value-title {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .grid-section {
    grid-template-columns: 1fr;
  }
  .grid-cell {
    border-right: none !important;
  }
  .grid-cell:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .grid-cell:last-child {
    border-bottom: none;
  }
}

@media (min-width: 991px) and (max-width: 1366px) {
  .custom-footer {
    background-size: 100% 100%;
  }
}

@media (max-width: 991px) {

  .custom-footer {
    background: var(--primary-clr) url();
    padding: 2rem 1rem;
  }
  .values-container {
    background: var(--darkpurple-clr) url("");
  }
  .main_nav {
    position: inherit;
  }

}
@media (max-width: 767px) {
  .borderright {
    border-right: 0;
  }
  .support-banner {
    padding: 1rem 0.8rem;
    right: 0;
    margin: 0 11px;
  }
  .support-title {
    font-size: 1.05rem;
  }
  .phone-number {
    font-size: 1.7rem;
  }
}

/*:::::::
     @media query end
:::::::::::::*/
