/* 3D Printing Page Specific Styles */

/* Enhanced Header and Hero Section */
header.masthead {
    padding-top: 12rem;
    padding-bottom: 8rem;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

header.masthead::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

header.masthead::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,200,0,0.15)" stroke-width="2" stroke-dasharray="5,5" /></svg>');
    background-size: 50px 50px;
    opacity: 0.2;
    z-index: 2;
}

header.masthead .content-container {
    position: relative;
    z-index: 3;
}

header.masthead .page-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

header.masthead .lead {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight-badge {
    display: inline-block;
    background-color: rgba(255, 200, 0, 0.9);
    color: #000;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.1s both;
}

header.masthead .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

header.masthead .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

header.masthead .btn-primary {
    background: linear-gradient(45deg, #ffc800, #ffdd57);
    border: none;
}

header.masthead .btn-outline-light {
    border-width: 2px;
}

header.masthead .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

.hero-badges {
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sticky CTA Button Styles */
.sticky-cta {
    position: fixed;
    bottom: -80px;
    right: 30px;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    overflow: hidden;
}

.sticky-cta.visible {
    bottom: 30px;
}

.sticky-cta .btn {
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.05rem;
}

.sticky-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* Enhanced Card Animations */
.benefit-card {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s ease,
                border 0.3s ease;
    border: 1px solid transparent;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 200, 0, 0.3);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ffc800, #ffdd57);
    transform: translateY(-5px);
    transition: transform 0.4s ease;
}

.benefit-card:hover::after {
    transform: translateY(0);
}

.benefit-card img {
    transition: transform 0.6s ease-in-out, filter 0.6s ease;
}

.benefit-card:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.benefit-card-body {
    position: relative;
    z-index: 1;
}

.benefit-card-title {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.benefit-card:hover .benefit-card-title {
    color: #ffc800;
}

.benefit-card-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffc800;
    transition: width 0.3s ease;
}

.benefit-card:hover .benefit-card-title::after {
    width: 100%;
}

/* Enhanced Process Steps */
.process-step {
    position: relative;
    padding-left: 90px;
    margin-bottom: 4rem;
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #ffc800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(255, 200, 0, 0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                background-color 0.3s ease,
                box-shadow 0.4s ease;
    z-index: 2;
}

.process-step:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
    background-color: #ffb400;
    box-shadow: 0 15px 35px rgba(255, 180, 0, 0.3);
}

.step-icon i {
    transition: transform 0.4s ease;
}

.process-step:hover .step-icon i {
    transform: scale(1.1);
}

.step-content {
    position: relative;
    padding: 20px 30px;
    background-color: rgba(248, 249, 250, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border-left: 3px solid transparent;
}

.process-step:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.95);
    border-left: 3px solid #ffc800;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 35px;
    width: 2px;
    height: calc(100% - 50px);
    background: linear-gradient(to bottom, rgba(255, 200, 0, 0.5), rgba(255, 200, 0, 0.1));
    z-index: 1;
}

.process-step:last-child::before {
    display: none;
}

.step-content h3 {
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #343a40;
    transition: color 0.3s ease;
}

.process-step:hover .step-content h3 {
    color: #000;
}

.step-content p {
    color: #6c757d;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.process-step:hover .step-content p {
    color: #495057;
}

/* Enhanced Metric Boxes */
.printing-metrics {
    display: flex;
    flex-wrap: wrap;
    margin: 3rem auto;
    justify-content: center;
    gap: 1.5rem;
}

.metric-box {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease;
    border-top: 4px solid #ffc800;
}

.metric-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #e0b000, #ffc800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.metric-box:hover .metric-number {
    transform: scale(1.05);
}

.metric-text {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s ease;
}

.metric-box:hover .metric-text {
    color: #212529;
}

@media (max-width: 768px) {
    .printing-metrics {
        gap: 1rem;
    }
    
    .metric-box {
        min-width: 220px;
        padding: 2rem 1.5rem;
    }
    
    .metric-number {
        font-size: 3rem;
    }
    
    .metric-text {
        font-size: 1rem;
    }
}

