header {
    position: relative; /* Allow z-index to work */
    z-index: 10; /* Ensure the header is above the breadcrumb section */
}

/* Logo container */
.logo-container {
    position: relative; /* To allow z-index to work */
    z-index: 10; /* Keep the logo above breadcrumb section */
}



/* Refined Breadcrumb Section */
.breadcrumb-section {
    background-image: url('../../images/gv.jpeg'); /* Add the background image */
    background-size: cover; /* Ensure the image covers the whole area */
    background-position: center; /* Center the background image */
    padding: 30px 0; /* Increased padding for height */
    width: 100%; /* Full width */
    position: relative; /* To position the title within this section */
}

/* Semi-transparent color mask (Only applies to the background, not the text) */
.breadcrumb-section::before {
    content: ''; /* Empty content to create a layer */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 77, 82, 0.7); /* Dark Teal with opacity */
    z-index: 1; /* Ensure this overlay is above the image but below the text */
}

/* Title Below Breadcrumb (Text will not be affected by transparency) */
.breadcrumb-title {
    position: absolute;
    bottom: 15px; /* Position title slightly above the bottom */
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem; /* Adjusted title font size */
    font-weight: bold;
    color: #FFFFFF; /* White text for high contrast */
    text-transform: uppercase;
    font-family: 'Arial', sans-serif;
    text-align: center;
    z-index: 2; /* Ensure title is above the overlay */
    margin-top: 50px; /* Increased top margin to create more space between breadcrumb and title */
}

/* Ensure breadcrumb and text are above the overlay */
.breadcrumb-container {
    max-width: 1200px; /* Limit content width */
    margin: 0 auto; /* Center content */
    padding: 0 20px; /* Add padding for spacing */
    display: flex;
    justify-content: flex-start; /* Align breadcrumb items to the left */
    align-items: center;
    z-index: 2; /* Ensure breadcrumb list is above the overlay */
}

/* Breadcrumb List */
.breadcrumb-list {
    display: flex;
    gap: 10px; /* Spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
    font-family: 'Arial', sans-serif;
}

.breadcrumb-list li {
    font-size: 1.2rem; /* Increased font size for breadcrumb text */
    color: #F9F9F9; /* Light gray for text */
    font-weight: 600;
}

.breadcrumb-list a {
    color: #F1F1F2; /* Light gray for links */
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.2rem;
}

.breadcrumb-list a:hover {
    color: #1995AD; /* Teal text on hover */
    background-color: #fff; /* White background on hover */
    text-decoration: none;
}

.breadcrumb-list li::after {
    content: '>'; /* Separator */
    margin: 0 10px;
    color: #F1F1F2; /* Light gray for separator */
}

.breadcrumb-list li:last-child::after {
    content: ''; /* Remove separator for the last item */
}

.current-page {
    font-weight: bold;
    color: #fff; /* White for the current page */
    text-decoration: none;
}

/* Responsive Design for Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb-container {
        padding: 0 15px;
    }

    .breadcrumb-list {
        font-size: 1rem; /* Adjust breadcrumb font size for smaller screens */
        gap: 5px; /* Reduce gap */
    }

    .breadcrumb-title {
        font-size: 1.5rem; /* Adjust title size for smaller screens */
        margin-top: 30px; /* Adjust top margin for smaller screens */
    }
}
