   /* Custom Styles */
        .slide {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }
        .slide.active {
            display: block;
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        /* Pulse animation for mobile FAB */
        @keyframes pulse-ring {
            0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(138, 32, 97, 0.7); }
            70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(138, 32, 97, 0); }
            100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(138, 32, 97, 0); }
        }
        .fab-pulse {
            animation: pulse-ring 2s infinite;
        }

        /* Smooth height transition for FAQ */
        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
            opacity: 0;
        }
        .faq-item.active .faq-content {
            opacity: 1;
        }
        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        .nav-logo {
            max-height: 50px;
        }
        .footer-logo {
            max-height: 50px;
        }

        /* =========================================
           MODERN DESIGN STYLES
        ========================================= */

        /* Section Backgrounds */
        .section-bg-pattern {
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(0, 122, 170, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 122, 170, 0.03) 0%, transparent 50%);
        }

        .section-divider {
            position: relative;
            overflow: hidden;
        }
        .section-divider::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(0, 122, 170, 0.2), transparent);
        }

        /* Glass Effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Modern Card Shadows */
        .card-shadow {
            box-shadow: 0 4px 20px -2px rgba(0, 122, 170, 0.1);
            transition: all 0.3s ease;
        }
        .card-shadow:hover {
            box-shadow: 0 20px 40px -8px rgba(0, 122, 170, 0.2);
            transform: translateY(-4px);
        }

        /* Stat Card Styling */
        .stat-card {
            background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
            border-left: 4px solid #007caa;
            transition: all 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px -6px rgba(0, 122, 170, 0.2);
            border-left-color: #0e7490;
        }

        /* Modern Buttons */
        .btn-primary {
            background: linear-gradient(135deg, #007caa 0%, #0e7490 100%);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        .btn-primary:hover::before {
            left: 100%;
        }
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -4px rgba(0, 122, 170, 0.4);
        }

        .btn-outline {
            border: 2px solid #007caa;
            background: transparent;
            transition: all 0.3s ease;
        }
        .btn-outline:hover {
            background: #007caa;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px -4px rgba(0, 122, 170, 0.3);
        }

        /* Image Hover Effects */
        .img-zoom-container {
            overflow: hidden;
        }
        .img-zoom-container img {
            transition: transform 0.6s ease;
        }
        .img-zoom-container:hover img {
            transform: scale(1.08);
        }

        /* Floating Card Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .float-animation {
            animation: float 6s ease-in-out infinite;
        }

        /* Scroll Reveal Animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }
        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }
        .reveal-left.active {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s ease;
        }
        .reveal-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Counter Animation */
        .counter {
            transition: all 0.3s ease;
        }

        /* Icon Box Styling */
        .icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #007caa 0%, #0e7490 100%);
            border-radius: 12px;
            color: white;
            font-size: 24px;
        }

        /* Modern Link Arrow Animation */
        .link-arrow {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .link-arrow i {
            transition: transform 0.3s ease;
        }
        .link-arrow:hover i {
            transform: translateX(6px);
        }

        /* Gradient Text */
        .text-gradient {
            background: linear-gradient(135deg, #007caa 0%, #0e7490 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Subtle Background Animation */
        @keyframes subtle-pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 0.8; }
        }
        .bg-animate {
            animation: subtle-pulse 8s ease-in-out infinite;
        }

        /* Card Border Accent */
        .card-accent-top {
            position: relative;
        }
        .card-accent-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #007caa, #0e7490);
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        .card-accent-top:hover::before {
            opacity: 1;
        }

        /* Section Title Styling */
        .section-title {
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #007caa, #0e7490);
            border-radius: 2px;
        }
        .section-title-center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Mobile Menu Enhancements */
        @media (max-width: 1023px) {
            .mobile-menu-active {
                overflow: hidden;
            }
        }

        /* Skeleton Loading */
        .skeleton {
            background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
        }
        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* Focus States */
        .focus-ring:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 122, 170, 0.3);
        }

        /* Testimonial Card */
        .testimonial-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid rgba(0, 122, 170, 0.1);
        }

        /* Hero Section Enhancements */
        .hero-overlay {
            background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,122,170,0.3) 100%);
        }

        /* Navbar Shadow on Scroll */
        .navbar-scroll {
            box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.1);
        }

        /* Decorative Dots Pattern */
        .dots-pattern {
            background-image: radial-gradient(rgba(0, 122, 170, 0.15) 1px, transparent 1px);
            background-size: 24px 24px;
        }

        /* Inner Shadow for Image Container */
        .inner-shadow {
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.15);
        }

        /* =========================================
           MASONRY GALLERY STYLES
        ========================================= */
        
        /* Masonry Grid Container */
        .masonry-grid {
            column-count: 1;
            column-gap: 16px;
        }
        
        @media (min-width: 640px) {
            .masonry-grid {
                column-count: 2;
            }
        }
        
        @media (min-width: 1024px) {
            .masonry-grid {
                column-count: 3;
            }
        }
        
        @media (min-width: 1280px) {
            .masonry-grid {
                column-count: 4;
            }
        }
        
        /* Masonry Item */
        .masonry-item {
            break-inside: avoid;
            margin-bottom: 16px;
        }
        
        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }
        
        .gallery-item img {
            display: block;
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.08);
        }
        
        /* Gallery Overlay */
        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 24px;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay i {
            transform: scale(1);
        }

        /* =========================================
           LIGHTBOX STYLES
        ========================================= */
        
        #lightbox {
            cursor: zoom-out;
        }
        
        #lightbox.active {
            display: flex;
            opacity: 1;
        }
        
        #lightbox img {
            animation: lightboxFadeIn 0.3s ease;
        }
        
        @keyframes lightboxFadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }
        
        /* Lightbox Navigation Buttons */
        #lightbox button {
            transition: all 0.2s ease;
            padding: 12px;
            background: rgba(0, 0, 0, 0.5);
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        #lightbox button:hover {
            background: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        @media (max-width: 640px) {
            #lightbox button {
                padding: 8px;
                width: 40px;
                height: 40px;
            }
            
            #lightbox .max-w-5xl {
                max-width: 95%;
                padding: 0 40px;
            }
        }

        /* =========================================
           DATATABLES CUSTOM STYLING
        ========================================= */
        
        /* Table Container */
        .table-responsive {
            border-radius: 12px;
            overflow: hidden;
        }
        
        /* Custom DataTables Styling */
        #labTestsTable {
            width: 100% !important;
            margin: 0 !important;
            border: none !important;
        }
        
        #labTestsTable thead th {
            background-color: #f8fafc !important;
            color: #374151 !important;
            font-weight: 600 !important;
            padding: 16px !important;
            border-bottom: 2px solid #e5e7eb !important;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 0.5px;
        }
        
        #labTestsTable tbody tr {
            transition: all 0.2s ease;
        }
        
        #labTestsTable tbody tr:hover {
            background-color: #f0f9ff !important;
        }
        
        #labTestsTable tbody td {
            padding: 16px !important;
            vertical-align: middle !important;
            border-bottom: 1px solid #f3f4f6 !important;
            color: #374151;
        }
        
        /* Badge Styling */
        .badge {
            padding: 6px 12px !important;
            font-size: 12px !important;
            font-weight: 500 !important;
            border-radius: 20px !important;
        }
        
        .badge.bg-primary {
            background-color: #007caa !important;
            color: white !important;
        }
        
        .badge.bg-success {
            background-color: #10b981 !important;
            color: white !important;
        }
        
        /* Button Styling */
        #labTestsTable .btn {
            padding: 8px 16px !important;
            font-size: 13px !important;
            font-weight: 500 !important;
            border-radius: 8px !important;
            transition: all 0.2s ease;
        }
        
        #labTestsTable .btn-primary {
            background-color: #007caa !important;
            border-color: #007caa !important;
        }
        
        #labTestsTable .btn-primary:hover {
            background-color: #0e7490 !important;
            border-color: #0e7490 !important;
            transform: translateY(-1px);
        }
        
        /* DataTables Controls */
        .dataTables_wrapper .row {
            margin-top: 20px !important;
        }
        
        .dataTables_wrapper .dataTables_length select {
            border: 1px solid #e5e7eb !important;
            border-radius: 8px !important;
            padding: 8px 32px 8px 12px !important;
        }
        
        .dataTables_wrapper .dataTables_filter input {
            border: 1px solid #e5e7eb !important;
            border-radius: 8px !important;
            padding: 10px 12px !important;
            width: 250px !important;
        }
        
        .dataTables_wrapper .dataTables_filter input:focus {
            outline: none !important;
            border-color: #007caa !important;
            box-shadow: 0 0 0 3px rgba(0, 122, 170, 0.1) !important;
        }
        
        .dataTables_wrapper .dataTables_info {
            color: #6b7280 !important;
            font-size: 14px !important;
        }
        
        .dataTables_wrapper .dataTables_paginate {
            margin-top: 10px !important;
        }
        
        .dataTables_wrapper .dataTables_paginate .paginate_button {
            padding: 8px 14px !important;
            margin: 0 2px !important;
            border: 1px solid #e5e7eb !important;
            border-radius: 6px !important;
            color: #374151 !important;
            background: white !important;
        }
        
        .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
            background: #f3f4f6 !important;
            border-color: #007caa !important;
            color: #007caa !important;
        }
        
        .dataTables_wrapper .dataTables_paginate .paginate_button.current {
            background: #007caa !important;
            border-color: #007caa !important;
            color: white !important;
        }
        
        .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
            background: #0e7490 !important;
            border-color: #0e7490 !important;
            color: white !important;
        }
        
        .dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
            color: #d1d5db !important;
            cursor: not-allowed !important;
        }
        
        /* Price column styling */
        #labTestsTable tbody td:nth-child(3) {
            font-family: 'IBM Plex Sans', sans-serif;
            font-weight: 600;
            color: #111827;
        }

        /* Add to Cart Button */
        .btn-add-to-cart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: linear-gradient(135deg, #007caa 0%, #0e7490 100%);
            color: white;
            border: none;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 122, 170, 0.3);
            white-space: nowrap;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 122, 170, 0.4);
            background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
        }

        .btn-add-to-cart i {
            font-size: 11px;
        }

        .btn-add-to-cart:active {
            transform: translateY(0);
        }

        /* Health Check Table Buttons */
        .health-check-table .btn-add-to-cart {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            background: linear-gradient(135deg, #007caa 0%, #0e7490 100%);
            color: white;
            border: none;
            padding: 8px 14px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 122, 170, 0.3);
            white-space: nowrap;
        }

        .health-check-table .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 122, 170, 0.4);
            background: linear-gradient(135deg, #0e7490 0%, #155e75 100%);
        }

        .health-check-table .btn-add-to-cart i {
            font-size: 11px;
        }

        /* Package Table Styling */
        .health-check-table table td:last-child {
            text-align: center;
        }

        /* =========================================
           RICHTEXT CONTENT STYLING
        ========================================= */
        .richtext-cont {
            color: #475569;
            font-family: 'Roboto', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
        }

        .richtext-cont p {
            margin-bottom: 1rem;
        }

        .richtext-cont p:last-child {
            margin-bottom: 0;
        }

        .richtext-cont strong,
        .richtext-cont b {
            font-weight: 700;
            color: #1e293b;
        }

        .richtext-cont em,
        .richtext-cont i {
            font-style: italic;
        }

        .richtext-cont ul,
        .richtext-cont ol {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .richtext-cont ul {
            list-style-type: disc;
        }

        .richtext-cont ol {
            list-style-type: decimal;
        }

        .richtext-cont li {
            margin-bottom: 0.5rem;
        }

        .richtext-cont h1,
        .richtext-cont h2,
        .richtext-cont h3,
        .richtext-cont h4,
        .richtext-cont h5,
        .richtext-cont h6 {
            font-weight: 700;
            color: #1e293b;
            margin-top: 1.5rem;
            margin-bottom: 0.75rem;
            line-height: 1.3;
        }

        .richtext-cont h1 { font-size: 2rem; }
        .richtext-cont h2 { font-size: 1.75rem; }
        .richtext-cont h3 { font-size: 1.5rem; }
        .richtext-cont h4 { font-size: 1.25rem; }
        .richtext-cont h5 { font-size: 1.125rem; }
        .richtext-cont h6 { font-size: 1rem; }

        .richtext-cont a {
            color: #007caa;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .richtext-cont a:hover {
            color: #0e7490;
        }

        .richtext-cont blockquote {
            border-left: 4px solid #007caa;
            padding-left: 1rem;
            margin: 1.5rem 0;
            font-style: italic;
            color: #64748b;
            background-color: #f8fafc;
            padding: 1rem;
            border-radius: 0.5rem;
        }

        .richtext-cont img {
            max-width: 100%;
            height: auto;
            border-radius: 0.5rem;
            margin: 1rem 0;
        }

        .richtext-cont table {
            width: 100%;
            border-collapse: collapse;
            margin: 1rem 0;
        }

        .richtext-cont table th,
        .richtext-cont table td {
            border: 1px solid #e2e8f0;
            padding: 0.75rem;
            text-align: left;
        }

        .richtext-cont table th {
            background-color: #f8fafc;
            font-weight: 700;
        }

        .richtext-cont hr {
            border: none;
            border-top: 1px solid #e2e8f0;
            margin: 2rem 0;
        }