.badge {
    background-color: red;
    color: white;
    padding: 4px 1px;
    text-align: center;
    border-radius: 5px;
    font-size: xx-small;
    }
    
    .map-container {
        position: relative;
        width: 100%;
        max-width: 600px;
        height: 600px;
        border-radius: 8px;
        overflow: hidden;
        margin-top: 10%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
       
    }

    .map-container iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

    @media (max-width: 768px) {
        .map-container {
            height: 300px;
        }
    }

    @media (max-width: 480px) {
        .map-container {
            height: 250px;
        }
    }







     

        /* Loading animation */
     

        .hide {
            opacity: 0;
            visibility: hidden;
        }

        /* Social media container */
        .social-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 50px;
        }

        /* Rounded social media icons */
        .social-icon {
            width: 60px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            font-size: 30px;
            color: white;
            text-decoration: none;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        /* Social media colors */
        /* .facebook { background: #1877F2; } */
        /* .whatsapp { background: #25D366; }
        .tiktok { background: black; }
        .instagram { background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5); } */

        /* Hover animations */
        .social-icon:hover {
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 600px) {
            .social-icon {
                width: 50px;
                height: 50px;
                font-size: 25px;
            }
        }