
        /* The Parallax Section */
        .hero-parallax {
            /* Replace the URL below with your local image path */
            background-image: url('/images/contact-bg.png');
            
            /* High-quality Parallax effect */
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            height: 400px; /* Adjust height as needed */
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin: 2rem;
            border-radius: 20px;
        }

        /* Dark overlay to match your reference image style */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
                background: rgb(29 100 84 / 30%);
            z-index: 1;
            border-radius: 20px;
        }

        /* Content layer */
        .hero-content {
            position: relative;
            z-index: 2;
            color: #ffffff;
        }

        .hero-title {
            font-size: 3.5rem;
            letter-spacing: -1px;
        }

        .hero-title span {
            font-weight: 300; /* Makes the 'us' light as per your image */
        }

        /* Custom Breadcrumb Styling */
        .breadcrumb {
            background: transparent;
            justify-content: center;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            color: rgba(255, 255, 255, 0.6);
            padding: 0 10px;
        }

        .breadcrumb-item a {
            color: #ffffff;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .breadcrumb-item a:hover {
            opacity: 0.7;
        }

        .breadcrumb-item.active {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Filler content to demonstrate parallax scroll */
        .spacer {
            height: 100vh;
            background: #f8f9fa;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* COntact Section */




        .contact-section {
            padding: 80px 0;
        }

        /* Left Side Styles */
        .reach-out-tag {
            color: #1d6454;
            font-style: italic;
            font-size: 0.9rem;
        }
        .reach-out-tag::before {
            content: "•";
            color: #1d6454;
            margin-right: 8px;
            font-size: 1.5rem;
            vertical-align: middle;
        }
        
        .main-heading {
            font-weight: 700;
            font-size: 2.8rem;
            line-height: 1.2;
        }
        .main-heading span {
            font-style: italic;
            font-weight: 400;
        }

        /* Opening Hours Box */
        .hours-box {
            background-color: var(--primary-color);
            color: white;
            border-radius: 20px;
            padding: 30px;
            margin-top: 40px;
            max-width: 400px;
        }
        .icon-circle {
            background-color: var(--secondary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        /* Right Side / Form Styles */
        .form-container {
            background-color: #1d645426;
            padding: 40px;
            border-radius: 20px;
        }
        .form-control {
            border: none;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        .form-control::placeholder {
            color: #a09a95;
        }
        .submit-btn {
            background-color: var(--secondary-color);
            border: 1px solid var(--secondary-color);
            color: white;
            padding: 15px;
            border-radius: 10px;
            width: 100%;
            font-weight: 400;
            transition: 0.3s;
        }
        .submit-btn:hover {
            background-color: transparent;
            border: 1px solid var(--secondary-color);
            color: var(--secondary-color);
        }


        /* Info section */

.section-tag {
    color: #e5ad05;
    font-style: italic;
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.section-tag::before {
    content: "•";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.5rem;
}

.main-heading {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 2.8rem;
    line-height: 1.2;
}

.main-heading span {
    font-style: italic;
    font-weight: 400;
}

.icon-circle-lg {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.icon-circle-lg:hover {
    transform: scale(1.1);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
    .main-heading {
        font-size: 2rem;
    }
}

/* 1. Target the container or the iframe */
.map-container iframe {
    /* Make it black and white */
    filter: grayscale(100%);
    
    /* Smooth transition */
    transition: filter 0.5s ease;
    
    /* Optional: boost contrast slightly for a cleaner B&W look */
    -webkit-filter: grayscale(100%); 
}

/* 2. On hover, return to normal */
.map-container:hover iframe {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
}