/* R&D Operations Section */
.rnd-operations-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fbfd 100%);
}

.section-title {
    font-size: 2.2rem;
    color: #002b5c;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #4a5d75;
    margin-bottom: 25px;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: #0066cc;
    margin: 0 auto;
}

/* Facility Cards */
.facility-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.facility-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.facility-card:hover .facility-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,43,92,0.1) 0%, rgba(0,43,92,0.4) 100%);
}

.facility-content {
    padding: 20px;
}

.facility-content h3 {
    color: #002b5c;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.facility-content p {
    color: #4a5d75;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* R&D Team Section */
.rnd-team-section {
    background: #f8fafc;
    border-top: 1px solid #eaeff5;
    border-bottom: 1px solid #eaeff5;
}

.department-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    margin-bottom: 25px;
}

.department-card:hover {
    transform: translateY(-5px);
}

.department-icon {
    height: 180px;
    overflow: hidden;
    border-bottom: 3px solid #0066cc;
}

.department-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.department-card:hover .department-icon img {
    transform: scale(1.05);
}

.department-content {
    padding: 20px;
}

.department-content h3 {
    color: #002b5c;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-align: center;
}

.department-skills {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.department-skills li {
    color: #4a5d75;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.department-skills li:before {
    content: "→";
    color: #0066cc;
    position: absolute;
    left: 0;
}

.support-text {
    color: #4a5d75;
    font-size: 1.05rem;
    line-height: 1.6;
    position: relative;
    padding-top: 20px;
}

.support-text:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: #0066cc;
}
















.testing-capabilities-section {
    background: #f8fafc;
}

.section-title {
    font-size: 2rem;
    color: #002b5c;
}

.section-subtitle {
    color: #4a5d75;
    font-size: 1.1rem;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: #0066cc;
    margin: 15px auto;
}

.rounded {
    border-radius: 8px !important;
}

.shadow {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
}








/* Tool Development Section */
.tool-development-section {
    background: #ffffff;
    border-top: 1px solid #eaeff5;
    display: flex;
    flex-wrap: wrap;
}

/* Tool Cards */
.tool-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
}

.tool-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    /* padding: 15px; */
    background: #f8f9fa;
}

.tool-content {
    padding: 20px;
}

.tool-specs {
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.tool-features {
    padding-left: 20px;
}

.tool-features li {
    margin-bottom: 8px;
    position: relative;
}

.tool-features li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    display: inline-block; 
    width: 1em;
    margin-left: -1em;
}














/* MFL Specifications Section */
.mfl-specs-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fbfd 100%);
    border-top: 1px solid #e0e6ed;
}

.specs-table-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #eaeff5;
    transition: background 0.2s;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table tr:hover {
    background: #f5f9ff;
}

.spec-name {
    padding: 16px 20px;
    font-weight: 600;
    color: #002b5c;
    width: 35%;
    border-right: 1px solid #eaeff5;
}

.spec-value {
    padding: 16px 20px;
    color: #4a5d75;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.spec-icon {
    width: 50px;
    text-align: center;
    color: #0066cc;
    font-size: 1.1rem;
}

/* Font Awesome Icons (if not already loaded) */







/* Operational Capability Section */
.operational-capability-section {
    background: linear-gradient(to bottom, #f8fafc 0%, #eef2f7 100%);
}

.capability-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s;
}

.capability-card:hover {
    transform: translateY(-5px);
}

.capability-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.capability-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.capability-card:hover .capability-img-container img {
    transform: scale(1.05);
}

.process-step {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.capability-content {
    padding: 20px;
}

.capability-content h3 {
    color: #002b5c;
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeff5;
}

.capability-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.capability-features li {
    padding: 8px 0;
    color: #4a5d75;
    position: relative;
    padding-left: 25px;
}

.capability-features li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.performance-metrics {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.metric-item {
    text-align: center;
    padding: 0 15px;
}

.metric-value {
    color: #0066cc;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.metric-label {
    color: #4a5d75;
    font-size: 0.9rem;
    margin-top: 5px;
    font-weight: 500;
}


/* Operational Excellence Section Styles */
.operational-excellence-section {
    background-color: #f8f9fa;
}

.flowchart-container {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.flowchart-image {
    max-height: 600px;
    width: auto;
    border: 1px solid #eee;
}

.image-caption {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}








.test-image-container {
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
}

.test-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.test-image-container:hover img {
    transform: scale(1.03);
}

.test-caption h4 {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.test-caption p {
    color: #666;
    font-size: 0.95rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}