       /* Global Modal Styles */
            body {
                font-family: 'Poppins', sans-serif;
                margin: 0;
                padding: 0;
            }
  /* Global Modal Styles */
        body {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
        }

        /* The Modal (background) */
        .modal {
            display: none; /* Hidden by default */
            position: fixed; /* Stay in place */
            z-index: 1; /* Sit on top */
            left: 0;
            top: 0;
            width: 100%; /* Full width */
            height: 100%; /* Full height */
            background-color: rgba(0, 0, 0, 0.7); /* Black w/ opacity */
        }

        /* Modal Content Box */
        .land-modal-content {
            background: rgba(0, 0, 0, 0.5);
            border-radius: 20px;
            color: white;
            margin: 15% auto; /* 15% from the top and centered */
            padding: 40px;
            width: 100%; /* Could be more or less, depending on screen size */
            max-width: 40%;
            position: relative;
        }

        /* Modal Background Image */
        .land-modal-body {
            background-image: url('https://lygagadds.s3.eu-central-1.amazonaws.com/landing_splash.jpg'); /* Real-estate background */
            background-size: cover;
            background-position: center;
            padding: 40px;
            border-radius: 15px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
        }

        /* Close Button */
        .land-close {
            position: absolute;
            top: 10px;
            right: 20px;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        /* Modal Title */
        .land-modal-title {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* Modal Text */
        .modal-text {
            font-size: 1.2rem;
            margin: 20px 0;
        }

        /* Buttons */
        .land-modal-footer {
            display: flex;
            justify-content: space-between;
        }

        .left-btn, .right-btn {
            width: 40%;
            padding: 15px;
            font-size: 1rem;
            cursor: pointer;
            border-radius: 5px;
        }

        .left-btn {
            background-color: #ffc107;
            color: black;
            border: none;
        }

        .right-btn {
            background-color: #28a745;
            color: white;
            border: none;
        }

#landRealEstateModal .land-modal-title {
  text-align: right; /* Aligns the title to the right */
}

#landRealEstateModal .land-modal-body p {
  text-align: right; /* Aligns the paragraph text to the right */
}
        /* Modal Animation */
        .land-modal-content {
            animation: modalopen 0.5s;
        }

        @keyframes modalopen {
            from {
                opacity: 0;
                transform: translateY(-200px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        #============================================
         /* Full-screen layout styling */
            body, html {
              height: 100%;
              margin: 0;
              font-family: Arial, sans-serif;
            }

            /* Top loading bar container */
            .loading-bar-container {
              position: fixed;
              top: 0;
              left: 0;
              width: 100%;
              height: 4px; /* Adjust height as needed */
              background-color: #e0e0e0; /* Light grey background */
              overflow: hidden;
              z-index: 9999;
              display: block; /* Initially visible */
            }

            /* Animated loading bar */
            .loading-bar {
              width: 0;
              height: 100%;
              background-color: #4285f4; /* Google blue */
              animation: loading 2s ease-in-out infinite;
            }

            /* Loading animation */
            @keyframes loading {
              0% { width: 0; }
              50% { width: 70%; }
              100% { width: 100%; }
            }

            /* Style for image container
            .row.ly-adds {
              padding: 20px;
              display: flex;
              gap: 10px;
            }*/

            /* Example image styling
            .row.ly-adds img {
              max-width: 200px;
              border-radius: 8px;
              box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            }*/
