/* Common Styling for Standards Page */
.contact-mew-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 40px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #0796fe;
}

.contact-mew-section h3 {
    color: #0796fe;
    font-weight: 600;
}

.contact-mew-section .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-mew-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(7, 150, 254, 0.3) !important;
}

/* Image styling in accordions */
.industries-accordion .card-body img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.industries-accordion .card-body img:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .industries-accordion .card-body .col-lg-4 {
        margin-top: 20px;
    }
}

/* Standards Logo Carousel Styling */
.standards-logos {
    padding: 20px 0;
    margin-top: 20px;
}

.partner-item {
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 180px;
    background-color: white;
    border-radius: 0;
    margin: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.partner-item img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

.partners-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 110%;
    left: -5%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.partners-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    background: #f1f1f1 !important;
    color: #333 !important;
    border-radius: 0;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: auto;
}

.partners-carousel .owl-nav button:hover {
    background: #e0e0e0 !important;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .partner-item {
        height: 150px;
        padding: 15px;
        margin: 8px;
    }
    
    .partner-item img {
        max-height: 120px;
    }
}