@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    padding: 0px;
}


.banner-1-container{
    /*background: url('/assets/images/genome/Genome testing_banner.png');*/
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover; 
    height: 60vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items:center ;
}

.banner-1-content{
    width: 80%;
}

.banner-1-content h2{
    font-family: Poppins;
    /*font-size: 20px;*/
    font-weight: 600;
    line-height: 60px;
    text-align: left;
    margin: 10px 0px;
    color: #336699;
}

.banner-1-content p{
    font-family: Poppins;
    font-size: 17px;
    font-style: italic;
    font-weight: 400;
    line-height: 39.5px;
    text-align: left;
    color: #000;
}

.banner-1-content button{
    padding: 20px 45px;
    background-color: #336699;
    border-radius: 500px;
    border: none;
    color: white;
}


.head-part-1{
    width: 93%;
    margin: 30px auto -30px auto;
    
}

.head-part-1 h3{
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 400;
    color: #003367;
}


.main-bill-container-1{
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
    width: 100%;
    margin: 0px auto;
    padding: 50px;
    position: relative;
    align-items: flex-start;
}

.images-container-1{
    width: 50%;
    display: flex;
    flex-direction: row;
    gap: 10px;
    position: sticky;
    top: 20px;
    height: auto;
}

.main-image-1 img{
    width: 530px;
    max-width: 530px;

}

.thumbnail-gallery-1 img{
    margin-bottom: 10px;
    max-width: 80px;
}


.billing-content{
    max-height: none; /* Allow it to take its full height */
    overflow-y: auto;
}

.billing-content h1{
    font-family: "Poppins", serif;
    font-size: 30px;
    font-weight: 400;
    color: #1FB249;
    margin-bottom: 20px;
}

.rating {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    color: #1a3e6a; /* Adjust the color as needed */
    margin-bottom: 20px;
    gap: 1rem;
}

.stars {
    display: inline-flex;
    margin-right: 8px;
}

.stars span {
    font-size: 34px; /* Adjust star size */
    color: #000; /* Black color for stars */
}

.rating-info {
    font-size: 16px; /* Adjust text size */
    color: #003367; /* Text color for the rating */
    margin-top: 10px;
    font-family: "Poppins", serif;
}

.review-count {
    font-size: 16px;
    margin-left: 5px;
}

.billing-content p{
    font-family: "Poppins", serif;
    font-size: 16px;
    margin-bottom: 40px;
}

.price-section-1 {
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    gap: 0.5rem;
    margin-bottom: 20px;
}

.sale-badge {
    padding: 5px 25px;
    border: 1px solid #ccc;
    border-radius: 500px;
    color: #918D8D;
    font-size: 17px;
    margin-right: 10px;
    font-family: "Poppins", serif;
}

.original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 17px;
    margin-right: 10px;
    font-family: "Poppins", serif;

}

.discounted-price {
    color: #28a745; /* Green color for discounted price */
    font-size: 17px;
    font-family: "Poppins", serif;
}

.product-card{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 30px;
}

.product-card .card-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 100px;
    gap: 0.5rem;
    border: 1px solid #E4E4E4;
    border-radius: 5px;
}

.product-desc .discount {
    color: #1FB249;
    font-size: 10px;
    margin: 0;
    font-family: "Poppins", serif;
}

.product-desc p{
    margin-bottom: 5px;
}

.product-desc .product-title {
    font-size: 9px;
    color: #333;
    margin: 5px 0;
    font-family: "Poppins", serif;
}

