.elementor-33 .elementor-element.elementor-element-592d141{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-33 .elementor-element.elementor-element-61c411e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-fae586c */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    color: #333;
}

.container {
    width: 80%;
    max-width: 1100px;
    margin: auto;
}

/* HERO */
.quality-hero {
    position: relative;
    background: url('images/hero-lab.jpg') center/cover no-repeat;
    height:350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15, 76, 129, 0.75);
    
    border-radius: 25px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.quality-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.quality-hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

/* BUTTONS */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s ease;
}

.btn-primary {
    background: #fff;
    color: #0f4c81;
}

.btn-primary:hover {
    background: #0f4c81;
    color: #fff;
    transform: scale(1.05);
}

.btn-secondary {
    background: #0f4c81;
    color: #fff;
}

.btn-secondary:hover {
    background: #08335c;
    transform: translateY(-3px);
}

/* GRID CARDS */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #0f4c81;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.4s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    padding: 20px 20px 0;
    color: #1a6fb3;
}

.card p {
    padding: 10px 20px 25px;
}

/* MID CTA */
.mid-cta {
    background: linear-gradient(135deg, #1a6fb3, #0f4c81);
    color: #fff;
    text-align: center;
}

/* QA QC GRID */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    align-items: center;
}

.qa-image img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s ease;
}

.qa-image img:hover {
    transform: scale(1.05);
}

.styled-list {
    list-style: none;
}

.styled-list li {
    margin-bottom: 15px;
    padding: 15px 20px;
    background: #fff;
    border-left: 5px solid #1a6fb3;
    border-radius: 6px;
    transition: 0.3s ease;
}

.styled-list li:hover {
    transform: translateX(8px);
    background: #eef6fc;
}

/* FINAL CTA */
.quality-cta {
    background: #0f4c81;
    color: #fff;
    text-align: center;
}

/* RESPONSIVE */
@media(max-width:768px){
    .quality-hero h1 {
        font-size: 32px;
    }
}/* End custom CSS */