   
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .hero-banner {
            background-color: #25408F;
            color: white;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 50px;
        }

        .hero-banner .carousel {
            width: 45%; /* Adjust width for the slider */
        }

        .carousel-inner img {
            border-radius: 10px;
            height: 200px;
            object-fit: cover;
        }

        .hero-banner-content {
            text-align: left;
            width: 45%; /* Adjust width for the text */
        }

        .hero-banner-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 0 0 10px;
        }

        .hero-banner-content p {
            font-size: 1.2rem;
        }

        .container {
            display: flex;
            margin-top: 20px;
        }

        #map {
            width: 60%;
            height: calc(100vh - 300px); /* Adjusted height to fit below the banner and footer */
        }

        .details {
            width: 40%;
            padding: 20px;
            border-left: 1px solid #ccc;
            background-color: #f9f9f9;
        }

        .card {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            padding: 15px;
            border-radius: 8px;
            background-color: #fff;
        }

        .card h3 {
            margin: 0 0 10px;
            color: #25408F;
        }

        .card p {
            margin: 5px 0;
        }

        .btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            text-decoration: none;
            padding: 10px 15px;
            border-radius: 5px;
            margin-top: 10px;
        }

        .btn:hover {
            background-color: #45a049;
        }

        .register-banner {
            background-color: #FFC107;
            color: #333;
            text-align: center;
            padding: 20px;
            margin-top: 20px;
            font-size: 1.2rem;
        }

        .register-banner a {
            color: white;
            background-color: #25408F;
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            display: inline-block;
            margin-top: 10px;
        }

        .register-banner a:hover {
            background-color: #1b3073;
        }

        .footer {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            font-size: 14px;
            text-align: center;
        }

        .footer-link {
            color: #fff;
            text-decoration: none;
        }

        .footer-link:hover {
            text-decoration: underline;
        }
/* Flashing button animation */
    .flashing-button {
        color: white;
        background-color: #25408F;
        padding: 10px 20px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        display: inline-block;
        margin-top: 10px;
        animation: flash 1.5s infinite; /* Animation duration and repeat */
    }

    /* Hover effect to maintain usability */
    .flashing-button:hover {
        background-color: #1b3073;
        animation: none; /* Stop flashing on hover */
    }

    /* Keyframes for flashing effect */
    @keyframes flash {
        0% {
            background-color: #25408F;
        }
        50% {
            background-color: #4CAF50;
        }
        100% {
            background-color: #25408F;
        }
    }

    
