.title {
    color: #154a9b !important;
}
.color-white {
    color: aliceblue;
}
.font-bold {
    font-weight: bold;
}
.blog_image {
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: none;
    border-radius: 16px;
    transition: all 0.3s linear;
}
.blog_image img {
    border-radius: 10px;
}
.blog_title h3 {
    font-family: "Poppins", Sans-serif;
    font-size: 21px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0.3px;
    margin-bottom: 0px;
}
.blog_content p {
    color: #42526e;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 23px;
    margin-bottom: 10px;
}
#service_title {
    position: relative;
    display: inline-block;
    font-size: 36px; /* Adjust the font size as needed */
    color: #164b9b; /* Adjust the text color as needed */
}

#service_title::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #164b9b; /* Change this to your preferred line color */
    animation: bounceLine 0.8s infinite alternate;
}

@keyframes bounceLine {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}
.contactArea {
    color: black !important;
}
.contact_us_container {
    background-color: #164b9b;
    /* background-image: url(https://objects.ws/wp-content/uploads/2022/12/Untitled-17-other.png); */
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    /* transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s; */
    /* margin-top: 50px; */
    /* margin-bottom: 0px; */
    padding: 30px 60px 30px 60px;
    border-radius: 10px;
}
@keyframes elementor-animation-pulse-grow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.contact_us_btn {
    color: #00dbb0;
    background-color: #ffffff;
    border-color: #00dbb0;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    fill: #ffffff;
    color: #ffffff;
    background-color: #00dbb0;
    border-style: solid;
    border-width: 1px;
    border-color: #00dbb0;
    border-radius: 8px;
    box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.06);
    padding: 20px 50px;
    transition: transform 0.3s ease; /* Add transition property for a smooth effect */

    /* Animation properties for hover state */
    &:hover {
        transform: scale(1.1);
        animation-name: elementor-animation-pulse-grow;
        animation-duration: 0.3s;
        animation-timing-function: linear;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }
}
#whatsapp-bubble {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 30;
}

#whatsapp-bubble img {
    width: 45px;
    height: 45px;
}
.blog_image {
    position: relative;
    overflow: hidden;
}

.blog_image img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.blog_image:hover img {
    transform: scale(1.1);
}
.readMore{
    font-weight: bold;
    color:blue;
}
.readMore:hover{
    font-weight: bold;
    color:white;
}