.product-desc .discount-part{
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-desc .original-price {
    color: #888;
    text-decoration: line-through;
    font-size: 7px;
    margin: 0;
    font-family: "Poppins", serif;
}

.product-desc .discounted-price {
    color: #28a745;
    font-size: 7px;
    margin: 0;
    font-family: "Poppins", serif;
}

.product-desc .free-delivery {
    font-size: 6px;
    color: #888;
    margin-top: 5px;
    font-family: "Poppins", serif;
}

/* Container for the quantity selector */
.quantity-selector {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    justify-content: center;
    margin: 0 auto; /* Center it if needed */
    background-color: #F5F8F9;
    margin-bottom: 15px;
}

/* Minus and Plus buttons */
.quantity-btn {
    width: 30px; /* Adjust button width for compact fit */
    border: none;
    color: #333;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    background-color: transparent;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

/* Quantity input field */
.quantity-input {
    width: 40px; /* Adjust input width to keep it compact */
    text-align: center;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 5px 0;
    background-color: transparent;
}

/* Container for centering the button if needed */
.button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Full-width Add to Cart button */
.add-to-cart-btn {
    width: 100%;
    padding: 15px 0;
    background-color: #1FB249; /* Adjust color as needed */
    color: white;
    font-size: 14px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
    font-family: "Poppins", serif;
}

.add-to-cart-btn:hover {
    background-color: #218838; /* Darker shade for hover effect */
}

.button-container-2{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.buyNow{
    width: 80%;
}
.buy-button{
    width: 40%;
    padding: 10px 0px;
    background-color: #F5F8F9;
    font-family: "Poppins", serif;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #D4D0D0;
    color: #003367;
    border-radius: 5px;
    cursor: pointer;
}

.call-back{
    width: 40%;
    padding: 10px 0px;
    background-color: #003367;
    font-family: "Poppins", serif;
    font-size: 14px;
    text-transform: uppercase;
    border: 1px solid #D4D0D0;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.billing-content h2{
    color: #003367;
    font-family: "Poppins", serif;
    font-weight: 500;
    font-size: 19px;
    margin-bottom: 30px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    margin-bottom: 30px;
}
.feature-box {
    display: flex;
    align-items: center;
    background-color: #fcf5eb;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
.feature-box img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}
.feature-box p {
    margin: 0;
    font-size: 16px;
    color: #6b6b6b;
}

.accordion {
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-header {
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    color: #003367;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: "Poppins", serif;
}   
.accordion-content {
    padding: 15px;
    font-size: 16px;
    color: #666;
    display: none;
    line-height: 1.5;
}
.accordion-header::after {
    content: "+";
    font-size: 24px;
    transition: transform 0.3s;
}
.accordion-header.active::after {
    transform: rotate(45deg);
}

.accordion-content h3{
    color: #003367;
    font-size: 20px;
    font-family: "Poppins", serif;
    font-weight: 600;
}

.testing-content{
    background-color: #F9F3E8;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.testing-accordian h3{
    font-family: "Poppins", serif;
    font-size: 26px;
    font-weight: 500;
    font-style: italic;
    color: #003367;
    margin: 30px 0px 30px 0px;
}

/* Accordion container */
.custom-accordion {
    /* border: 1px solid #ddd; */
    border-radius: 5px;
    width: 100%;
    /* max-width: 600px; */
    margin: 20px 0px;
    overflow: hidden;
}
  
/* .custom-accordion-item {
    border-bottom: 1px solid #ddd;
} */
  
.custom-accordion-item:last-child {
    border-bottom: none;
}
  
  /* Accordion header styling */
.custom-accordion-header {
    /* background-color: #f7f7f7; */
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: "Poppins", serif;
}
  
.custom-accordion-header:hover {
    background-color: transparent;
}
  
.custom-accordion-symbol {
    font-size: 18px;
    margin-right: 30px; /* Space between the symbol and text */
    transition: transform 0.3s ease;
    display: inline-block; /* Ensure proper rotation */
    color: #003367;
    
}
  
.custom-accordion-text {
    flex-grow: 1;
    font-size: 16px;
    font-weight: 500;
}
  
  /* Accordion content styling */
.custom-accordion-content {
    display: none;
    padding: 15px;
    font-size: 16px;
    line-height: 1.5;
    background-color: transparent;
}
  
  /* Checkbox styling */
.custom-accordion-checkbox {
    display: none; /* Hide the checkbox */
}
  
  /* Show content when checkbox is checked */
.custom-accordion-checkbox:checked ~ .custom-accordion-content {
    display: block;
}
  
  /* Rotate symbol when accordion is open */
.custom-accordion-checkbox:checked + .custom-accordion-header .custom-accordion-symbol {
    transform: rotate(90deg); /* Point up */
}

.testing-image img{
    width: 100%;
}

.test-report{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 50px;
}

.report-image img{
    width: 100%;
}

.report-content{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.report-content h3{
    font-family: "Poppins", serif;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
}

.report-content h3 span{
    color: #003367;
}

.report-content p{
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", serif;
    width: 70%;
    text-align: center;
    margin-bottom: 40px;
}

.report-content button{
    padding: 25px 80px;
    border-radius: 500px;
    border: 1px solid #B5B3B3;
    background-color: #fff;
}

.report-content button a{
    text-decoration: none;
    color: #003367;
    font-family: "Poppins", serif;
    font-size: 15px;
}

.testimonial-container{
    text-align: center;
    background-color: #f5f5f5;
    padding: 20px 30px;
}

.testimonial-container h2{
    font-family: Poppins;
    font-size: 35px;
    font-weight: 500;
    color: #0B3165;
    margin: 10px 0px;
}

.testimonial-container p{
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #0B3165;
    margin: 10px 0px 20px 0px;
}


.slider-container {
  width: 90%;
  max-width: 1250px;
  overflow: hidden;
  margin: 0px auto;
}

.slider {
  display: flex;
  gap: 20px;
  animation: slide 15s linear infinite;
}

.slide {
  flex: 0 0 32.13%; /* Shows 3 slides per view */
  background-color: #ffffff;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 20px;
  text-align: center;
  min-height: 150px;
}

@keyframes slide {
  0% { transform: translateX(0); }
  20% { transform: translateX(0); }
  25% { transform: translateX(-33.33%); }
  45% { transform: translateX(-33.33%); }
  50% { transform: translateX(-66.66%); }
  70% { transform: translateX(-66.66%); }
  75% { transform: translateX(-100%); }
  95% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

.slide-content{
    display: inline-flex;
}

.slide-content p{
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    color: #0B3165;
    text-align: left;
}

.slide-content span{
    font-family: Poppins;
    font-size: 40px;
    font-weight: 600;
    margin-right: 10px;
    color: #0B3165;
    font-style: italic;
    margin-top: 10px;
}

.reviewer{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.reviewer img{
    width: 50px;
    height: 50px;
    border-radius: 500px;
}

.reviewer .reviewer-content h4{
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    text-align: left;
    color: #0B3165;
    margin: 5px 0px;
}

.reviewer .reviewer-content h6{
    font-family: Poppins;
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    color: #336699;
    margin: 20px 0px;
}

.blog-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 80px 0px 20px 0px;
}

.blog-container h2{
    font-family: Poppins;
    font-size: 35px;
    font-weight: 500;
    color: #0B3165;
    margin: 10px 0px;
}

.blog-container p{
    font-family: Poppins;
    font-size: 17px;
    font-weight: 500;
    color: #0B3165;
    margin: 10px 0px 20px 0px;
}

.blogs-count{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.blog-box{
    width: 30%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);    border-radius: 10px;
}

.blog-box .blog-image{
    width: 100%;
}

.blog-box .blog-image img {
    width: 100%;
    display: block;
}

.blog-content{
    padding: 05px 20px;
}

.blog-content h5{
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
    margin: 20px 0px 0px 0px;
    color: #0B3165;
}

.blog-content p{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px 0px 0px;
    color: #2b4d80;
}

.blog-link{
    margin-top: 20px;
    text-align: end;
    padding: 10px;
}

.blog-link a{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 500;
    margin: 20px 0px 20px 0px;
    color: #2b4d80;
    text-decoration: none;
}

/* Parameter sections */

.parameter-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background-color: #f5f5f5;
    padding: 50px 20px;
}

.parameter-1-part{
    width: 60%;
}

.parameter-1-part h1{
    font-family: "Poppins", serif;
    font-size: 30px;
    font-weight: 600;
    color: #003367;
    text-align: center;
    font-style: italic;
}

.parameter-1-part h4{
    font-family: "Poppins", serif;
    font-size: 15px;
    font-weight: 400;
    color: #003367;
    text-align: center;
    font-style: italic;
}

.parameter-1-part .test-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px; /* Adjust spacing between items */
    padding: 40px;
}
  
.parameter-1-part .slider-item {
    flex: 1 1 calc(50% - 16px); /* Each item takes 50% of the row, minus the gap */
    box-sizing: border-box; /* Ensures padding and border are included in the width */
    max-width: calc(50% - 16px); /* Prevents items from stretching too wide */
    margin: 0; /* Adjust spacing as needed */
}
  
.parameter-1-part .slider-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 320px;
    background: white;
    border: 2px solid #005489;
    border-radius: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
  
.parameter-1-part .slider-item .title {
    font-size: 13px;
    font-weight: 500;
    color: #000;
    font-family: "Poppins", serif;
}
  
.parameter-1-part .slider-item .item-details {
    display: flex;
    align-items: center;
    gap: 10px;
}
  
.parameter-1-part .slider-item .toggle-switch {
    position: relative;
    width: 60px;
    height: 25px;
    background: #ddd;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 2px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}
  
.parameter-1-part .slider-item .toggle-switch.on {
    background: #005489;
}
  
.parameter-1-part .slider-item .item-details .price {
    font-size: 13px;
    font-weight: bold;
    font-style: italic;
    color: white;
    flex: 1;
}
  
.parameter-1-part .slider-item .item-details .toggle-btn {
    position: absolute;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    border: 2px solid #005489;
    transition: transform 0.3s ease;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}
  
  .toggle-btn.on {
    transform: translateX(10px);
  }
  
.toggle-btn.off {
    transform: translateX(0);
}
  
.add-btn {
    background: #28a745;
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}
  
.add-btn:hover {
    background: #218838;
}

.pricing-section-1 {
    display: flex;
    justify-content: center;
    align-items: stretch;
    
    gap: 1rem;
    
    /* border: 2px solid #005489; */
    border-radius: 10px;
    margin: 0px auto;
    width: 90%;
}
  
.pricing-details-1 {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 25px 40px 25px 40px;
    background-color: #003367;
    text-align: center;
    border-radius: 500px 0px 0px 500px;
    margin: 8px 0px; 
    width: 55%;}
  
  
.mrp-1 h4,
.offer-1 h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 400;
}
  
.price-strike-1 {
    text-decoration: line-through;
    font-size: 20px;
    /* color: #ff0000; */
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 500;
}
  
.offer-price-1 {
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    font-family: "Poppins", serif;
    font-weight: 500;
}
  
.pricing-section .book-now-btn-1 {
    background: #28a745;
    color: #fff;
    border-radius: 0px 500px 500px 0px;
    border: none;
    padding: 25px 40px 20px 40px;
    font-size: 23px;
    cursor: pointer;
    /* width: 90%; */
    font-family: "Poppins", serif;
    font-weight: 400;
    height: 100%;
    margin: 0px;
}

.parameter-2-part{
    width: 15%;
}

.parameter-3-part{
    width: 25%;
}

.parameter-icon-list .icon-list-1{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 40px;
}

.icon-list-1 img{
    width: 30px;
    height: 30px;
}

.icon-list-1 p{
    font-family: "Poppins", serif;
    font-size: 15px;
    color: #003367;
    font-weight: 500;
    font-style: italic;
}


 
.overlay {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 103, 0.66); /* Semi-transparent dark background */
    z-index: 999; /* Above everything else */
  }






button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
}


.popup {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    z-index: 1000; /* Above the overlay */
  }
  

.popup-content label {
    font-size: 0.9rem;
    margin-top: 10px;
    display: block;
    font-family: "Poppins", serif;
}

.popup-content h2{
    font-family: "Poppins", serif;
    text-align: center;
    color: #195888;
}
  
  .popup-content input,
  .popup-content textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: "Poppins", serif;
  }
  
  textarea {
    resize: none;
  }
  
  .submit-button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
  }
  
  .submit-button:hover {
    background: #218838;
  }
  
  .back-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    color: #007bff;
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
  }
  
  .back-button:hover {
    text-decoration: underline;
  }
  
  
  .back-button:hover {
    text-decoration: underline;
  }
  
  
  /*  */
  /* parameter new section */

