
/* Company Overview Page Styles */
.company-overview {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.overview-header {
    margin-bottom: 20px;
}

.overview-header h2 {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: #333;
}

.overview-gallery {
    margin-bottom: 30px;
}

.gallery-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.meta-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    font-size: 14px;
    color: #999;
}

.meta-icon svg {
    margin-right: 4px;
}

.gallery-swiper-wrapper {
    position: relative;
    padding: 0 40px; /* Space for arrows */
}

.gallery-swiper {
    overflow: hidden;
}

.gallery-swiper .swiper-slide {
    height: auto;
}

.media-item {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.media-item video,
.media-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-prev, .gallery-next {
    width: 30px;
    height: 44px;
    margin-top: -22px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.gallery-prev {
    left: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23cccccc'%2F%3E%3C%2Fsvg%3E");
}

.gallery-next {
    right: 0;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23cccccc'%2F%3E%3C%2Fsvg%3E");
}

.info-header {
    margin-bottom: 20px;
}

.info-header h3 {
    font-size: 16px;
    font-weight: normal;
    color: #666;
    margin: 0;
}

.info-body {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.info-left {
    width: 60%;
    padding-right: 40px;
    box-sizing: border-box;
}

.info-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

.info-right {
    width: 40%;
}

.info-metrics {
    background: #fff;
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.m-label {
    color: #666;
}

.m-value {
    color: #333;
    font-weight: 500;
}

.info-table-wrapper {
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table td {
    padding: 12px 15px;
    border: 1px solid #eee;
    font-size: 14px;
    vertical-align: top;
}

.t-label {
    background: #f9f9f9;
    color: #666;
    width: 15%;
    white-space: nowrap;
}

.t-value {
    background: #fff;
    color: #333;
    width: 35%;
}

@media (max-width: 992px) {
    .info-body {
        flex-direction: column;
    }
    .info-left, .info-right {
        width: 100%;
        padding: 0;
    }
    .info-left {
        margin-bottom: 20px;
    }
    .gallery-swiper-wrapper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .info-table td {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .t-label {
        background: #f5f5f5;
        font-weight: bold;
    }
}