/* Enhance FAQ Accordion Styles */
.accordion-item {
    border: none;
    margin-bottom: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
}

.accordion-button {
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #000;
    background-color: rgba(255, 200, 0, 0.1);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 0, 0.25);
    border-color: #ffc800;
}

.accordion-button::after {
    transition: transform 0.4s ease;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.7;
}

/* Enhance Material Cards */
.card {
    border: none;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s ease,
                background-color 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    background-color: #fffdf5;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #ffc800, #ffdd57);
    transform: translateY(-4px);
    transition: transform 0.4s ease;
}

.card:hover::before {
    transform: translateY(0);
}

/* Hero Section Enhancements */
.hero-badge {
    display: inline-block;
    background-color: rgba(255, 200, 0, 0.1);
    color: var(--primary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 0.7rem;
    margin-bottom: 0.7rem;
    border: 1px solid rgba(255, 200, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: default;
}

.hero-badge:hover {
    background-color: rgba(255, 200, 0, 0.2);
    border-color: rgba(255, 200, 0, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Manufacturing Service Highlight Section */
.bg-light.p-4.p-lg-5 {
    border-radius: 15px;
    background: linear-gradient(145deg, #ffffff, #f8f9fa) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid #ffc800;
    position: relative;
    overflow: hidden;
}

.bg-light.p-4.p-lg-5:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.bg-light.p-4.p-lg-5::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.bg-light.p-4.p-lg-5 .lead.text-primary {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.bg-light.p-4.p-lg-5 .lead.text-primary::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffc800;
    border-radius: 2px;
}

.bg-light.p-4.p-lg-5 .list-unstyled li {
    transition: transform 0.3s ease;
    padding: 5px 0;
}

.bg-light.p-4.p-lg-5 .list-unstyled li:hover {
    transform: translateX(8px);
}

.bg-light.p-4.p-lg-5 .list-unstyled li strong {
    color: #343a40;
    transition: color 0.3s ease;
}

.bg-light.p-4.p-lg-5 .list-unstyled li:hover strong {
    color: #ffc800;
}

/* Materials Section Enhancements */
.list-unstyled .d-flex {
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.list-unstyled .d-flex:hover {
    transform: translateX(8px);
    background-color: rgba(248, 249, 250, 0.7);
}

.list-unstyled .d-flex .text-primary {
    transition: transform 0.3s ease, color 0.3s ease;
}

.list-unstyled .d-flex:hover .text-primary {
    transform: scale(1.2);
    color: #ffc800;
}

.list-unstyled .d-flex strong {
    transition: color 0.3s ease;
    font-weight: 600;
    font-size: 1.05rem;
}

.list-unstyled .d-flex:hover strong {
    color: #000;
}

.list-unstyled .d-flex .text-muted {
    transition: color 0.3s ease;
}

.list-unstyled .d-flex:hover .text-muted {
    color: #495057 !important;
}

/* Partner Section Enhancements */
.d-flex.mb-4 {
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 15px;
    border-radius: 10px;
}

.d-flex.mb-4:hover {
    transform: translateY(-5px);
    background-color: rgba(248, 249, 250, 0.7);
}

.d-flex.mb-4 .text-primary {
    transition: transform 0.4s ease, color 0.3s ease;
}

.d-flex.mb-4:hover .text-primary {
    transform: scale(1.15) rotate(5deg);
    color: #ffc800;
}

.d-flex.mb-4 h4 {
    transition: color 0.3s ease;
    font-weight: 600;
}

.d-flex.mb-4:hover h4 {
    color: #000;
}

/* Related Services Section */
.page-section .card.h-100.shadow-sm {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: none;
    overflow: hidden;
    height: 100%;
}

.page-section .card.h-100.shadow-sm:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.page-section .card.h-100.shadow-sm .text-primary {
    transition: transform 0.4s ease, color 0.3s ease;
}

.page-section .card.h-100.shadow-sm:hover .text-primary {
    transform: scale(1.15) rotate(10deg);
    color: #ffc800;
}

.page-section .card.h-100.shadow-sm .card-title {
    transition: color 0.3s ease;
    font-weight: 600;
}

.page-section .card.h-100.shadow-sm:hover .card-title {
    color: #000;
}

.page-section .card.h-100.shadow-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ffc800;
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.page-section .card.h-100.shadow-sm:hover::before {
    transform: translateY(0);
}

/* Form Enhancements */
.form-control {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid #dee2e6;
}

.form-control:focus {
    border-color: #ffc800;
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 0, 0.25);
    transform: translateY(-2px);
}

.form-select:focus {
    border-color: #ffc800;
    box-shadow: 0 0 0 0.25rem rgba(255, 200, 0, 0.25);
}

.btn-primary {
    background-color: #ffc800;
    border-color: #ffc800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover {
    background-color: #ffb400;
    border-color: #ffb400;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 200, 0, 0.3);
}

.btn-outline-primary {
    color: #ffc800;
    border-color: #ffc800;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-outline-primary:hover {
    background-color: #ffc800;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 200, 0, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-step {
        padding-left: 70px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card-body {
        padding: 1.2rem;
    }
    
    .metric-number {
        font-size: 2.8rem;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .sticky-cta .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .process-step::before {
        left: 30px;
    }
    
    .bg-light.p-4.p-lg-5 {
        padding: 1.5rem !important;
    }
    
    .d-flex.mb-4 {
        padding: 10px;
    }
    
    .list-unstyled .d-flex {
        padding: 8px;
    }
}

/* Improved section headings */
.section-heading {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-light), var(--primary-color), var(--primary-dark));
    border-radius: 2px;
}

.section-subheading {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Custom FAQ styles */
.accordion-item {
    border: none;
    margin-bottom: 1.5rem;
    border-radius: 12px !important;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.accordion-button {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-dark);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 200, 0, 0.25);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.4s ease;
}

.accordion-body {
    padding: 1.5rem;
    background-color: #fff;
    color: var(--medium-dark);
}

.accordion-body ul {
    padding-left: 1.25rem;
}

.accordion-body li {
    margin-bottom: 0.75rem;
}

/* Section title enhancements */
.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    text-transform: uppercase;
    color: #212529;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ffc800, #ffdd57);
    margin: 1rem auto 1.5rem;
    border-radius: 2px;
}

.section-subheading {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #6c757d;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header.masthead {
        padding-top: 10rem;
        padding-bottom: 6rem;
        background-attachment: scroll;
    }
    
    header.masthead .page-heading {
        font-size: 2.5rem;
    }
    
    header.masthead .lead {
        font-size: 1.1rem;
    }
    
    .highlight-badge {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    header.masthead .btn {
        padding: 0.7rem 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .section-subheading {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
}

/* Add staggered animation for benefits cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.benefit-card:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-card:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-card:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Add a printer animation */
@keyframes printing {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.fa-print.fa-stack-1x {
    animation: printing 2s ease-in-out infinite;
}

/* Add pulsing effect to CTA buttons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 200, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 200, 0, 0);
    }
}

.page-section .btn-primary {
    animation: pulse 2s infinite;
}

/* Custom background for 3D printing page */
.bg-printing-pattern {
    background-color: #f8f9fa;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffc800' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Add 3D text effect to headings */
.section-heading {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #ffc800;
}

/* Add subtle animations to service cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-page-masthead .page-heading {
    animation: fadeInUp 1s ease-out;
}

.service-page-masthead .lead {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.service-page-masthead .btn {
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Make sure image placeholders are handled properly */
.benefit-card img {
    background-color: #f0f0f0;
    position: relative;
}

.benefit-card img::before {
    content: '3D Printing Image';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #aaa;
    font-size: 0.8rem;
}

/* Create folder structure for 3D printing images */
/* These need to be created in the assets directory:
   - assets/img/3d-printing-bg.jpg
   - assets/img/3d-printing/shipping-enclosures.jpg
   - assets/img/3d-printing/branded-covers.jpg 
   - assets/img/3d-printing/custom-tooling.jpg
*/ 