.parameter-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.parameter-section h2{
    font-family: Poppins;
    font-size: 30px;
    font-style: italic;
    font-weight: 600;
    line-height: 45px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #003367;
    margin-bottom: 10px;
}

.parameter-section .dna-line{
    font-family: Poppins;
    font-size: 15px;
    font-style: italic;
    font-weight: 500;
    line-height: 22.5px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #003367;
    margin-bottom: 50px;
}

.parameter-section .parameter-box-container{
    display: flex;
    justify-content: center;
    /* align-items: center; */
    flex-wrap: wrap;
    gap: 1.5rem;
}

.parameter-box-container .parameter-box{
    width: 30%;
    padding: 20px;
    border: 1px solid #003367;
    border-radius: 18px;
    /* height: 200px; */
}
  
.parameter-box h3{
    font-family: Poppins;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin-bottom: 10px;
}

.parameter-box p{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 21px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #000;
    margin-bottom: 10px;
}

.parameter-box ul{
    margin-left: 25px;
    list-style: disc !important;
}

.parameter-box ul li{
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}

.pricing-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    
    gap: 1rem;
    
    /* border: 2px solid #005489; */
    border-radius: 10px;
    margin: 0px auto;
    width: 60%;
    margin-top: 30px;
}
  
.pricing-details {
    display: flex;
    justify-content: center;
    gap: 5rem;
    padding: 25px 40px 25px 40px;
    background-color: #003367;
    text-align: center;
    border-radius: 500px 0px 0px 500px;
    width: 55%;}
  
