/* Section Styling */
.caliper-solution-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fbfd 100%);
}

/* Layout Structure */
.caliper-content-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.caliper-text-col {
    flex: 1;
    min-width: 0;
}

.caliper-visual-col {
    flex: 1;
    min-width: 0;
}

/* Tool Image Container */
.tool-image-container {
    margin: 0 0 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 43, 92, 0.1);
}

.tool-main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.tool-image-container:hover .tool-main-image {
    transform: scale(1.02);
}

.image-caption {
    padding: 12px 20px;
    background: #002b5c;
    color: white;
    font-size: 0.9rem;
    text-align: center;
}

/* Typography */
.caliper-main-title {
    font-size: 2.2rem;
    color: #002b5c;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.caliper-subtitle {
    font-size: 1.1rem;
    color: #4a5d75;
    margin-bottom: 30px;
}

/* Technical Highlights */
.technical-highlights {
    background: #ffffff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0, 43, 92, 0.08);
    border: 1px solid #e0e6ed;
    margin-top: 30px;
}

.highlights-title {
    font-size: 1.2rem;
    color: #002b5c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e6ed;
}

.highlight-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-items li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f4f9;
}

.highlight-items li:last-child {
    border-bottom: none;
}

.highlight-label {
    font-weight: 600;
    color: #002b5c;
}

.highlight-value {
    color: #4a5d75;
}

/* Defect Grid */
.defect-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.defect-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 43, 92, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.defect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 43, 92, 0.15);
}

.defect-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.defect-content {
    padding: 20px;
}

.defect-content h3 {
    color: #002b5c;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.defect-content p {
    color: #4a5d75;
    line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .caliper-content-row {
        flex-direction: column;
    }
    
    .tool-image-container {
        max-width: 600px;
        margin: 0 auto 30px;
    }
}




/* Section Styling */
.mfl-solution-section {
    margin-top: 50px;
    padding: 80px 0;
    background: #f9fbfd;
}

.gradient-divider {
    height: 60px;
    background: linear-gradient(to bottom, 
        rgb(6, 127, 249) 0%, 
        rgb(7, 117, 226) 50%, 
        rgb(222, 18, 18) 100%);
}

/* Hero Section */
.mfl-hero-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.mfl-hero-content {
    flex: 1;
}

.mfl-hero-image {
    flex: 1;
}

.mfl-main-title {
    font-size: 2.5rem;
    color: #002b5c;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.mfl-subtitle {
    font-size: 1.2rem;
    color: #4a5d75;
    margin-bottom: 30px;
    max-width: 80%;
}

.mfl-key-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #002b5c;
}

.benefit-item i {
    color: #0066cc;
    font-size: 1.5rem;
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 43, 92, 0.15);
}

/* Technology Section */
.section-title {
    text-align: center;
    font-size: 2rem;
    color: #002b5c;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0066cc;
    margin: 15px auto 0;
}

.tech-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 60px 0;
}

.tech-step {
    flex: 1;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 43, 92, 0.1);
    transition: transform 0.3s;
}

.tech-step:hover {
    transform: translateY(-10px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

.tech-step h3 {
    color: #002b5c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-step p {
    color: #4a5d75;
    line-height: 1.6;
}

/* Applications */
.app-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.app-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 43, 92, 0.1);
    transition: all 0.3s;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 43, 92, 0.2);
}

.app-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.app-content {
    padding: 25px;
}

.app-content h3 {
    color: #002b5c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.app-content ul {
    list-style: none;
    padding-left: 0;
}

.app-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #4a5d75;
}

.app-content li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Specifications */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.spec-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 43, 92, 0.1);
}

.spec-card h3 {
    color: #002b5c;
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
    border-bottom: 1px solid #e0e6ed;
    padding-bottom: 15px;
}

.spec-card table {
    width: 100%;
    border-collapse: collapse;
}

.spec-card tr {
    border-bottom: 1px solid #f0f4f9;
}

.spec-card tr:last-child {
    border-bottom: none;
}

.spec-card td {
    padding: 12px 0;
    color: #4a5d75;
}

.spec-card td:first-child {
    font-weight: 600;
    color: #002b5c;
}

/* Responsive */
@media (max-width: 992px) {
    .mfl-hero-row {
        flex-direction: column;
    }
    
    .tech-steps {
        flex-direction: column;
    }
    
    .mfl-subtitle {
        max-width: 100%;
    }
}















/* Section Styling */
.unpiggable-solution-section {
    padding: 80px 0;
    background: #f9fbfd;
    margin-top: 50px;
}

/* Hero Banner */
.unpiggable-hero {
    position: relative;
    margin-bottom: 60px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px;
    max-width: 60%;
    color: white;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.853);
    border-radius: 10px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Challenge & Solution */
.challenge-solution {
    background: white;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 5px 30px rgba(0,43,92,0.08);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #002b5c;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #0066cc;
    margin: 15px auto 0;
}

.cs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.challenge-card, .solution-card {
    padding: 30px;
    border-radius: 8px;
}

.challenge-card {
    background: #fff5f5;
    border-left: 4px solid #ff6b6b;
}

.solution-card {
    background: #f0f9ff;
    border-left: 4px solid #0066cc;
}

.challenge-card h3, .solution-card h3 {
    color: #002b5c;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.challenge-card ul, .solution-card ul {
    list-style: none;
    padding-left: 0;
}

.challenge-card li, .solution-card li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #4a5d75;
}

.challenge-card li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
}

.solution-card li:before {
    content: "✓";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Technology Showcase */
.tech-showcase {
    margin-bottom: 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,43,92,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,43,92,0.2);
}

.tech-image {
    height: 200px;
    overflow: hidden;
}

.tech-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.tech-card:hover .tech-image img {
    transform: scale(1.05);
}

.tech-content {
    padding: 25px;
}

.tech-content h3 {
    color: #002b5c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.tech-content ul {
    list-style: none;
    padding-left: 0;
}

.tech-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #4a5d75;
}

.tech-content li:before {
    content: "•";
    color: #0066cc;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Case Study */
.case-study {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
    box-shadow: 0 5px 30px rgba(0,43,92,0.1);
}

.case-image {
    flex: 1;
    min-height: 400px;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-content {
    flex: 1;
    padding: 50px;
}

.case-content h2 {
    color: #002b5c;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.detail-item {
    margin-bottom: 25px;
}

.detail-item h4 {
    color: #0066cc;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.detail-item p {
    color: #4a5d75;
    line-height: 1.6;
}

/* Methodology */
.method-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,43,92,0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #0066cc;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    color: #002b5c;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.step p {
    color: #4a5d75;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        padding: 40px 20px;
    }
    
    .cs-grid {
        grid-template-columns: 1fr;
    }
    
    .case-study {
        flex-direction: column;
    }
    
    .case-image {
        min-height: 300px;
    }
}
