/* Page-specific styles */
        .hero-section {
            background-image: url('../imgs/Integration.jpg');
        }

        /* InterSystems Technology Images Styling */
        .intersystems-logos {
            border-radius: 15px;
            padding: 1.5rem 1rem;
            padding-bottom: 1.5rem;
            margin-top: 2rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .intersystems-logos .row {
            justify-content: center;
        }

        .intersystems-logos .logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .intersystems-logos img {
            max-height: 60px;
            width: auto;        border-radius: 8px;
            background: rgba(255, 255, 255, 0.9);
            padding: 0.5rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .intersystems-logos .logo-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.85rem;
            font-weight: 500;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Mobile responsive styles for InterSystems logos */
        @media (max-width: 768px) {
            .intersystems-logos {
                padding: 1rem 0.5rem;
                margin-top: 1.5rem;
            }
            
            .intersystems-logos .row {
                margin: 0 -10px;
            }
            
            .intersystems-logos .col-md-4 {
                padding: 0 10px;
                margin-bottom: 0.5rem;
            }
            
            .intersystems-logos img {
                max-height: 50px;
                margin-bottom: 0.5rem;
            }
        }

        @media (max-width: 576px) {
            .intersystems-logos {
                padding: 1rem 0.25rem;
            }
            
            .intersystems-logos .row {
                margin: 0 -8px;
            }
            
            .intersystems-logos .col-md-4 {
                padding: 0 8px;
                margin-bottom: 2rem;
            }
            
            .intersystems-logos img {
                max-height: 45px;
                padding: 0.4rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }
        }
          /* Intersystems expertise section matching features-section background */
        .intersystems-expertise {
            padding-top: 5rem;
            padding-bottom: 1rem;
            background-color: #f8f9fa; /* Same background as features-section */
            position: relative;
            color: white;
        }

        @keyframes sparkle {
            0% { transform: translateX(0); }
            100% { transform: translateX(200px); }
        }

        /* Content positioning with gradient background and sparkling effects */
        .intersystems-expertise .container {
            background: linear-gradient(135deg, #013042 0%, #1a4d5c 25%, #2a6d7c 50%, #3a8d9c 75%, #4aadbc 100%);
            border-radius: 10px; /* Add rounded corners like feature-cards */
            padding: 3rem 2rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            z-index: 2;
        }

        /* Animated sparkling background on container */
        .intersystems-expertise .container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.3), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.2), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.4), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.3), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.2), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            animation: sparkle 8s linear infinite;
            pointer-events: none;
            z-index: 1;
            border-radius: 10px; /* Match container border radius */
        }

        /* Additional sparkling layer on container */
        .intersystems-expertise .container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(1px 1px at 50px 20px, rgba(255,255,255,0.2), transparent),
                radial-gradient(2px 2px at 110px 60px, rgba(255,255,255,0.3), transparent),
                radial-gradient(1px 1px at 170px 90px, rgba(255,255,255,0.2), transparent),
                radial-gradient(2px 2px at 210px 40px, rgba(255,255,255,0.3), transparent);
            background-repeat: repeat;
            background-size: 250px 120px;
            animation: sparkle 12s linear infinite reverse;
            pointer-events: none;
            z-index: 1;
            border-radius: 10px; /* Match container border radius */
        }

        /* Ensure content appears above sparkling effects */
        .intersystems-expertise .container > * {
            position: relative;
            z-index: 3;
        }        .intersystems-expertise h2 {
            font-weight: 700;
            font-size: 2.5rem;
            text-shadow: 2px 2px 6px rgba(0,0,0,0.4);
            margin-bottom: 2rem;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }

        .intersystems-expertise p.lead {
            font-size: 1.4rem;
            font-weight: 400;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 1.5rem;
            line-height: 1.4;
            letter-spacing: 0.3px;
            color: rgba(255,255,255,0.95);
        }

        .intersystems-expertise p:not(.lead) {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 0;
        }

        .intersystems-expertise .btn-link {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            border-bottom: 2px solid rgba(255,255,255,0.3);
            padding-bottom: 2px;
            margin: 0 4px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .intersystems-expertise .btn-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #4aadbc, #ffffff);
            transition: width 0.3s ease;
        }

        .intersystems-expertise .btn-link:hover {
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255,255,255,0.6);
            transform: translateY(-1px);
            border-bottom-color: transparent;
        }

        .intersystems-expertise .btn-link:hover::before {
            width: 100%;
        }/* Removed floating animation from the entire section */        /* Enhanced mobile responsiveness */
        @media (max-width: 768px) {
            .intersystems-expertise h2 {
                font-size: 2rem;
                margin-bottom: 1.5rem;
                letter-spacing: -0.3px;
            }
            
            .intersystems-expertise p.lead {
                font-size: 1.2rem;
                line-height: 1.3;
                margin-bottom: 1.2rem;
            }

            .intersystems-expertise p:not(.lead) {
                font-size: 1rem;
                line-height: 1.5;
            }

            .intersystems-expertise .btn-link {
                font-size: 1rem;
                display: block;
                margin: 8px auto;
                text-align: center;
                max-width: 280px;
            }
        }
