

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.prdtdet{
  margin-top: 80px;
}
.main-wrapper{
    min-height: 100vh;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:120px;
}
.container{
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}
.product-div{
    margin: 1rem 0;
    padding: 1rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background-color: #fff;
    border-radius: 3px;
    column-gap: 10px;
}
.product-div-left{
    padding: 20px;
}
.product-div-right{
    padding: 20px;
}
.img-container img{
    width: 500px;
    margin: 0 auto;
}
.hover-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}
.hover-container div{
    border: 2px solid black;
    padding: 1rem;
    border-radius: 3px;
    margin: 0 4px 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active{
    border-color:#e5232b !important;
}
.hover-container div:hover{
    border-color: #e5232b;
}
.hover-container div img{
    width: 50px;
    cursor: pointer;
}
.product-div-right span{
    display: block;
}
.product-name{
    font-size: 26px;
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    opacity: 0.9;
}
.product-genric{
    margin-top: -20px;
    font-weight: 700;
    font-size: 15px;
    opacity: 0.9;
    font-weight: 500;
}
.product-rating{
    display: flex;
    align-items: center;
    margin-top: 12px;
}
.product-rating span{
    margin-right: 6px;
}
.product-description{
    font-weight: 18px;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.9;
    margin-top: 22px;
}
.btn-groups{
    margin-top: 22px;
}
.btn-groups button{
    display: inline-block;
    font-size: 16px;
    font-family: inherit;
    text-transform: uppercase;
    padding: 15px 16px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-groups button .fas{
    margin-right: 8px;
}
.add-cart-btn{
    background-color: #ffa07a;
    border: 2px solid #ffa07a;
    margin-right: 8px;
}
.add-cart-btn:hover{
    background-color: #fff;
    color: #ffa07a;
}
.buy-now-btn{
    background-color: #000;
    border: 2px solid #000;
}
.buy-now-btn:hover{
    background-color: #ff6d00;
    color: #ff6d00;
}

/* CSS Variables */
:root {
    --primary-color: #f1f1f1;
    --secondary-color: #f1f1f1;
    --extra-light: #f3f4f6;
    --white: #ffffff;
    --gradient-1: linear-gradient(to bottom right, #d3303b, #1a1b1f);
    --gradient-2: linear-gradient(
      to bottom,
      var(--primary-color),
      var(--secondary-color)
    );
    --max-width: 1200px;
  }
  
  
  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  .section__container {
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
  }
  
  .section__headerr {
    padding-top: 1rem;
    position: relative;
    isolation: isolate;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 500;
    overflow: hidden;
  }
  
  .section__headerr::before {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 6rem;
    white-space: nowrap;
    opacity: 0.1;
  }
  
  .section__description {
    color: #ffffff;
    line-height: 1.5rem;
  }
  
  .section li{
    padding: 5px;
  }
  
  .section ul li i {
    color: black;
    margin-right: 10px;
}

  .service {
    background-color:#ffffff;
  }
  
  .service__container .section__header::before {
    content: "";
  }
  
  .service__container .section__description {
    max-width: 600px;
  }
  
  .service__grid {
    margin-top: 4rem;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service__card {
    padding: 1rem;
    display: flex;
    align-items: left;
    gap: 1rem;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .service__card:hover {
    background-color:#ff6d00;
    color:#ffffff;
  }
  
 
  
  .service__card:hover span {
    color:#ffffff;
  }
  
  .service__card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
  }
  
  .service__card p {
    color:#091121;
  }
  .service__card:hover p{
    color: #ffffff;
  }
  .service__card h4:hover{
    color: #ffffff;
  }
 
  .surgery-icon {
    width: 100px;
    height: 50px;
  }
 
  .pdf-section {
    margin: 0 auto;
    padding: 2rem 1rem; /* Adjust padding for mobile and desktop */
    background-color: #f8f9fa; /* Light background color for contrast */
  }
  
  .pdf-container {
    max-width: 800px; /* Set a max-width for larger screens */
    margin: 0 auto;
    padding: 1rem; /* Add some padding inside the container */
    background-color: #ffffff; /* White background for the content */
    border-radius: 8px; /* Rounded corners for the container */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  }
  
  /* Heading Styles */
  .pdf-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #e5232b; /* Heading color */
    text-align: center;
  }
  
  /* Download Button Styles */
  .pdf-download {
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between icon and text */
    font-size: 1rem; /* Text size for the download link */
  }

a {
text-decoration: none;
color: #000;
}  

.pdf-download i {
  font-size: 2rem; /* Icon size */
  color: #e5232b; /* Icon color */
}

.pdf-download a {
  text-decoration: none;
  color: #091121; /* Text color */
}

.pdf-download a:hover {
  color: #c3372a; /* Text color on hover */
}

.pdf-download label {
  font-size: 1rem; /* Font size for the label */
  font-weight: 500;
}

.logo-container {
  background-color: #c3372a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 151px; /* Adjust as needed */
}

.logo-container img {
  max-width: 204px;
  max-height: 51.33px;
}




/* Media Queries */

/* For screens larger than 992px */
@media screen and (min-width: 992px) {
  .pdf-section {
    padding: 2rem 4rem; /* More padding for larger screens */
  }
}

/* For screens smaller than 768px */
@media screen and (max-width: 768px) {
  .pdf-download {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem; /* Smaller gap on smaller screens */
  }

  .pdf-download i {
    font-size: 1.5rem; /* Slightly smaller icon */
  }

  .pdf-download label {
    font-size: 0.9rem; /* Slightly smaller text */
  }
}

/* For screens smaller than 576px */
@media screen and (max-width: 576px) {
  .pdf-download {
    gap: 0.3rem; /* Even smaller gap */
  }
  .pdf-section h2 {
    font-size: 18px; /* Further adjusted h2 size */
  }

  .pdf-download i {
    font-size: 1.2rem; /* Even smaller icon */
  }

  .pdf-download label {
    font-size: 0.8rem; /* Even smaller text */
  }
}
  
@media screen and (max-width: 992px){
    .product-div{
        grid-template-columns: 100%;
    }
    .product-div-right{
        text-align:left;
    }
    .product-rating{
        justify-content: center;
    }
    .product-description{
        max-width: 400px;
        margin-right: auto;
        margin-left: auto;
    }
    .pdf-section {
      padding: 2rem 4rem; /* More padding for larger screens */
    }
}

@media screen and (max-width: 400px){
    .btn-groups button{
        width: 70%;
        margin-bottom: 10px;
    }   
}



@media screen and (max-width: 700px){
  .btn-groups button{
      width: 70%;
      margin-bottom: 10px;
  }
  .img-container img{
    width: 300px;
    overflow: hidden;
}
 
}
.section {
  margin: 20px auto;
  padding: 0 15px; /* Add padding to avoid content touching the edges */
  max-width: 800px; /* Set a max-width for larger screens */
}

.section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ffa07a; /* Adjust color as needed */
  text-align: center;
}

.section ul {
  list-style: none;
  padding: 0;
}

.section ul li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 10px;
  color: #59575c; /* Adjust color as needed */
}

.section ul li i {
  color: #c3372a; /* Chevron color */
  margin-right: 10px;
}

@media (max-width: 768px) {
  .section {
    padding: 0 10px; /* Adjust padding for smaller screens */
  }

  .section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .section ul li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .section h2 {
    font-size: 18px;
  }

  .section ul li {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  .service__card {
      flex-direction: column;
      text-align: left;
  }
  .service__card span {
      margin-bottom: 10px;
  }

}

/* For screens smaller than 992px */
@media screen and (max-width: 992px) {
  .service__grid {
    grid-template-columns: 1fr; /* Display cards in a single column */
  }
    .main-wrapper{
    margin-top:-80px;
}
}

/* For screens smaller than 768px */
@media screen and (max-width: 768px) {
  .service__grid {
    grid-template-columns: 1fr; /* Ensure single column layout on smaller screens */
  }
 
  .service__card h4 {
    font-size: 1rem; /* Slightly smaller heading */
  }

  .service__card p {
    font-size: 0.9rem; /* Slightly smaller text */
  }

  .service__card {
    padding: 0.8rem; /* Slightly smaller padding */
    text-align: left;
  }
  
}

/* For screens smaller than 576px */
@media screen and (max-width: 576px) {
  .service__card h4 {
    font-size: 0.9rem; /* Even smaller heading */
  }

  .service__card p {
    font-size: 0.8rem; /* Even smaller text */
  }

  .service__card {
    padding: 0.6rem; /* Even smaller padding */
  }
  .main-wrapper{
    margin-top:-80px;
}
}



