        .navbar {
            display: flex;
            justify-content: center;
            background-color: #333;
            padding: 10px 0;
        }

        .navbar a {
            color: white;
            text-decoration: none;
            padding: 14px 20px;
            text-align: center;
            font-size: 1em;
        }

        .navbar a:hover {
            background-color: #575757;
            border-radius: 4px;
        }

        .image-container {
            position: relative;
            text-align: center;
        }

        .centered-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2em;
            background-color: rgba(0, 0, 0, 0.5);
            padding: 10px 20px;
            border-radius: 5px;
        }

        .image-container img {
            width: 100%;
            height: 250px;
        }

        .rcircular-image {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid white;
        }
        
        .lcircular-image {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid white;
        }
        
        
.contact-info {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            color: #333; 
            flex-direction: column;
            justify-content: center;
            align-items: center;   
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-align: center;
            max-width: 400px;
            width: 100%;
            margin: 0 auto;
        }

        .contact-info p {
            font-size: 18px;
            
            font-weight: 500;
            text-transform: capitalize;
            margin-bottom: 10px;
        }

        .phone-link {
            color: #FF4500;
            text-decoration: none;
            font-weight: bold;
        }

        .phone-link:hover {
            color: #FF1493;
            text-decoration: underline;
        }

        .whatsapp-link {
            color: blue;
            text-decoration: none;
            font-weight: bold;
            display: inline-block;
            margin-top: 5px;
        }

        .whatsapp-link:hover {
            color: #128C7E;
            text-decoration: underline;
        }