
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(35, 46, 60, 0.8), rgba(35, 46, 60, 0.8)), url('../img/service/frontend/service_hero.jpg') no-repeat center center/cover;
            padding: 120px 0 80px;
            color: var(--white);
            text-align: center;
        }
        
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }
        
        .breadcrumb-item a {
            color: var(--sky-blue);
        }
        
        .breadcrumb-item.active {
            color: var(--white);
        }
        
        .breadcrumb-item+.breadcrumb-item::before {
            color: var(--white);
        }
        
        /* Section Padding */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background-color: var(--deep-blue);
            margin-top: 15px;
        }
        
        /* Services Section */
        .service-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-icon {
            font-size: 2.5rem;
            color: var(--deep-blue);
            margin-bottom: 15px;
        }
        
        /* Service Detail Modal */
        .modal-content {
            border-radius: 15px;
            overflow: hidden;
        }
        
        .modal-header {
            background-color: var(--dark-navy);
            color: var(--white);
            border-bottom: none;
        }
        
        .btn-close {
            filter: invert(1);
        }

        /* Service Modal Layout */
        @media (min-width: 992px) {
            #serviceDetailModal .modal-body {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                align-items: start;
            }
            
            #serviceDetailModal .modal-body img {
                order: 1; /* Image on the left */
                margin-bottom: 0;
            }
            
            #serviceDetailModal .modal-content-container {
                order: 2; /* Content on the right */
            }
            
            #serviceDetailModal .modal-body > img {
                grid-column: 1;
            }
            
            #serviceDetailModal .modal-body .modal-content-container {
                grid-column: 2;
            }
        }
        
        /* Process Section */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: var(--white);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            width: 50px;
            height: 50px;
            background: var(--deep-blue);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(35, 46, 60, 0.9), rgba(35, 46, 60, 0.9)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') no-repeat center center/cover;
            color: var(--white);
            text-align: center;
        }
        
        .btn-primary {
            background-color: var(--deep-blue);
            border-color: var(--deep-blue);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--sky-blue);
            border-color: var(--sky-blue);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .btn-outline-light {
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-light:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* FAQ Section */
        .accordion-button:not(.collapsed) {
            background-color: var(--deep-blue);
            color: var(--white);
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--sky-blue);
        }
        
        .accordion-item {
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.125);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-header h1 {
                font-size: 2.5rem;
            }
            
            .navbar-collapse {
                background-color: var(--dark-navy);
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
        }
        
        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .page-header {
                padding: 100px 0 60px;
            }
            
            .page-header h1 {
                font-size: 1.8rem;
            }
            
            .btn-primary, .btn-outline-light {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        /* Add to your services.css */
        .section-highlight {
            animation: highlightFade 2s ease;
        }

        @keyframes highlightFade {
            0% {
                background-color: rgba(95, 175, 222, 0.1);
            }
            100% {
                background-color: transparent;
            }
        }