/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*.cms-logo {
    max-width: 80px; 
    height: auto; 
}*/


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}


.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
        
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary); 
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
    
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF; 

    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** product start***/
 .service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

 .service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
} 

 .service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}


.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1; 
}
  
 /* Full Section Background */
/*.service-section {*/
    /* background: #f5f5dc;   */
    /* background-size: cover;  */
    /* background-attachment: local;  */
    /*padding: 5rem 0;
    position: relative; 
    overflow: hidden;
    z-index: 1;
}  

 .service-item {
    background: #dbdfe4;  
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 10px;
    overflow: hidden;
}

.service-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    border-radius: 10px;
}

.service-item:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.service-item:hover img {
    filter: brightness(90%);
}*/

/* only for wave background */

/*@keyframes mygradient {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 100%
    }
}
 
 body {
    margin: 0px;
    background: linear-gradient(90deg, rgb(185, 101, 28), rgb(233, 30, 99), rgb(156, 39, 176), rgb(63, 81, 181));
    height: 100vh;
    width: 100vw;
    background-size: 600% 100%;
    background-repeat: no-repeat;
    animation: mygradient 24s linear infinite alternate
} 

@keyframes wave {
    0% {
        transform: rotate(0deg)
    }

    50% {
        transform: rotate(90deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.container {
    position: relative;*/ /* Ye zaroori hai, taaki wave ke upar aaye */
    /*z-index: 2;*/ /* Wave se upar dikhane ke liye */
/*}

#wave {
    height: 500%;
    overflow: hidden
}

#wave:before {
    content: '';
    overflow: hidden;
    position: absolute;
    bottom: 12%;
    left: -250vw;
    width: 600vw;
    height: 600vw;
    background: #85d5f1;
    border-radius: 48% 52% 52% 48% / 48% 52% 48% 52%;
    animation: wave 5s ease-in-out infinite;
    animation-delay: -3s
}

#wave:after {
    content: '';
    overflow: hidden;
    position: absolute;
    bottom: 50%;
    left: -250vw;
    width: 600vw;
    height: 600vw;
    background:#f5f5dc;
    border-radius: 48% 52% 52% 48% / 48% 52% 48% 52%;
    animation: wave 9s linear infinite
}*/
 /* product end */

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/* how its work card start */

/* Center align heading */
/*.how-it-works-heading {
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px; 
}*/

/* Steps Container */

/*.cms-howitwork-wrap {
    padding-top: 23px;
    padding-bottom: 20px;
    padding-left: 10px;
    justify-content: center;
    
}

.cms-howitwork-wrap:hover {  
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color:rgb(6, 61, 80);
}*/

/* Step Box */
/*.cms-howitwork-layout-1 .cms-howitwork-item {
    margin-left: -5px;
    box-shadow: 0 0 0 2px #eaeaea inset;
}
.cms-howitwork-item {
    
    background: white;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
    width: 300px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 80px;
    line-height: 46px;

} 

.cms-howitwork-item:hover {
    transform: scale(1.05);
}*/

/* Step Number with Hover Effect */
/*.step-number {
    width: 40px;
    height: 40px;
    background: transparent;
    color: black;
    font-size: 20px;
    line-height: 40px;
    border-radius: 50%;
    border: 2px solid #ccc;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: absolute;
}*/

/* Hide original number */
/*.step-number span {
    position: relative;
    z-index: 2;*/ /* Keep the number above */
    
/*}*/


/* Hover Effect */
/*.cms-howitwork-item:hover .step-number {
    background: black;
    color: white;
    border-color: black;
    
}*/



/* Change Number to Check Icon on Hover */
/*.cms-howitwork-item:hover .step-number::before {
    content: "✔";
    font-family: "Font Awesome 5 Free";*/ /* Ensure FontAwesome is loaded */
    /*font-weight: 900;
    
}*/
/* Hide the original number when hovered */
/*.cms-howitwork-item:hover .step-number::after {*/
    /* content: "✔";  Show Checkmark  */
    /*font-family: "Font Awesome 5 Free";*/ /* Ensure FontAwesome is loaded */
    /*font-weight: 900;
    font-size: 18px;
    color: white;
    position: absolute;
    z-index: 3;
}*/

/* Step Icon */
/*.step-icon {
    
    font-size: 40px;
    color: #273e74;
    margin-top: 40px;
}*/

