.spacer-xl {
    padding-block: 60px;
}

.company-details {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #e5e5e5;
}

.company-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Product Card */
.product-card {
    background: #f8f9fc;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
}

.product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.product-card h6 {
    padding: 15px;
    font-weight: 600;
    margin: 0;
}

/* Certifications */
.certification-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cert-item {
    background: #f8f9fc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-item i {
    color: #0d2b6b;
}

.company-hero {
    /* height: 380px; */
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.company-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.company-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.company-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.company-hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin: 15px 0;
}

.company-hero p {
    font-size: 16px;
    opacity: 0.9;
}

.industry-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
}

.hero-meta {
    display: flex;
    gap: 15px 25px;
    margin-top: 20px;
    font-size: 14px;
}

.hero-meta div {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-wrap {
    padding-top: 170px;
}

@media (max-width: 991px) {
    .hero-wrap {
        padding-top: 280px !important;
    }

    .spacer-xl {
        padding-block: 40px;
    }

    .hero-meta {
        display: flex;
        gap: 13px;
        margin-top: 20px;
        font-size: 14px;
    }
}