        .banner {
            background-image: url('../img/Hall-06.jpeg'); /* Replace with your banner image */
            background-size: cover;
            background-position: center;
            color: white;
            padding: 10rem 0;
            height: 500px;
            position: relative; /* For overlay positioning */
            overflow: hidden; /* Prevents image overflow */
        }

        .banner-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent black overlay */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .carousel-item img {
            height: 500px; /* Set a fixed height */
            object-fit: cover; /* Maintain aspect ratio and cover container */
        }

        .navbar.navbar-expand-lg.navbar-dark {
            background-color: #04aab0; /* Replace with your chosen hex code */
        }

        .nav-item.active {
            background-color: #0d6efd;
            color: white;
        }
 #map {
            height: 400px;
            width: 100%;
        }
        .carousel-item img {
            height: 500px;
            object-fit: cover;
        }
        /* Make carousel full width */
        #gallery .container-fluid { /*Target container inside gallery*/
            padding-left: 0;
            padding-right: 0;
        }
        #gallery{
            padding-left: 0;
            padding-right: 0;
        }
        /*Responsive adjustments for smaller screens */
        @media (max-width: 768px) {
            .carousel-item img{
                height: 300px;
            }
        }
		
 .card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
        transform: translateY(-10px); /* Moves the card upwards */
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Adds a shadow for the hover effect */
    }

    .card-body {
        transition: background-color 0.3s ease;
    }

    .card:hover .card-body {
        background-color: #e9ecef; /* Darker grey background on hover */
    }

    .card i {
        transition: color 0.3s ease;
    }

    .card:hover i {
        color: #028a8a; /* Darker color for the icon */
    }

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: transparent; /* Transparent background */
    color: #04aab0; /* Branding color for the arrow */
    border: 2px solid #04aab0; /* Border with branding color */
    padding: 10px; /* Adjusted padding for button */
    border-radius: 50%; /* Ensures the button is round */
    font-size: 24px; /* Size of the arrow */
    display: flex; /* Flexbox to center the icon */
    align-items: center; /* Vertically center the icon */
    justify-content: center; /* Horizontally center the icon */
    width: 50px; /* Size of the button */
    height: 50px; /* Size of the button */
    box-shadow: none; /* Removed outer shadow */
    cursor: pointer;
    z-index: 1000; /* Ensure the button stays on top */
    transition: transform 0.3s ease, border-color 0.3s ease; /* Smooth transition for hover effects */
}

#backToTop i {
    font-size: 24px; /* Arrow size */
}

#backToTop:hover {
    background-color: #04aab0; /* Branding color on hover */
    color: white; /* Change icon color to white */
    border-color: #028d8a; /* Darker border on hover */
    transform: scale(1.1); /* Slightly enlarge the button on hover */
}

#backToTop:active {
    transform: scale(0.95); /* Slight shrink effect on click */
}
.testimonial-card {
    background: #fff;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent !important;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-bottom: 4px solid #04aab0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.testimonial-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.stars i {
    font-size: 0.8rem;
}

.client-info h6 {
    color: #333;
    font-size: 1rem;
}
.google-badge {
    background-color: #f8f9fa;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.google-badge:hover {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08) !important;
}

.google-badge span {
    vertical-align: middle;
    color: #444;
}

.btn-outline-dark:hover {
    background-color: #4285F4; /* Google Blue */
    border-color: #4285F4;
    color: white;
}
section {
    scroll-margin-top: 70px; /* This matches the height of your navbar */
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Opposite side of Back to Top button */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    padding: 10px 20px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float i {
    font-size: 25px;
}

.whatsapp-float span {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
    margin-left: 0;
    font-weight: 600;
}

/* Hover effect to show text */
.whatsapp-float:hover {
    background-color: #128c7e;
    color: white;
    padding: 10px 25px;
}

.whatsapp-float:hover span {
    max-width: 150px;
    margin-left: 10px;
}

/* On mobile, show it as a prominent circle */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 12px;
    }
    .whatsapp-float span {
        display: none; /* Keep it simple circle on small phones */
    }
}
.gallery-item img {
    width: 100%;
    height: 250px; 
    object-fit: cover;
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.gallery-item img:hover {
    transform: scale(1.02);
    border-color: #04aab0;
}

.filter-btn {
    margin: 5px;
    border-radius: 30px;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary {
    color: #04aab0;
    border-color: #04aab0;
}

.btn-outline-primary:hover, .btn-outline-primary.active {
    background-color: #04aab0 !important;
    border-color: #04aab0 !important;
    color: white !important;
}

@media (max-width: 768px) {
    .gallery-item img {
        height: 160px; /* Perfect height for mobile grids */
    }
    .filter-btn {
        padding: 4px 12px;
        font-size: 12px;
    }
}
html {
  scroll-behavior: smooth;
}
/* Wedding Preloader Styles */