/* Step Title */
/*.cms-heading {
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 30px;
}*/

/* Step Description */
/*.cms-description {
    font-size: 14px;
    color: #666;
}*/

/* how its work card end */

/* Banner Background Image  start*/
/* Transparent Background Image */
 /*.banner-section {
    position: relative;
    width: 100%;
    height: 400px;
    background: url("../img/post-5.jpg") no-repeat center center/cover;
    display: flex;
    align-items: center; 
    justify-content: center; 
    background-attachment: fixed;
    overflow: hidden;
 }
.banner-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); 
    z-index: 1;
}
.container {
    position: relative;
    z-index: 2; 
}*/


/* Product Images Size Increase */
 /*.product-img {
    width: 350px;  
    height: auto; 
    display: block;
    transition: transform 0.3s ease-in-out;
}*/ 

/* Hover Effect for More Highlight */
/*.product-img:hover {
    transform: scale(1.2);
}*/

/* end banner */




/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* career page start */

/* Form Container */
.career-contact-form {
    background-color: #f9f9f9;
    padding: 40px;
    max-width: 500px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Form Heading */
.form-heading {
    font-size: 24px;
    color: #06A3DA;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
}

/* Input Fields */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

/* Focus Effect on Input */
.contact-form input:focus {
    outline: none;
    border-color: #ffcc00;
}

/* File Upload Styling */
.file-upload label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.file-upload input[type="file"] {
    padding: 10px;
    background-color: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    background-color:#028bbd;
    color: #000;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e6b800;
}

/* career page end */
/* autoclave product page start  */

/* General Styling */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Product Section Styling */
.product-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    padding: 10px; 
    margin: 40px auto;
    
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.product-description {
    font-size: 18px;
    text-align: center;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-points {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.product-points li {
    font-size: 16px;
    color: #444;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

/* Custom Section Styling */
/* Custom Section Styling */
.custom-section {
    display: flex;
    flex-direction: row; /* For side-by-side layout */
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* For responsiveness */
}

/* Product Image Styling */
.product-image {
    width: 80%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover Effect on Image */
.product-image:hover {
    transform: scale(1.03);
}

/* Product Content Styling */
.product-content {
    width: 50%;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive: Stack on smaller devices */
@media (max-width: 768px) {
    .custom-section {
        flex-direction: column;
    }

    .product-image,
    .product-content {
        width: 100%;
    }
}

.product-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 10px;
}

.product-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    color:#06A3DA;
}

.product-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

/* Code for 3 Images in a Row  */

.custom-image-section {
    background-color: #091E3E;
    padding: 40px 20px;
    border-radius: 15px;
  }
  
  .custom-image-row {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .custom-image-box {
    flex: 1 1 30%;
    max-width: 30%;
    background-color: rgb(248, 248, 248);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
  }
  
  .custom-image-box img {
    width: 100%;
    height: 400px;
    object-fit: contain; 
    margin-bottom: 15px;
    border-radius: 8px;
    border: 3px solid #9d9e9e;

  }
  
  .custom-image-box p {
    font-size: 18px;
    font-weight: 700;
    color: #333;
  }
  
  .custom-image-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  /* Responsive for small devices */
  @media (max-width: 992px) {
    .custom-image-box {
      max-width: 45%;
    }
  }
  
  @media (max-width: 600px) {
    .custom-image-box {
      max-width: 100%;
    }
  }
  

/* Heading Underline Styling */
.section-heading,
.new-section-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

/* Underline Effect */
.section-heading::after,
.new-section-heading::after {
    content: "";
    display: block;
     /* width: 1200px;  */
    height: 4px; 
    width: 80%; 
    background-color: #06A3DA; /* Yellow color */
    margin: 10px auto 0; /* Center me align karne ke liye */
    border-radius: 2px;
}


/* New Section Styling */
.new-section {
    padding: 40px 20px;
    background-color:white; /* Light background */
}

.new-section-heading {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* Container Styling */
.new-section .container {
    display: flex;
    justify-content: center; /* Center horizontally */
    gap: 30px; /* Space between columns */
}

/* Column Styling */
.new-section .col {
    width: 55%; /* 2 items in a row */
    text-align: center;
}

/* Image Wrapper Styling */
.new-section .image-wrapper {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.new-section .image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

/* Hover Effect on Image */
.new-section .image-wrapper:hover {
    transform: scale(1.03);
}

/* Image Description Styling */
.new-section .image-description {
    font-size: 25px;
    color: #181717;
    margin-top: 10px;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .image-container {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 24px;
    }

    .product-description {
        font-size: 16px;
    }

    .product-points li {
        font-size: 14px;
    }

    .product-content h2 {
        font-size: 22px;
    }

    .product-content h3 {
        font-size: 18px;
    }

    .product-content p {
        font-size: 14px;
    }

    .image-row {
        flex-direction: column;
        align-items: center;
    }

    .image-container {
        width: 80%;
    }

    .product-image {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .product-section {
        padding: 20px 10px;
    }

    .product-image {
        width: 100%;
    }
}


/* autoclave product page end */


/* ✅ ETO Section Styling  start*/
.eto-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgb(184, 226, 236);
    padding: 40px 20px;
    gap: 30px;
    border-radius: 12px;
    flex-wrap: wrap;
}

/* ✅ Content Styling */
.eto-content {
    flex: 1;
    min-width: 300px;
}

.eto-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 3px solid#06A3DA;
    padding-bottom: 5px;
}

.eto-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ✅ Subheading Styling */
.eto-subheading {
    font-size: 24px;
    font-weight: 600;
    color: #06A3DA;
    margin-bottom: 10px;
}

/* ✅ List Styling */
/* .eto-list {
    list-style: none;
    padding: 0;
}

.eto-list li {
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.eto-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #06A3DA;
} */

/* ✅ Image Styling */
.eto-image img {
    /* width: 70%;
    max-width: 500px; */
    margin-top: 20px;
    width: 320px;
    height: 600px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.eto-image img:hover {
    transform: scale(1.05);
}

/* ✅ Responsive Design */
@media (max-width: 768px) {
    .eto-section {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .eto-heading {
        font-size: 24px;
    }

    .eto-description {
        font-size: 14px;
    }

    .eto-subheading {
        font-size: 18px;
    }

    .eto-list li {
        font-size: 14px;
    }

    .eto-image img {
        max-width: 100%;
    }
}


/* ✅ ETO Process Section Styling */
.eto-process-section {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

/* ✅ Heading Styling */
.eto-process-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 3px solid #06A3DA;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* ✅ Description Styling */
.eto-process-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ✅ List Styling */
.eto-process-list {
    list-style: none;
    padding: 0;
}

.eto-process-subheading {
    font-size: 20px;
    font-weight: 600;
    color: #06A3DA;
    margin-bottom: 8px;
}

.eto-process-text {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
}

/* ✅ Responsive Design */
/* @media (max-width: 768px) {
    .eto-process-heading {
        font-size: 24px;
    }

    .eto-process-description,
    .eto-process-text {
        font-size: 14px;
    }

    .eto-process-subheading {
        font-size: 18px;
    }
} */

/* ✅ Sterilizer Stage Section Styling */
.sterilizer-stage-section {
    background-color: #0769a1;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.sterilizer-heading {
    font-size: 28px;
    color: #fdfeff;
    font-weight: 700;
    border-bottom: 3px solid #06A3DA;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.sterilizer-description {
    font-size: 16px;
    color: white;
    line-height: 1.6;
}

.sterilizer-list li,
.sterilizer-phases li {
    font-size: 16px;
    color: whitesmoke;
}

/* ✅ Responsive Design */
/* @media (max-width: 768px) {
    .sterilizer-stage-section {
        padding: 20px;
    }

    .sterilizer-heading {
        font-size: 24px;
    }

    .sterilizer-description,
    .sterilizer-list li,
    .sterilizer-phases li {
        font-size: 14px;
    }
} */

/* ✅ Degasser Stage Section Styling */
.degasser-stage-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.degasser-heading {
    font-size: 28px;
    color: #2c3e50;
    font-weight: 700;
    border-bottom: 3px solid #06A3DA;
    padding-bottom: 5px;
}

.degasser-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.degasser-list li {
    font-size: 16px;
    color: #444;
}

/* ✅ General Mobile & Tablet Optimizations */
@media (max-width: 1024px) {
    .eto-process-section,
    .sterilizer-stage-section,
    .degasser-stage-section {
        padding: 20px;
        margin: 10px;
        border-radius: 8px;
    }

    .eto-process-heading,
    .sterilizer-heading,
    .degasser-heading {
        font-size: 22px;
        text-align: center;
    }

    .eto-process-description,
    .eto-process-text,
    .sterilizer-description,
    .sterilizer-list li,
    .sterilizer-phases li,
    .degasser-description,
    .degasser-list li {
        font-size: 14px;
        text-align: justify;
    }

    /* ✅ Lists Optimization */
    .eto-process-list,
    .sterilizer-list,
    .degasser-list {
        padding-left: 10px;
    }
}

/* ✅ Mobile Specific Tweaks */
@media (max-width: 600px) {
    .eto-process-heading,
    .sterilizer-heading,
    .degasser-heading {
        font-size: 20px;
    }

    .eto-process-description,
    .eto-process-text,
    .sterilizer-description,
    .sterilizer-list li,
    .sterilizer-phases li,
    .degasser-description,
    .degasser-list li {
        font-size: 13px;
        line-height: 1.5;
    }

    /* ✅ Adjust Padding for Small Screens */
    .eto-process-section,
    .sterilizer-stage-section,
    .degasser-stage-section {
        padding: 15px;
    }
}

/* ETO styling end */

/* cleanser styling start  */
/* Equipment Section Styling */
.equipment-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 40px 20px;
    gap: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

/* Reverse Section */
.equipment-section.reverse {
    flex-direction: row-reverse;
}

/* Content Styling */
.equipment-content {
    flex: 1;
}

.equipment-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    border-bottom: 3px solid #06A3DA;
    display: inline-block;
    padding-bottom: 5px;
}

/* .equipment-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
} */

/* List Styling */
/* .equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
} */

/* ✅ Icon Styling */
.equipment-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #06A3DA;
}

/* Image Styling */
.equipment-image{
    text-align: center;
    margin-bottom: 40px;
 
    
  }
  
.equipment-image img {
    /* width: 800px;
    height: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; */
    width: 400px;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
    
}

.equipment-image img:hover {
    transform: scale(1.05);
}

/* ✅ Responsive Design for Tablets */
@media (max-width: 1024px) {
    .equipment-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 20px;
    }

    .equipment-heading {
        font-size: 26px;
    }

    .equipment-description {
        font-size: 15px;
        line-height: 1.6;
    }

    .equipment-list li {
        font-size: 15px;
    }

    .equipment-image img {
        width: 90%;
        max-width: 350px;
    }
}

/* ✅ Mobile Optimizations */
@media (max-width: 600px) {
    .equipment-section {
        padding: 15px;
        gap: 15px;
    }

    .equipment-heading {
        font-size: 22px;
    }

    .equipment-description {
        font-size: 13px;
        line-height: 1.5;
    }

    .equipment-list {
        padding-left: 0;
    }

    .equipment-list li {
        font-size: 13px;
        padding-left: 20px;
    }

    .equipment-list li::before {
        font-size: 14px;
    }

    .equipment-image img {
        width: 100%;
        max-width: 300px;
        border-radius: 10px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    }
}


/* cleanser styling end */


/* ICU Beds Section  start*/
.icu-beds-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.section-heading-icu {
    font-size: 28px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 25px;
    border-bottom: 4px solid#06A3DA;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

/* ICU Beds Grid */
.icu-beds-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Individual ICU Bed */
.icu-bed {
    /*background: #fff;*/
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0);
    text-align: center;
    width: 300px;
    height: 400px;
    transition: transform 0.3s ease;
}

.icu-bed:hover {
    transform: scale(1.05);
}

/* ICU Bed Images */
.icu-bed img {
    width: 100%;
    height: 70%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* ICU Bed Title */
.icu-bed h3 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 10px;
}

/* icu bed with general ward care */
.general-ward-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.general-ward-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 600px;
    transition: transform 0.3s ease;
}

.general-ward-item:hover {
    transform: scale(1.05);
}

.general-ward-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* examination table with icu beds */
.exam-table-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.exam-table-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
    transition: transform 0.3s ease;
}

.exam-table-item:hover {
    transform: scale(1.05);
}

.exam-table-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

/* Other accessiores with icu beds  */
/* Accessories Section */
.accessories-container {
    padding: 50px 50px;
    /*background-color: #f9f9f9;*/
    text-align: center;
    border-radius: 12px;
}

.accessories-heading {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #0a0a0a;
    border-bottom: 4px solid #06A3DA;
    display: inline-block;
    padding-bottom: 10px;
}

.accessories-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.icu-bed {
    width: 300px;
    text-align: center;
}

.icu-bed img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0);
    transition: transform 0.3s ease;
}

.icu-bed img:hover {
    transform: scale(1.05);
}

.icu-bed h3 {
    margin-top: 10px;
    font-size: 18px;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accessories-images {
        flex-direction: column;
        align-items: center;
    }
}

/* ICU styling end  */

/* CSSd furniture start */

/* General Styles */

/* Content Section */
    /* .content { 
   
     text-align: center; 
} */

/* Heading */
.heading {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: bold;
    border-bottom: 4px solid #06A3DA;
    margin-left: 10%;
}

/* Paragraph Styling */
/* .paragraph {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.8;
} */

/* Image Gallery */
.image-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    
}


.image-gallery img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-left: 40px;
    max-width: 80%;
    height: auto;
}