.mrp h4,
.offer h4 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 400;
}
  
.pricing-details .price-strike {
    text-decoration: line-through;
    font-size: 25px;
    /* color: #ff0000; */
    color: #fff;
    font-family: "Poppins", serif;
    font-weight: 500;
}
  
.pricing-details .offer-price {
    font-size: 25px;
    color: #fff;
    font-weight: bold;
    font-family: "Poppins", serif;
    font-weight: 500;
}
  
.pricing-section .book-now-btn {
    background: #28a745;
    color: #fff;
    border-radius: 0px 500px 500px 0px;
    border: none;
    padding: 25px 40px 20px 40px;
    font-size: 23px;
    cursor: pointer;
    width: 30%;
    font-family: "Poppins", serif;
    margin: 0px;
}


.image-strip{
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 40px 40px 40px;
}

.image-strip img{
    width: 100%;
}
  



/* Responsive styling */
@media (max-width: 600px) {
    .accordion-header {
        font-size: 16px;
        padding: 12px;
    }
    .accordion-content {
        font-size: 15px;
        padding: 12px;
    }
}

@media screen and (max-width: 1024px){
    .main-bill-container-1{
        flex-wrap: wrap;
    }

    .images-container-1{
        flex-direction: column;
        width: 100%;
	position:relative;
	
    }
 .main-image-1 img{
	width:100%
	
	}


    .thumbnail-gallery{
        order: 2;
    }

    .parameter-container{
        flex-wrap: wrap;
    }

    .parameter-1-part{
        width: 100%;
    }

    .pricing-details .price-strike,
    .pricing-details .offer-price,
    .pricing-section .book-now-btn{
        font-size: 16px;
    }

    .mrp h4, .offer h4{
        font-size: 13px;
    }

    .parameter-2-part{
        width: 30%;
    }

    .parameter-3-part{
        width: 55%;
    }
	.banner-1-content p{
	   font-size:14px;

	}

}

