/* Service Detail Pages - Additional Styles */
/* Most styles are inherited from style.css (svc-* classes) */

/* Breadcrumb link styling for nested breadcrumbs */
.svc-breadcrumb-unique a + i + a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.svc-breadcrumb-unique a + i + a:hover {
    color: #ffffff;
}

/* Smooth page load animation */
.main-content section {
    opacity: 0;
    transform: translateY(30px);
    animation: svcDetailFadeIn 0.6s ease forwards;
}

.main-content section:nth-child(1) { animation-delay: 0s; }
.main-content section:nth-child(2) { animation-delay: 0.1s; }
.main-content section:nth-child(3) { animation-delay: 0.2s; }
.main-content section:nth-child(4) { animation-delay: 0.3s; }
.main-content section:nth-child(5) { animation-delay: 0.4s; }
.main-content section:nth-child(6) { animation-delay: 0.5s; }
.main-content section:nth-child(7) { animation-delay: 0.6s; }
.main-content section:nth-child(8) { animation-delay: 0.7s; }

@keyframes svcDetailFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
