.slideshow-container {
            width: 80%;
            margin: 20px auto;
            overflow: hidden;
            position: relative;
        }

        .slideshow {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .slideshow img {
            width: 400px;
            height: 300px;
            flex-shrink: 0;
            cursor: pointer;
            margin-right: 10px;
            object-fit: cover;
        }

        .slideshow-preview {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .slideshow-preview img {
            max-width: 90%;
            max-height: 90%;
        }

        .slideshow-preview.active {
            display: flex;
        }

        .close-preview {
            position: absolute;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2em;
            cursor: pointer;
        }

        /* Added for fixed header */
        .fixed-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background-size: cover;
            background-position: center;
            height: 300px; /* Increased initial height for better scaling */
        }

        .content-below-header {
            margin-top: 1rem;
            padding-bottom: 50px;
            min-height: calc(100vh - 300px);
        }

        #dynamic-content {
            padding-top: 20px;
        }

        @media (max-width: 768px) {
            .fixed-header {
                height: 200px;
            }
            .content-below-header {
                margin-top: 1rem;
                min-height: calc(100vh - 200px);
            }
        }

        @media (max-width: 480px) {
            .fixed-header {
                height: 150px;
            }
            .content-below-header {
                margin-top: 1rem;
                min-height: calc(100vh - 150px);
            }
        }

        /* New styles for the services page */
        .service-section {
            padding: 4rem 0;
            text-align: center;
        }

        .service-section h2 {
            font-size: 2.5rem;
            margin-bottom: 2rem;
             margin-top: 10rem;
            color: #004d99;
        }

        .service-section p {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #333;
            max-width: 80%;
            margin: 0 auto;
        }

        .service-list {
            margin-top: 2rem;
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            max-width: 1100px; /* Added max-width */
            margin-left: auto;
            margin-right: auto;
            padding-left: 5%; /* Added padding-left */
            padding-right: 5%; /* Added padding-right */
        }

        .service-list li:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        .service-list li strong {
            display: block;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #333;
        }

        blockquote {
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        blockquote:hover {
            transform: translateY(-0.5rem);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        }

        @media (max-width: 768px) {
            .service-list {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .service-list {
                grid-template-columns: 1fr;
            }
        }

        .service-area-image {
            max-width: 80%;
            border-radius: 0.5rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            margin-bottom: 1rem;
            display: block; /* Ensures the image behaves as a block element */
            margin-left: auto;
            margin-right: auto;
        }

        .service-area-text {
            font-size: 0.9rem; /* Reduced font size */
            line-height: 1.5; /* Adjusted line height to suit smaller text */
            color: #333;
            font-style: italic;
            max-width: 80%;
            margin: 0 auto;
        }

        .contact-us { /* Added class for contact section */
            text-align: center;
        }

        /* New styles for the pattern grid */
        #pattern-container {
            display: grid;
            grid-template-columns: repeat(3, 60px); /* 3x3 grid, 60px cells */
            grid-template-rows: repeat(3, 60px);
            gap: 12px; /* Space between cells */
            margin: 20px auto; /* Center the grid */
            border: 2px solid #4a5568; /* Tailwind gray-700 border */
            padding: 12px;
            border-radius: 0.75rem; /* Rounded corners */
            cursor: pointer;
            display: none; /* Initially hidden */
             position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: #fff;
            z-index: 1000;
             perspective: 800px; /* Add perspective for 3D effect */
        }

        #pattern-container div {
            width: 60px;
            height: 60px;
            border-radius: 50%; /* Make cells circles */
            background-color: #cbd5e0; /* Tailwind gray-400 background */
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #718096; /* Tailwind gray-600 border */
            transition: transform 0.3s ease; /* Smooth transition for effects */
             box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add shadow */
        }

        #pattern-container div:hover {
             transform: scale(1.1); /* Enlarge on hover */
             box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        #pattern-container div.selected {
            background-color: #f56565; /* Tailwind red-500 background for selected */
            border-color: #c53030; /* Tailwind red-700 border */
            animation: pulse 0.5s infinite;
        }
         #pattern-container div.selected:active {
             transform: scale(0.9); /* Simulate button press */
             animation: none;
         }

        #pattern-container div.correct {
            background-color: #48bb78; /* Tailwind green-500 for correct */
            border-color: #38a169;
            animation: tada 1s ease-in-out;
        }

        .pattern-text {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #333;
        }
        .pattern-text {
            text-align: center;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            color: #333;
        }

        #pattern-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 999;
            backdrop-filter: blur(5px);
        }
        #pattern-modal-overlay.show{
            display: block;
        }

        .swiped {
            background-color: #f56565; /* Tailwind red-500 background for selected */
            border-color: #c53030; /* Tailwind red-700 border */
        }
        .explosion {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: #f56565;
            border-radius: 50%;
            animation: explode 0.5s ease-out, fadeOut 0.5s ease-out 0.5s;
            z-index: 1001;
        }
        @keyframes explode {
            0% {
                transform: translate(0, 0) scale(1);
            }
            100% {
                transform: translate(
                    (random(-100, 100))px,
                    (random(-100, 100))px
                )
                scale(10);
            }
        }
        @keyframes fadeOut {
            from {
                opacity: 1;
            }
            to {
                opacity: 0;
            }
        }