@media screen and (max-width: 820px){
    .images-container-1{
        align-items: center;
    }

    .slide {
        flex: 0 0 50%; /* Shows 2 slides per view in tablet */
    }
}



/* Responsive styling */
@media (max-width: 600px) {
    .accordion-header {
        font-size: 16px;
        padding: 12px;
    }
    .accordion-content {
        font-size: 15px;
        padding: 12px;
    }

	 .banner-1-content{
	width:100% !important;
	

   }
	.banner-1-content h2{
	font-size:20px;

	}

.appoint-content.appointmet__top__banner{
	width:100% !important;

	}
.thumbnail-gallery-1{
	order:2;
}

.parameter-section{
        padding: 20px;
    }

    .parameter-section .parameter-box-container{
        flex-direction: column;
    }

    .parameter-box-container .parameter-box{
        width: 100%;
    }

    .parameter-section h2{
        text-align: center;
        line-height: normal;
        font-size: 25px;
    }

.banner-1-content button {
        padding: 10px 10px !important;
    }



}

@media screen and (max-width: 525px){
    .images-container-1 .main-image img{
        width: 100%;
    }

    .head-part{
        margin: 20px auto 0px auto;
    }

    .main-bill-container-1{
        padding: 20px;
        margin-top: -60px;
    }

    .billing-content h1 {
        font-size: 20px;
    }

    .billing-content p{
        font-size: 14px;
    }

    .product-card{
        gap: 0.5rem;
    }

    .product-card .card-box{
        padding: 10px;
    }

    .product-desc .product-title{
        font-size: 8px;
    }

    .buy-button,
    .call-back{
        width: 75%;
    }
    .image-strip{
        padding: 10px;

    }
    section.appoint-section.pad-6.bg_img.treatment-search {
    background-size: contain;
    height: 200px !important;
    }
    .images-container-1{
        top:0px;
    }

    .features-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .parameter-1-part .test-container{
        padding: 0px;
        flex-direction: column;
    }

    .parameter-1-part .slider-item .title,
    .parameter-1-part .slider-item .item-details .price{
        font-size: 10px;
    }

    .parameter-1-part .slider-item{
        max-width: calc(100% - 16px);
    }

    .parameter-1-part h4{
        margin-bottom: 30px;
    }

    .pricing-section{
        gap: 1rem;
        width: 100%;
    }

    .pricing-details{
        gap: 1rem;
        width: 65%;
    }

    .mrp h4, .offer h4{
        margin-bottom: 10px;
        font-size: 12px;
    }

    .pricing-details .price-strike, .pricing-details .offer-price, .pricing-section .book-now-btn{
        font-size: 12px;
    }

    .pricing-section{
        margin-top: 10px;
    }

    .pricing-section .book-now-btn{
        width: 35%;
    }

    .parameter-2-part{
        width: 30%;
    }

    .parameter-2-part img{
        width: 100%;
    }

    .parameter-icon-list .icon-list-1{
        margin-bottom: 20px;
    }

    .icon-list-1 p{
        font-size: 12px;
    }

    .testing-content{
        flex-direction: column;
        padding: 20px;
    }

    .custom-accordion-text{
        font-size: 12px;
    }

    .test-report{
        flex-direction: column;
        padding: 30px;
    }

    .test-report{
        margin-bottom: 20px;
    }

    .report-content h3{
        margin-bottom: 20px;
    }

    .report-content p{
        width: 100%;
    }

    .testimonial-container h2{
        font-size: 25px;
    }

    .slide {
        flex: 0 0 100%; /* Shows 1 slide per view in mobile */
    }

    .blog-container h2{
        text-align: center;
        font-size: 25px;
    }

    .blog-container p{
        font-size: 18px;
        text-align: center;
    }

    .blogs-count{
        padding: 30px;
    }

    .blog-box{
        width: 100%;
    }

    .blog-container p{
        font-size: 14px;
    }

    .blogs-count{
        flex-direction: column;
    }



/*  */

    
}









