.main_heading {
    text-shadow: 2px 2px 4px rgba(255, 130, 0, 0.7);
    font-weight: bold;
    /* Optional: Make the text bold */
    color: #333;
    /* Optional: Set the text color */
}

.card {
    border: none;
    transition: transform 0.2s;
}

.card:hover {
    transform: scale(1.05);
}

.card-title {
    color: var(--pbmit-heading-color);
    font-family: var(--pbmit-body-typography-font-family);
}

.card-body {
    background-color: var(--pbmit-light-color);
    border-top: 3px solid var(--pbmit-global-color);
}

.card img {
    max-height: 200px;
    object-fit: cover;
}

.contact-card {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #1c9c11;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.contact-card:hover {
    background-color: #14860e;
    /* Darker green on hover */
    border: 2px solid #0f7d09;
    /* Add border on hover */
}

.contact-card a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.contact-icon {
    margin-right: 10px;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-info p {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
}


.pbmit-title-bar-wrapper {
    position: relative;
    overflow: hidden;
}

.pbmit-title-bg-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .pbmit-title-bar-content-inner {
        position: relative;
        z-index: 2;
        padding: 20px;
        /* background: rgba(255, 255, 255, 0.8); */
        /* Optional: adds a slight background for readability */
    }

    .pbmit-title-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .container {
        position: relative;
        padding: 0;
    }
}

.demo {
    background-image: url("../images/banners/2.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

.demo3 {
    background-image: url("../images/banners/5.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

.demo2 {
    background-image: url("../images/banners/3.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

.demo4 {
    background-image: url("../images/banners/6.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

.demo5 {
    background-image: url("../images/banners/7.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

.demo6 {
    background-image: url("../images/banners/8.png");
    background-repeat: repeat;
    background-attachment: fixed;
    /* height: 100vh; */
    opacity: 0.9;
}

/* Preloader styles */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    /* Change the background color as needed */
    z-index: 9999;
    /* Ensure it's on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

.preloader-logo {
    width: 30%;
    /* Adjust the size as needed */
    height: auto;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}