*{
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
}
#lung-header-main-container{
    height: 600px;
    width: 100%;
    display: flex;
    background-color: #08354e;
    justify-content: center;
    align-items: center;
}
#lung-header-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1200px;
    display: flex;
    background: linear-gradient(to bottom,rgba(51, 203, 217, 0.5),#08354e);
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
#lung-header-left{
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}
#lung-header-left h1{
    color: white;
    width: 90%;
    font-size: 60px;
}
#lung-header-left a{
    color: #08354e;
    font-size: medium;
    padding: 10px 20px;
    font-weight: 600;
    background-color: white;
    border: none;
    border-radius: 20px;
    text-decoration: none;
}
#lung-header-right{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#lung-header-right img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
@media (max-width: 991px){
    #lung-header-main-container {
    height: 350px;}
#lung-header-left h1 {
    width: 100%;
    font-size: 45px;
}
}
@media (max-width: 768px){
    #lung-header-left h1 {
        width: 100%;
        font-size: 30px;
    }
    #lung-header-left a {
        font-size: small;
    }
        #lung-header-main-container {
        height: 250px;
    }
}
@media (max-width: 600px){
    #lung-header-left{
    width: 100%;
}
#lung-header-right{
    display: none;
}
}
/* Number Box */
#after-header-number-box-main-container{
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
#after-header-number-box-main-container::after{
    content: '';
    height: 200px;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #08354e;
    border-radius: 0  0 50% 50%;
}
#after-header-number-box-inner-container{
    height: 90%;
    width: 95%;
    z-index: 1;
    max-width: 1200px;
    background-color: white;
    border-radius: 50px;
    box-shadow: 1px 1px 10px black;
}
@media (max-width: 991px){
    #after-header-number-box-main-container::after {
    height: 150px;
}
}
@media (max-width: 600px){
    #after-header-number-box-main-container::after {
        height: 50px;
    }
}
.number-boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  height: 100%;
  padding: 20px 10px;
  box-sizing: border-box;
}

.number-box {
  border-radius: 15px;
  flex: 1 1 calc(33.33% - 20px); /* Changed from 25% to 33.33% */
  min-width: 0;
  max-width: none;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.number {
  font-size: 60px;
  font-weight: bold;
  color: #08354e;
  margin-bottom: 10px;
}
.number-box p {
  font-size: medium;
  color: #333;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 768px){
    #after-header-number-box-main-container {
    height: 400px;
}
.number-boxes-container {
    gap: 10px;
    padding: 10px;
}
.number-box {
    padding: 10px;
}
.number {
    font-size: 30px;
}
.number-box p {
    font-size: small;
}
}
@media (max-width: 600px){
    #after-header-number-box-main-container {
    height: 250px;
}
.number {
    font-size: 18px;
}
.number-box p {
    font-size: 8px;
}
}
/* End To End Section */
#end-to-end-heading-section{
    height: fit-content;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
#end-to-end-heading-section h2{
    text-align: center;
    color: #08354e;
    font-size: 40px;
}
#end-to-end-lung-bg-main-container{
    height: fit-content;
    width: 100%;
    background-color: #08354e;
    display: flex;
    justify-content: center;
    align-items: center;
}
#end-to-end-lung-bg-inner-container{
    height: 500px;
    width: 100%;
    max-width: 1400px;
    background-image: url('../images/end-to-end-lung-nodule-bg.webp');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-clip: border-box;
}
@media (max-width: 991px){
#end-to-end-lung-bg-inner-container{
    height: 390px;
}
}
@media (max-width: 768px){
#end-to-end-heading-section h2 {
    font-size: 30px;
}
    #end-to-end-lung-bg-inner-container {
        height: 300px;
    }
}
@media (max-width: 600px){
    #end-to-end-heading-section h2 {
        font-size: 25px;
    }
    #end-to-end-lung-bg-inner-container {
        height: 200px;
    }
}

/* QXR Section */
.qxr-main-container{
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#qxr-inner-container{
    height: 100%;
    width: 100%;
    max-width: 1200px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
#qxr-left-container{
    height: 100%;
    width: 40%;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
}
#qxr-left-container h2{
    color: #08354e;
    font-size: 60px;
}
#qxr-left-container p{
    color: gray;
    font-size: large;
}
#qxr-left-container a{
    color: #fff;
    font-size: medium;
    padding: 10px 20px;
    font-weight: 600;
    background-color: #08354e;
    border: none;
    border-radius: 20px;
    transition: all 0.3s;
    text-decoration: none;
}
#qxr-left-container a:hover{
    background: #33cbd9;
}
#qxr-right-container{
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}
#qxr-right-container video{
    height: 400px;
    width: auto;
    border-radius: 20px;
    object-fit: contain;
}
@media (max-width: 991px){
    #qxr-right-container video {
    height: 300px;
}
#qxr-left-container p {
    font-size: medium;
}
}
@media (max-width: 768px) {
    .qxr-main-container {
    height: 300px;
}
    #qxr-left-container h2 {
    font-size: 50px;
}
    #qxr-right-container video {
        height: 220px;
    }
}
@media (max-width: 600px){
    .qxr-main-container {
        height: fit-content;
    }
    #qxr-inner-container {
    flex-direction: column;
}
#qxr-left-container {
    width: 100%;
    height: fit-content;
}
#qxr-left-container {
    width: 100%;
    height: 300px;
    align-items: flex-start;
    padding-left: 10px;
}
    #qxr-right-container video {
        height: 230px;
    }
}
#qr-boxes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* center align items */
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
  max-width: 1200px; /* fixed width on large screens */
  margin: 0 auto;     /* center the whole container */
}

.qr-box {
  flex: 1 1 calc(25% - 20px); 
  background-color: #08354e;
  border-radius: 15px;
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  max-width: 280px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
}

.qr-box img {
  width: auto;
  height: 40px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.qr-box p {
  font-size: small;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 991px) {
  .qr-box {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  /* .qr-box {
    flex: 1 1 100%;
  } */
   .qr-box p {
    font-size: xx-small;
}
.qr-box img {
    width: auto;
    height: 20px;
}
#qr-boxes-container {
    gap: 10px;
    padding: 10px;
}
}

/* qxr-qct-qtrack-float-tab */
#qxr-qct-qtrack-float-tab {
    height: 40px;
    width: 250px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5); 
    border: 1px solid white;
    position: fixed;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 1px 1px 5px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1;
}
#qxr-qct-qtrack-float-tab a{
    color: white;
    -webkit-text-stroke: 1px gray;
    font-weight: 600;
    text-decoration: none;
}
