.bg-image-overlay {
    position: relative;
    background: url('../img/bg-hero.jpg') center center / cover no-repeat;
    color: white;
}

.bg-image-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Dark gradient overlay */
    z-index: 1;
    pointer-events: none; /* Ensure the overlay does not interfere with clicks */
}

.bg-image-overlay .content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    color: white;
}

.img-border {
    border: 1px solid grey;
    border-radius: 15%;
}

.bg-image-overlay-2 {
    position: relative;
    background: url('../img/services-2.jpg') center center / cover no-repeat;
    color: white;
}

.bg-image-overlay-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2); /* Dark gradient overlay */
    z-index: 1;
    pointer-events: none; /* Ensure the overlay does not interfere with clicks */
}

.bg-image-overlay-2 .content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    color: white;
}
#blogs {
    padding: 40px 20px;  /* 40px padding on top and bottom, 20px on left and right */
    background-color: #f9f9f9;
}

#blogs h2 {
    text-align: center;
    margin-bottom: 20px;
}

.post {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
}

.post h3 {
    margin: 0 0 10px;
}

.post p {
    margin: 0 0 10px;
}

.read-more-btn {
    color: #007bff;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

a {
    color: white; /* Ensure the link is visible */
    text-decoration: underline;
}

a:hover {
    color: lightgray;
    text-decoration: underline;
}

/* Additional styles for the footer area */
.p-absolute {
    position: absolute;
}

.w-100 {
    width: 100%;
}

.bottom-10 {
    bottom: 10px;
}

.p-2 {
    padding: 0.5rem;
}

.text-0-5 {
    font-size: 0.5rem;
}

/* Add this to your CSS file */
.margin-right-white {
    border-right: 1px solid white;
}

/* WhatsApp button styles */

/* WhatsApp button styles */
/* WhatsApp button styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button img {
    width: 50px; /* Adjust size as needed */
    height: 50px; /* Adjust size as needed */
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Balloon messages container */
.balloon-messages {
    position: fixed;
    bottom: 80px; /* Position above the WhatsApp icon */
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Space between messages */
    z-index: 999; /* Make sure messages appear above other content */
}

.balloon-message {
    display: none; /* Initially hidden */
    background-color: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    white-space: nowrap;
    transition: opacity 0.5s ease;
}

.balloon-message.visible {
    display: block;
    opacity: 1;
}
