
        /* Base styles */
        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        
        
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .pc-btn-new {
            display: inline-block;
            font-weight: 500;
            text-align: center;
            vertical-align: middle;
            cursor: pointer;
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            line-height: 1.5;
            border-radius: 0.25rem;
            transition: all 0.15s ease-in-out;
            text-decoration: none;
            margin: 0.5rem;
        }
        
        .pc-btn-primary-new {
            color: #333;
            background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
            border-color: #ffeb3b;
        }
        
        .pc-btn-primary-new:hover {
            background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
            border-color: #fdd835;
        }
        
        .pc-btn-secondary-new {
            color: #fff;
            background-color: #198754;
            border-color: #198754;
        }
        
        .pc-btn-secondary-new:hover {
            background-color: #157347;
            border-color: #146c43;
        }
        
        .pc-btn-call-new {
            color: #333;
            background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
            border-color: #ffeb3b;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pc-btn-call-new:hover {
            background: linear-gradient(135deg, #ffeb3b 0%, #fdd835 100%);
            border-color: #fdd835;
        }
        
        .call-icon {
            margin-right: 8px;
        }
        
.pc-header-new {
    background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
    color: #333;
    text-align: center;
    min-height: 240px; /* reserved height */
    padding: 3rem 0;
    box-sizing: border-box;
}

.pc-header-new img {  /* logo or any images in header */
    width: 180px;
    height: auto;
    display: block;
    margin: 0 auto;
}
        
        /* Service icon */
        .pc-service-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            text-align: center;
            border-radius: 50%;
            background-color: #e9ecef;
            color: #0d6efd;
        }
        
        /* Custom styles */
        .pc-bg-primary-subtle {
            background: linear-gradient(135deg, #fff9c4 0%, #ffeb3b 100%);
        }
        
        .pc-text-primary-subtle {
            color: #333;
        }
        
        /* Hover shadow utility */
        .pc-hover-shadow-lg {
            transition: box-shadow 0.3s ease;
        }
        
        .pc-hover-shadow-lg:hover {
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
        }
        
        /* Text utilities */
        .pc-fw-medium {
            font-weight: 500;
        }
        
        /* Card styles */
        .pc-card {
            border: none;
            border-radius: 0.375rem;
            box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pc-card:hover {
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }
        
        .pc-card-body {
            padding: 1.5rem;
        }
        
        /* Container and row styles */
        .pc-container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
            max-width: 1140px;
        }
        
        .pc-row {
            display: flex;
            flex-wrap: wrap;
            margin-right: -15px;
            margin-left: -15px;
        }
        
        .pc-col {
            position: relative;
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
        }
        
        /* Responsive columns */
        @media (min-width: 768px) {
            .pc-col-md-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
            
            .pc-col-md-6 {
                flex: 0 0 50%;
                max-width: 50%;
            }
            
            .pc-col-md-8 {
                flex: 0 0 66.666667%;
                max-width: 66.666667%;
            }
        }
        
        @media (min-width: 992px) {
            .pc-col-lg-4 {
                flex: 0 0 33.333333%;
                max-width: 33.333333%;
            }
        }
        
        /* Text utilities */
        .pc-text-center {
            text-align: center;
        }
        
        .pc-text-primary {
            color: #0d6efd;
        }
        
        .pc-text-secondary {
            color: #6c757d;
        }
        
        .pc-text-white {
            color: #fff;
        }
        
        .pc-fw-bold {
            font-weight: 700;
        }
        
        .pc-mb-1 {
            margin-bottom: 0.25rem;
        }
        
        .pc-mb-2 {
            margin-bottom: 0.5rem;
        }
        
        .pc-mb-3 {
            margin-bottom: 1rem;
        }
        
        .pc-mb-4 {
            margin-bottom: 1.5rem;
        }
        
        .pc-mb-5 {
            margin-bottom: 3rem;
        }
        
        .pc-mt-2 {
            margin-top: 0.5rem;
        }
        
        .pc-mt-3 {
            margin-top: 1rem;
        }
        
        .pc-mt-4 {
            margin-top: 1.5rem;
        }
        
        .pc-mt-5 {
            margin-top: 3rem;
        }
        
        .pc-ms-1 {
            margin-left: 0.25rem;
        }
        
        .pc-ms-2 {
            margin-left: 0.5rem;
        }
        
        .pc-ms-3 {
            margin-left: 1rem;
        }
        
        .pc-me-2 {
            margin-right: 0.5rem;
        }
        
        .pc-me-3 {
            margin-right: 1rem;
        }
        
        .pc-p-2 {
            padding: 0.5rem;
        }
        
        .pc-p-4 {
            padding: 1.5rem;
        }
        
        .pc-py-5 {
            padding-top: 3rem;
            padding-bottom: 3rem;
        }
        
        .pc-bg-light {
            background-color: #f8f9fa;
        }
        
        .pc-bg-white {
            background-color: #fff;
        }
        
        .pc-section {
            padding: 5rem 0;
        }
        
        .pc-section-alt {
            background-color: #f8f9fa;
            padding: 5rem 0;
        }
        
        /* Service icon SVGs */
        .service-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 1rem;
        }
        
        /* Featured image */
        .pc-featured-image {
            margin-bottom: 2rem;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }
        
        .pc-featured-image img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 0;
            box-shadow: none;
        }
        
        /* Icon colors */
        .icon-primary { color: #0d6efd; }
        .icon-success { color: #198754; }
        .icon-warning { color: #ffc107; }
        .icon-danger { color: #dc3545; }
        .icon-info { color: #0dcaf0; }
        .icon-purple { color: #6f42c1; }
        .icon-pink { color: #d63384; }
        .icon-orange { color: #fd7e14; }
        .icon-teal { color: #20c997; }
        
        /* Service icon backgrounds */
        .icon-bg-primary { background-color: #cfe2ff; }
        .icon-bg-success { background-color: #d1e7dd; }
        .icon-bg-warning { background-color: #fff3cd; }
        .icon-bg-danger { background-color: #f8d7da; }
        .icon-bg-info { background-color: #cff4fc; }
        .icon-bg-purple { background-color: #e2d9f3; }
        .icon-bg-pink { background-color: #f7d6e6; }
        .icon-bg-orange { background-color: #ffe5d0; }
        .icon-bg-teal { background-color: #d2f4ea; }
        
        /* Image gallery */
        .pc-image-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 2rem;
        }
        
        .pc-image-gallery img {
            flex: 1;
            min-width: 300px;
            object-fit: cover;
            height: 250px;
        }
        
        /* Call icon color update */
        .call-icon path {
            stroke: #333;
        }
        
        /* CTA section background */
        .cta-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            padding: 5rem 0;
        }
        
        /* CTA text color for blue background */
        .cta-text-white {
            color: #ffffff;
        }
        
        /* Scroll animation styles */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Staggered animations */
        .stagger-item {
            opacity: 0;
            transform: translateY(30px);
        }
        
        /* Introduction section special cover */
        .intro-cover {
            position: relative;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
            border-radius: 12px;
            padding: 3rem;
            margin-top: -50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            overflow: hidden;
        }
        
        .intro-cover::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: linear-gradient(90deg, #1e3c72, #2a5298);
        }
        
        .intro-cover::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 150px;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231e3c72' stroke-width='0.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z'/%3E%3Cpath d='M2 17L12 22L22 17'/%3E%3Cpath d='M2 12L12 17L22 12'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }
        
        .intro-content {
            position: relative;
            z-index: 1;
        }

