        /* General body and page setup */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #fafafa;
            display: flex;
            flex-direction: column;
            height: 100vh;
            overflow: auto;
            padding-top: 50px;
            padding-bottom: 100px;
        }

        /* Main content container */
        .container {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* Display 2 service containers per row */
            gap: 10px; /* Space between items */
            padding-top: 3%;
            padding-bottom: 5%;
            position: relative;
            width: 100%;
            max-width: 100%;
            height: auto;
            opacity: 0;
            animation: fadeIn 1s ease-in-out forwards;
            text-align: center;
            margin: auto;
        }

        footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #333;
            color: white;
            text-align: center;
            z-index: 10; /* Ensure it stays on top */
            box-sizing: border-box; /* Include padding in the width calculation */
        }

        /* Navigation links in the footer */
        footer nav a {
            color: #4caf50;
            text-decoration: none;
            margin: 0 10px;
            font-size: 16px;
        }

        footer nav a:hover {
            text-decoration: underline;
        }

        /* Main content area adjusted to avoid header/footer overlap */
        .main-content {
            flex-grow: 1;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding-top: 100px; /* Space for the header */
            padding-bottom: 100px; /* Space for the footer */
            width: 100%;
            box-sizing: border-box; /* Include padding in width calculation */
            overflow-y: auto; /* Allow scrolling */
        }

        /* Service container (each service has its own space) */
        .service-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 1px solid #ddd;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
        }
        /* Images within the service container */
        .images {
            display: flex;
            justify-content: space-between; /* Space images apart */
            width: 100%;
        }
        

        .image {
            position: relative;
            width: 80%; /* Adjust width to fit 2 images in a row */
            background-size: cover;
            background-position: center;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
            object-fit: cover;
            padding-top: 5px;
            border-radius: 15px;
        }

        /* Enlarged state for the image */
        .image.enlarged {
            transform: scale(1.5); /* Enlarges the image */
            z-index: 1000; /* Ensure the enlarged image is on top */
        }

        /* Description box styling */
        .description {
            position: relative;
            background: white;
            padding: 20px 30px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            text-align: center;
            width: 80%;
            height: 80%;
            margin-top: 10px;
            padding-bottom: 10px;
        }

        /* Header and description text styling */
        .description h2 {
            margin: 0;
            font-size: 1.5em;
            color: #444;
        }

        .description p {
            margin-top: 10px;
            font-size: 1em;
            color: #666;
        }

        /* Keyframes for Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .container {
                grid-template-columns: 1fr; /* Display 1 service container per row on small screens */
            }

            .image {
                width: 80%; /* Increase image width on smaller screens */
            }

            .description {
                width: 90%;
            }
        }

        /* Chat container styles */
        .chat-container {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

        .chat-header {
            background-color: #007BFF;
            color: white;
            padding: 10px;
            text-align: center;
        }

        .chat-content {
            padding: 1px;
            height: auto;
            overflow-y: auto;
            border-top: 1px solid #ddd;
        }

        .chat-content form {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .chat-content input, .chat-content textarea {
            width: 100%;
            margin: 3px 0;
            padding: 8px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 14px;
        }

        .chat-content button {
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            width: 100%;
            margin-top: 10px;
        }

        .chat-content button:hover {
            background-color: #0056b3;
        }

        .open-chat {
        background-color: #007bff;
        color: white;
        border: none;
        padding: 10px 20px;
        cursor: pointer;
        margin-top: 10px;
        border-radius: 5px;
    }
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }