/* Nav section */


    /* Existing styles for navbar */
    .navbar-links{
        display:flex !important;
        gap:5px !important;
    }
    .navbar-links.button{
        white-space:nowrap !important;
    }
    .about_us_btn {
        font-weight: 500 !important;
    }

    .goog-te-gadget {
        font-family: inherit !important;
    }

    .goog-te-gadget-simple {
        font-weight: 500 !important;
    }

    .journey-protection {
        color: #FFFF;
        background-color: #001e3f;
        height: 40px;
        border-radius: 5px;
        font-size: 22px;
        font-weight: bold;
        text-align: center;
        line-height: 40px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: background-color 0.3s;
        margin-bottom: 0 !important;
        width: 332px;
    }

    .unique-neon-blink {
        font-size: 30px;
        color: white;
        text-shadow: 0 0 0px #fff, 0 0 1px #fff, 0 0 2px #ff00ff, 0 0 3px #ff00ff, 0 0 6px #ff00ff, 0 0 10px #ff00ff, 0 0 20px #ff00ff;
        animation: unique-blink 1.5s infinite;
    }

    @keyframes unique-blink {
        0%, 49%, 100% {
            opacity: 1;
        }
        50% {
            opacity: 0;
        }
    }

    /* New styles for the image slider */
    .image-slider {
        width: 89%;
        height: 162px;
        position: relative;
        overflow: hidden;
        margin: 0 auto;
        border-radius: 0px 0px 9px 9px;
    }

    .image-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .image-slider img.active {
        opacity: 1;
    }

    /* Dark overlay for better text visibility */
    .image-slider::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity (0.3 = 30% dark) */
        pointer-events: none; /* Ensures the overlay doesn't interfere with clicks */
    }

    .image-slider .text-overlay {
        position: absolute;
        top: 50%; /* Center vertically */
        left: 50%; /* Center horizontally */
        transform: translate(-50%, -50%); /* Perfect centering */
        color: white; /* White text */
        font-size: 36px; /* Larger text */
        font-weight: bold;
        text-align: center;
        background-color: transparent; /* Remove black background */
        padding: 0; /* Remove padding */
        border-radius: 0; /* Remove border radius */
        width: 90%; /* Take up most of the width */
        max-width: 1200px; /* Limit maximum width */
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add subtle text shadow for better readability */
        z-index: 1; /* Ensure text is above the dark overlay */
    }

    /* Hamburger Menu Styles */
    .hamburger-menu {
        display: none; /* Hidden by default */
        font-size: 24px;
        cursor: pointer;
        color:white;
        padding: 10px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
        .hamburger-menu {
            display: block; /* Show hamburger menu on small screens */
        }

        .navbar-links {
            display: none !important; /* Hide navbar links by default on small screens */
            flex-direction: column;
            position: absolute;
            top: 60px; /* Adjust based on your navbar height */
            right: 10px;
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .navbar-links.active {
            display: block !important;
        }

        .navbar-links button {
            width: 100% !important;
            margin: 5px 0 !important;
        }

        .journey-protection {
            font-size: 18px; /* Adjust font size for smaller screens */
            width: auto !important;
        }
        .image-slider{
            display:none;
        }
        .journey-protection{
            display:none;
        }
    }

    /* Add to existing .about_us_btn styles */
    .about_us_btn {
        flex: 1;
        min-width: 120px;
        white-space: nowrap;
        /* Keep existing properties */
        font-weight: 500 !important;
    }

    /* Ensure navbar links container uses full width */
    .navbar-links {
        flex-grow: 1;
        justify-content: flex-end;
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
        .navbar-links {
            width: 100%;
            right: 0;
            padding: 10px;
        }
        .about_us_btn {
            min-width: auto; /* Allow full width on mobile */
        }
    }

    
/* Nav Finished section */ 