.image-gallery img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .heading {
        font-size: 28px;
    }

    .paragraph {
        font-size: 16px;
        padding: 0 10px;
    }

    .image-gallery img {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 10px;
    }

    .image-gallery {
        flex-direction: column;
        align-items: center;
    }

    .image-gallery img {
        width: 90%;
    }
}

/* Reset & Basic Styling */


/* Section Heading */
.gallery-heading {
    text-align: center;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 50px;
    color: #333;
} 

/* Grid Layout */ 
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Image Box */
.gallery-item {
    background-color: white;
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 10px;
}

/* Hover Effect */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Responsive Margin */
@media (max-width: 480px) {
    .gallery-heading {
        font-size: 1.5rem;
    }

    .gallery-item img {
        height: 150px;
    }
}

/* cssd furniture end  */

/* industrial_strelizer start  */
 

.indus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.indus-container h1 {
    font-size: 2rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 4px solid #06A3DA;
}

.indus-container h2 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 20px;
}

.indus-container p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

.indus-container ul {
    list-style: none;
    padding: 0;
}

.indus-container ul li {
    background: url('check-icon.png') no-repeat left center;
    background-size: 20px;
    padding-left: 30px;
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

/* Responsive CSS */
@media (max-width: 1024px) {
    .indus-container {
        padding: 30px 15px;
    }
    .indus-container h1 {
        font-size: 1.8rem;
    }
    .indus-container h2 {
        font-size: 1.3rem;
    }
    .indus-container p, 
    .indus-container ul li {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .indus-container {
        padding: 25px 10px;
    }
    .indus-container h1 {
        font-size: 1.6rem;
    }
    .indus-container h2 {
        font-size: 1.2rem;
    }
    .indus-container p, 
    .indus-container ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .indus-container {
        padding: 20px 8px;
    }
    .indus-container h1 {
        font-size: 1.4rem;
    }
    .indus-container h2 {
        font-size: 1.1rem;
    }
    .indus-container p, 
    .indus-container ul li {
        font-size: 0.85rem;
    }
}

/* industrial_strelizer end  */

/* General Styles */





/* OT Table Styling  start */
/* .ot-table-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f9f9;
    padding: 40px 20px;
    gap: 30px;
    border-radius: 12px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
} */

/* Content Styling */
.ot-table-content {
    flex: 1;
    min-width: 300px;
}

.ot-table-heading {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-left: 10%;
    border-bottom: 3px solid #06A3DA;
    padding-bottom: 5px;
}

/* .ot-table-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
} */

/* Features List */
/* .ot-table-features {
    list-style: none;
    padding: 0;
}

.ot-table-features li {
    font-size: 16px;
    color: #444;
    padding-left: 25px;
    position: relative;
    margin-bottom: 8px;
}

.ot-table-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #06A3DA;
    font-weight: bold;
} */

/* Image Styling */
.ot-table-image img {
    /* width: 100%; */
    height: auto;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-left: 30%;
}

.ot-table-image img:hover {
    transform: scale(1.05);
}

/* CTA Button */
/* .ot-table-btn {
    display: inline-block;
    background-color: #06A3DA;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.ot-table-btn:hover {
    background-color: #024b6f;
} */

/* Responsive Design */
@media (max-width: 1024px) {
    .ot-table-heading {
        font-size: 24px;
    }

    .ot-table-description {
        font-size: 14px;
    }

    .ot-table-features li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .ot-table-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .ot-table-content {
        order: 2;
    }

    .ot-table-image {
        order: 1;
    }

    .ot-table-image img {
        max-width: 100%;
    }

    .ot-table-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}
/* OT table styling end */

