* {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Poppins", sans-serif;
}

/* ==================== Navbar Styling Start ================== */

header {
    background-color: white;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.4);
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
}

#black_btn {
    background-color: black;
    color: white;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.3s ease;
}

#green_btn {
    background-color: #2A8488;
    color: white;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    transition: background-color 0.3s ease;
}

.navbar-nav a {
    color: #0D5D61;
}


.navbar-custom .navbar-brand {
    color: #ffffff;
    /* Logo text color */
}

.navbar-custom .navbar-toggler-icon {
    color: #0D5D61;
    /* Hamburger icon color */
}

.navbar-toggler-icon {
    display: inline-block;
    width: 0.5em;
    height: 1.2em;
    vertical-align: middle;
    content: "";
    background: 50% / 100% 100% no-repeat;
}

.navbar-custom .navbar-toggler-icon:before {
    content: "\f0c9";
    /* FontAwesome hamburger icon */
    font-family: FontAwesome;
    font-size: 24px;
    width: 0.5em;
    height: 1.2em;
    /* Adjust icon size */
}

@media (max-width: 1024px) {
    .navbar-brand img {
        width: 200px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.6rem;
        padding-left: 0.6rem;
        font-size: 16px;
        line-height: 27px;
        font-weight: 500;
    }

    #black_btn {
        background-color: black;
        color: white;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        transition: background-color 0.3s ease;
    }

    #green_btn {
        background-color: #2A8488;
        color: white;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
        line-height: 24px;
        transition: background-color 0.3s ease;
    }
}

@media (max-width: 768px) {

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.2rem;
        padding-left: 0.2rem;
        font-size: 18px;
        line-height: 27px;
        font-weight: 500;
    }
}

@media (max-width: 430px) {
    .navbar-brand img {
        width: 200px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.2rem;
        padding-left: 0.2rem;
        font-size: 18px;
        line-height: 27px;
        font-weight: 500;
    }
}

@media (max-width: 320px) {
    .navbar-brand img {
        width: 175px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.2rem;
        padding-left: 0.2rem;
        font-size: 18px;
        line-height: 27px;
        font-weight: 500;
    }
}



/* ==================== Navbar Styling End ================== */


/* ==================== Home Section Styling Start ================== */

.home .col-sm-6 {
    align-content: center;
}

.home .heading {
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
    color: #0D5D61;
}

.home .about {
    margin: 20px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 35px;
    color: #0D5D61;
}

.home p {
    margin: 8px 0;
    font-weight: 400;
    font-size: 20px;
    line-height: 30px;
    color: #0D5D61;
}

.home .button_text {
    text-decoration: none;
    margin: 9px 0;
    font-weight: 500;
    font-size: 20px;
    color: #0D5D61;
}

.home .b_line {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    color: #0D5D61;
}

.search-container {
    background-color: #fff;
    border: 1px solid #d4d4d6;
    padding: 4px;
    /* Reduced padding for compact look */
    border-radius: 12px;
    /* Rounded corners for the entire form */
    display: flex;
    align-items: center;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03080780;
    /* Bootstrap default gray color */
    padding: 8px;
}

/* Apply styles to the scroll bar */
.search-list {
    /* Other styles */
    overflow-y: scroll;
    /* Ensure vertical scrolling is enabled */
}

/* Webkit browsers (Chrome, Safari) */
.search-list::-webkit-scrollbar {
    width: 40px;
    /* Scrollbar width */
}

/* Track (part of the scrollbar not covered by the thumb) */
.search-list::-webkit-scrollbar-track {
    background: transparent;
    /* Make the track invisible */
    box-shadow: inset 0 0 14px 14px transparent;
    border: solid 36px transparent;
}

/* Handle (the draggable part of the scrollbar) */
.search-list::-webkit-scrollbar-thumb {
    background: white;
    /* Color of the scrollbar */
    box-shadow: inset 0 0 14px 14px #234E42;
    border: solid 19px transparent;
    border-radius: 14px;
    /* Rounded corners if needed */
}


.home .fa-search {
    font-size: 25px;
}

.search-input {
    border: none;
    outline: none;
    padding: 8px;
    /* Reduced padding for input */
    flex: 1;
    border-radius: 8px 0 0 8px;
    /* Rounded corners for input */
}

.search-button {
    background-color: #FBC52B;
    /* Dark background color for button */
    border: none;
    color: white;
    padding: 0 25px;
    /* Adjusted padding for smaller button */
    border-radius: 12px;
    line-height: 28px;
    /* Rounded corners for button */
    font-size: 0.500rem;
    /* Smaller font size for button */
    font-weight: 500;
    margin-right: 3px;
    text-decoration: none;
}

.search-button:hover {
    background-color: #FBC52B;
    /* Darker background color on hover */
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 10px;
    font-size: 20px;
    font-weight: 300;
    line-height: 20px;
}

.search-list {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    width: calc(100% - 2px);
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    background-color: white;
    display: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.search-list ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.search-list ul li {
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 300;
    line-height: 27px;
    color: #0D5D61;
}

.search-list ul li:hover {
    background-color: #f0f0f0;
}

@media(max-width:1024px) {
    .home .heading {
        font-weight: 500;
        font-size: 32px;
        line-height: 40px;
        color: #0D5D61;
    }

    .home .about {
        margin: 20px 0;
        font-weight: 400;
        font-size: 16px;
        line-height: 28px;
        color: #0D5D61;
    }

    .search-input {
        width: 100%;
        padding: 10px;
        font-size: 18px;
        font-weight: 300;
        line-height: 20px;
    }

    .home .b_line {
        font-weight: 500;
        font-size: 18px;
        line-height: 30px;
        color: #0D5D61;
    }

    .search_icon {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .home h1 {
        font-weight: 500;
        font-size: 28px;
        line-height: 40px;
        color: #0D5D61;
    }

    .home .about {
        margin: 20px 0;
        font-weight: 500;
        font-size: 14px;
        color: #0D5D61;
    }

    .search-list ul li {
        padding: 10px;
        font-size: 14px;
        cursor: pointer;
    }

    .home .main_img {
        margin-top: 60px;
    }
}

@media (max-width: 320px) {
    .search-list ul li {
        padding: 10px;
        font-size: 13px;
        cursor: pointer;
    }
}


@media (max-width: 768px) {
    .home .heading {
        font-weight: 500;
        font-size: 28px;
        line-height: 40px;
        color: #0D5D61;
    }

    .home .about {
        margin: 20px 0;
        font-weight: 500;
        font-size: 13px;
        color: #0D5D61;
    }

    .home .b_line {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        color: #0D5D61;
    }

    .search-input {
        width: 100%;
        padding: 10px;
        font-size: 15px;
        font-weight: 300;
        line-height: 20px;
    }

    .search-button {
        background-color: #FBC52B;
        border: none;
        color: white;
        padding: 0px 20px;
        border-radius: 8px;
        font-size: 0.500rem;
        font-weight: 500;
        margin-right: 4px;
    }

    .home .button_text {
        margin: 8px 0;
        font-weight: 500;
        font-size: 14px;
        color: #0D5D61;
    }
}

/* ==================== Home Section Styling End ================== */


/* ==================== Advertisements Section Styling Start ================== */

.advertisements .col-md-3 {
    align-content: center;
}

.advertisements p {
    font-size: 24px;
    line-height: 36px;
    font-weight: 400;
    color: #0D5D61;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .advertisements p {
        font-size: 20px;
        line-height: 36px;
        font-weight: 400;
        color: #0D5D61;
        margin-bottom: 30px;
    }
}

/* ==================== Advertisements Section Styling End ================== */


/* ==================== Services Section Styling Start ================== */

.services {
    background-color: #2A84881A;
    border: 1px solid #C4DDDE;
}

.services #ser_text {
    color: #0D5D61;
    font-size: 24px;
    line-height: 36px;
    font-weight: 500;
}

.services h3 {
    margin-top: 22px;
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
}

.services .s_box .image {
    background-color: white;
    box-shadow: 0 4px 8px rgba(13, 93, 97, 0.1);
    border-radius: 32px;
}

.services h2 {
    margin-top: 22px;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.services .col-sm-4 .s_box p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.s_no_img {
    position: absolute;
    top: 18px;
    left: 32%;
    transform: translateX(-100%);
}

.s_box {
    position: relative;
    padding-top: 50px;
}

.s_box p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}

#ser_text {
    font-size: 1.5rem;
    color: #333;
}

@media (max-width: 1024px) {
    .services #ser_text {
        color: #0D5D61;
        font-size: 20px;
        line-height: 20px;
        font-weight: 500;
    }

    .services h3 {
        margin-top: 22px;
        font-size: 30px;
        font-weight: 500;
        line-height: 40px;
    }

    .s_box p {
        font-size: 14px;
        line-height: 30px;
        font-weight: 400;
    }

    .services h2 {
        margin-top: 22px;
        font-size: 20px;
        font-weight: 500;
        line-height: 36px;
    }
}

@media (max-width: 768px) {
    .s_no_img {
        top: 15px;
        left: 24%;
        transform: translateX(-100%);
    }

    .services #ser_text {
        color: #0D5D61;
        font-size: 20px;
        line-height: 36px;
        font-weight: 500;
    }

    .services h3 {
        margin-top: 22px;
        font-size: 28px;
        font-weight: 500;
        line-height: 38px;
    }

    .services .s_box .image {
        max-width: 85%;
    }

    #ser_text {
        font-size: 1.2rem;
    }

    .services h2 {
        font-size: 1.2rem;
    }

    .s_box p {
        font-size: 11px;
        line-height: 25px;
        font-weight: 400;
    }

}

@media (max-width: 576px) {
    .s_no_img {
        top: 16px;
        left: 33%;
        transform: translateX(-100%);
    }

    #ser_text {
        font-size: 1rem;
    }

    .services h2 {
        font-size: 1.2rem;
    }

    .s_box p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {

    .services #ser_text {
        color: #0D5D61;
        font-size: 16px;
        line-height: 36px;
        font-weight: 500;
    }

    .services h3 {
        margin-top: 16px;
        font-size: 24px;
        font-weight: 500;
        line-height: 36px;
    }
}

@media (max-width: 320px) {
    .s_no_img {
        top: 16px;
        left: 30%;
        transform: translateX(-100%);
    }
}

/* ==================== Services Section Styling End ================== */


/* ==================== Popular Services Section Styling Start ================== */

/* .popular_services{
    align-content: center;
} */

.popular_services .p_service {
    background-color: white;
    box-shadow: 0 4px 8px rgba(13, 93, 97, 0.018);
    border: 1px solid #2A848840;
    border-radius: 32px;
    padding: 35px 0;
}

.popular_services .p_service_text h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 50px;
}

.popular_services .p_service_text p {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px;
}

.popular_services .p_service h2 {
    font-size: 24px;
    margin: 15px 0;
    font-weight: 500;
    line-height: 36px;
}

.popular_services .p_service a {
    text-decoration: none;
    font-size: 12.6px;
    font-weight: 600;
    line-height: 18.9px;
    padding: 9px 20px;
    border: 0.7px solid black;
    color: black;
    border-radius: 20px;
}

/* Default styles */
.popular_services {
    padding: 3rem;
    /* p-5 equivalent */
}

.popular_services .container {
    padding-left: 3rem;
    /* px-5 equivalent */
    padding-right: 3rem;
    /* px-5 equivalent */
}

.p_service_text {
    margin-left: 3rem;
    /* mx-5 equivalent */
    margin-right: 3rem;
    /* mx-5 equivalent */
}

.p_service {
    padding-top: 2rem;
    /* py-4 equivalent */
    padding-bottom: 2rem;
    /* py-4 equivalent */
    margin-left: 3rem;
    /* mx-5 equivalent */
    margin-right: 3rem;
    /* mx-5 equivalent */
}

@media (max-width: 1024px) {

    .popular_services .p_service_text h2 {
        font-size: 27px;
        font-weight: 500;
        line-height: 44px;
    }

    .popular_services .p_service_text p {
        margin-top: 15px;
        font-size: 18px;
        font-weight: 400;
        line-height: 30px;
    }
}

@media (max-width: 768px) {


    .popular_services .p_service_text h2 {
        font-size: 26px;
        font-weight: 500;
        line-height: 50px;
    }

    .popular_services .p_service_text p {
        margin-top: 15px;
        font-size: 18px;
        font-weight: 400;
        line-height: 25px;
    }
}

/* Responsive styles */
@media (max-width: 500px) {
    .popular_services {
        padding: 1rem;
        /* Reduce padding */
    }

    .popular_services .container {
        padding-left: 1rem;
        /* Reduce horizontal padding */
        padding-right: 1rem;
        /* Reduce horizontal padding */
    }

    .p_service_text {
        margin-left: 0;
        /* Remove margin */
        margin-right: 0;
        /* Remove margin */
    }

    .p_service {
        padding-top: 1rem;
        /* Reduce padding */
        padding-bottom: 1rem;
        /* Reduce padding */
        margin-left: 0;
        /* Remove margin */
        margin-right: 0;
        /* Remove margin */
    }
}

@media (max-width: 300px) {
    .popular_services {
        padding: 0;
        /* Remove padding */
    }

    .popular_services .container {
        padding-left: 0;
        /* Remove horizontal padding */
        padding-right: 0;
        /* Remove horizontal padding */
    }

    .p_service_text {
        margin-left: 0;
        /* Remove margin */
        margin-right: 0;
        /* Remove margin */
    }

    .p_service {
        padding-top: 0.5rem;
        /* Further reduce padding */
        padding-bottom: 0.5rem;
        /* Further reduce padding */
        margin-left: 0;
        /* Remove margin */
        margin-right: 0;
        /* Remove margin */
    }
}


/* ==================== Popular Services Section Styling End ================== */


/* ==================== Get In Touch Section Styling Start ================== */

.get_in_touch {
    margin: 140px 0;
    /* Increased top and bottom margin */
    padding-right: 250px;
    position: relative;
}

.get_in_touch .bg {
    display: flex;
    background-color: #0d5d6118;
    border-radius: 0 175px 175px 0;
    padding: 60px 160px;
    flex-direction: column;
    position: relative;
}

.get_in_touch .bg img {
    max-width: 60%;
}

.get_in_touch .bg #green {
    color: #0D5D61;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
}

.get_in_touch .bg h2 {
    font-size: 48px;
    line-height: 60px;
    font-weight: 400;
}

.get_in_touch .bg .buttons {
    margin-top: 36px;
}

.get_in_touch .bg #black_btn {
    background-color: black;
    color: white;
    padding: 10px 22px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    margin-right: 6px;
    transition: background-color 0.3s;
}

.get_in_touch .bg #black_btn:hover {
    background-color: #333;
    text-decoration: none;
}

.get_in_touch .bg #white_btn {
    text-decoration: none;
    background-color: white;
    color: black;
    padding: 10px 18px;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.get_in_touch .bg #white_btn:hover {
    background-color: #f0f0f0;
}

.get_in_touch .bg i {
    background-color: #2A8488;
    color: white;
    margin-left: -8px;
    margin-right: 8px;
    padding: 6px 8px;
    border-radius: 50%;
}

.get_in_touch img {
    width: 360px;
    height: 520px;
    max-width: 50%;
    position: absolute;
    top: 27%;
    left: 60%;
    transform: translate(-50%, -50%);
    display: block;
}

/* Media Queries for Responsive Design */

@media (max-width: 1200px) {
    .get_in_touch {
        padding-right: 50px;
    }

    .get_in_touch .bg {
        padding: 40px 60px;
    }

    .get_in_touch .bg h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 400;
    }

    .get_in_touch .bg #black_btn {
        background-color: black;
        color: white;
        padding: 10px 16px;
        border-radius: 26px;
        font-size: 14px;
        font-weight: 500;
        line-height: 27px;
        margin-right: 6px;
        transition: background-color 0.3s;
    }

    .get_in_touch .bg #white_btn {
        text-decoration: none;
        background-color: white;
        color: black;
        padding: 10px 16px;
        border-radius: 26px;
        font-size: 14px;
        font-weight: 500;
        line-height: 27px;
        font-weight: 500;
        transition: background-color 0.3s;
    }

    .get_in_touch img {
        width: 310px;
        height: 440px;
        max-width: 50%;
        top: 20%;
        left: 68%;
    }

    .get_in_touch .bg #green {
        color: #0D5D61;
        font-size: 18px;
        font-weight: 500;
        line-height: 36px;
    }

    .get_in_touch .bg .buttons {
        flex-direction: column;
    }

    .get_in_touch .bg #black_btn {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {

    .get_in_touch {
        padding-right: 30px;
        margin: 100px 0;
    }

    .get_in_touch .bg {
        padding: 30px 40px;
        margin-top: 200px;
    }

    .get_in_touch .bg h2 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 400;
    }

    .get_in_touch .bg #black_btn {
        background-color: black;
        color: white;
        padding: 10px 16px;
        border-radius: 26px;
        font-size: 14px;
        font-weight: 500;
        line-height: 27px;
        margin-right: 6px;
        transition: background-color 0.3s;
    }

    .get_in_touch .bg #white_btn {
        text-decoration: none;
        background-color: white;
        color: black;
        padding: 10px 16px;
        border-radius: 26px;
        font-size: 14px;
        font-weight: 500;
        line-height: 27px;
        font-weight: 500;
        transition: background-color 0.3s;
    }

    .get_in_touch .bg #green {
        color: #0D5D61;
        font-size: 18px;
        font-weight: 500;
        line-height: 36px;
    }

    .get_in_touch img {
        width: 300px;
        height: 425px;
        max-width: 60%;
        left: 66%;
        top: 16%;
    }

    .get_in_touch .bg .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .get_in_touch .bg #black_btn,
    .get_in_touch .bg #white_btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 679px) {
    .get_in_touch img {
        display: none;
    }
}

@media (max-width: 576px) {
    .get_in_touch {
        padding-right: 20px;
        margin: 80px 0;
    }

    .get_in_touch .bg h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .get_in_touch .bg #green {
        color: #0D5D61;
        font-size: 18px;
        font-weight: 500;
        line-height: 36px;
        margin: 0 0;
    }

    .get_in_touch img {
        max-width: 90%;
        left: 50%;
        display: none;
    }

    .get_in_touch .bg .buttons {
        margin-top: 22px;
    }

    .get_in_touch .bg #black_btn,
    .get_in_touch .bg #white_btn {
        width: 100%;
        margin: 5px 0;
    }
}

/* ==================== Get In Touch Section Styling End ================== */


/* ==================== Reviews Section Styling Start ================== */

.reviews_sec {
    margin-bottom: 70px;
}

.reviews_sec p {
    font-size: 20px;
}

.reviews {
    padding: 75px 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reviews_sec .r_heading {
    text-align: center;
    color: #2A8488;
    font-weight: 500;
    font-size: 24px;
    line-height: 36px;
}

.reviews_sec .r_subheading {
    text-align: center;
    font-weight: 500;
    font-size: 36px;
    line-height: 50px;
}

.reviews .carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.reviews .carousel .box {
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    border: 0.5px solid #2A8488;
    padding: 15px 30px;
    flex: 0 0 765px;
    /* Fixed flex-basis for each box */
    margin: 0 35px;
    /* Margin for spacing */
}

.reviews .carousel .box .r_name {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 27px;
    color: #2A8488;
}

.reviews .carousel .box .r_location {
    font-size: 16px;
    font-weight: 400;
    line-height: 28.8px;
}

.checked {
    color: #FBC52B;
}

.ratings {
    margin-bottom: 15px;
}

.ratings .fa {
    font-size: 22px;
    margin-right: 5px;
}

.quotes {
    position: relative;
    top: -52px;
}

@media(max-width:1024px) {
    .reviews_sec {
        margin-bottom: 40px;
    }

    .reviews {
        padding: 40px 0;
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .reviews_sec .r_heading {
        text-align: center;
        color: #0D5D61;
        font-weight: 500;
        font-size: 20px;
    }

    .reviews_sec .r_subheading {
        text-align: center;
        font-weight: 500;
        font-size: 32px;
        line-height: 45px;
    }

    .reviews .carousel {
        display: flex;
        transition: transform 0.5s ease;
    }

    .reviews .carousel .box {
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        padding: 0 20px;
        flex: 0 0 570px;
        /* Fixed flex-basis for each box */
        margin: 0 35px;
        /* Margin for spacing */
    }

    .ratings .fa {
        font-size: 18px;
        margin-right: 2px;
    }

    .reviews .box p {
        font-size: 15px;
        font-weight: 400;
        line-height: 25px;
    }

    .reviews .carousel .box .r_name {
        margin-top: 10px;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 600;
        color: #2A8488;
    }

    .reviews .carousel .box .r_location {
        font-size: 12px;
        font-weight: 400;
    }

    .ratings {
        margin-bottom: 10px;
    }

    .quotes {
        position: relative;
        top: -34px;
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .reviews_sec {
        margin-bottom: 40px;
    }

    .reviews {
        padding: 40px 0;
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .reviews_sec .r_heading {
        text-align: center;
        color: #0D5D61;
        font-weight: 500;
        font-size: 18px;
    }

    .reviews_sec .r_subheading {
        text-align: center;
        font-weight: 500;
        font-size: 28px;
    }

    .reviews .carousel {
        display: flex;
        transition: transform 0.5s ease;
    }

    .reviews .carousel .box {
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        padding: 0 20px;
        flex: 0 0 500px;
        /* Fixed flex-basis for each box */
        margin: 0 35px;
        /* Margin for spacing */
    }

    .ratings .fa {
        font-size: 18px;
        margin-right: 2px;
    }

    .reviews .box p {
        font-size: 13px;
        font-weight: 400;
        line-height: 25px;
    }

    .reviews .carousel .box .r_name {
        margin-top: 10px;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 600;
        color: #2A8488;
    }

    .reviews .carousel .box .r_location {
        font-size: 12px;
        font-weight: 400;
    }

    .ratings {
        margin-bottom: 10px;
    }

    .quotes {
        position: relative;
        top: -26px;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .reviews_sec {
        margin-bottom: 40px;
    }

    .reviews {
        padding: 55px 0;
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .reviews_sec .r_heading {
        text-align: center;
        color: #0D5D61;
        font-weight: 500;
        font-size: 18px;
    }

    .reviews_sec .r_subheading {
        text-align: center;
        font-weight: 500;
        font-size: 28px;
        line-height: 36px;
    }

    .reviews .carousel {
        display: flex;
        transition: transform 0.5s ease;
    }

    .reviews .carousel .box {
        background-color: white;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        padding: 0 10px;
        flex: 0 0 600px;
        /* Fixed flex-basis for each box */
        margin: 0 10px;
        /* Margin for spacing */
    }

    .reviews .carousel .box .r_box_review {
        font-size: 15px;
    }

    .reviews .carousel .box .r_name {
        margin-top: 5px;
        margin-bottom: 7px;
        font-size: 13px;
        font-weight: 600;
        color: #2A8488;
    }

    .reviews .carousel .box .r_location {
        font-size: 12px;
        font-weight: 400;
    }

    .checked {
        color: #FBC52B;
    }

    .ratings {
        margin-bottom: 10px;
    }

    .quotes {
        position: relative;
        top: -23px;
    }

    .quotes {
        width: 50px;
        height: 50px;
    }
}

/* ==================== Reviews Section Styling End ================== */


/* =========================== Login Page Styling Start ========================= */

.login form label {
    font-weight: 500;
    color: #0D5D61;
    font-size: 16px;
    line-height: 40px;
}

.login h5 {
    color: #0D5D61;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
}

.login form .green_sub {
    text-decoration: none;
    margin-bottom: 14px;
    color: white;
    background-color: #2A8488;
    padding: 8px 178px;
    border-radius: 3px;
}

.custom-btn {
    background-color: #2A8488;
    color: #fff;
    font-size: 18px;
    line-height: 30px;
}

.login .forgot {
    font-size: 16px;
    line-height: 35px;
    font-weight: 500;
    color: #1877F2;
}

.login .sign {
    font-size: 14px;
    line-height: 35px;
    font-weight: 700;
    color: #1877F2;
}

.continue-btn {
    background-color: white;
    color: #2A8488;
    border: 1px solid rgb(221, 220, 220);
}

.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    border: none;
    margin: 20px 10px;
}

.hr-with-text::before,
.hr-with-text::after {
    content: '';
    flex: 1;
    border-top: 1px solid rgb(185, 184, 184);
}

.hr-with-text::before {
    margin-right: 10px;
}

.hr-with-text::after {
    margin-left: 10px;
}

.hr-with-text span {
    padding: 0 10px;
    color: rgb(185, 184, 184);
}

.login small {
    color: rgb(132, 131, 131);
}


/* =========================== Login Page Styling End ========================= */


/* ================ Select Services page Styling Start =============== */

.select_services {
    margin-bottom: -125px;
}

.select_services .c_box {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 35px;
}

.select_services .checked {
    color: #FBC52B;
    font-size: 20px;
    margin-right: 2px;
}

.select_services .c_box .c_head {
    background-color: #2A8488;
    color: white;
    text-align: center;
    border-radius: 10px 10px 0 0px;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
}

.select_services .box .reviws_no {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.select_services .check_points .checked {
    color: #00B775;
}

.select_services .trust .box {
    width: 231.59px;
    height: 147px;
    padding: 28px 30px;
    background-color: white;
    border: 1.3px solid #2A8488;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    line-height: 15px;
}

.select_services .rating .r_no {
    font-size: 18px;
    font-weight: 600;
    line-height: 27px;
}

.select_services .trust .box .Excellent {
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
}

.select_services .trust .box .ratings_img {
    max-width: 55%;
}

.select_services .trust .box .rate {
    display: ruby-text;
}

.select_services .c_box .d_head {
    background-color: #0D5D61;
    color: white;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0;
    border-radius: 3px;
}

.select_services .c_box .c_sub_head {
    background-color: #0D5D61;
    color: #FBC52B;
    text-align: center;
    font-weight: 500;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 20px;
}

.select_services .c_box .ext {
    display: ruby-text;
    gap: 10px;
}

.select_services .c_box .ext_head {
    font-weight: 500;
}

.select_services .radio_buttons {
    align-content: center;
}

.select_services .radio_buttons .form-check {
    padding-bottom: 10px;
}

.select_services .input-with-icon {
    position: relative;
}

.select_services .input-with-icon input[type="text"],
.select_services .input-with-icon input[type="date"] {
    padding-left: 38px;
    /* Space for the icon */
    font-size: 14px;
    font-weight: 400;
    line-height: 10px;
    /* Adjust as needed */
    border: 1px solid #ccc;
    /* Basic border style */
    border-radius: 5px;
    /* Rounded corners */
    height: 40px;
    /* Adjust height as needed */
    box-sizing: border-box;
    /* Include padding in height/width */
}

.select_services .input-with-icon #dateInput::placeholder {
    color: black;
    /* Change the color to black */
    opacity: 1;
    /* Ensure the opacity is fully opaque */
}

.select_services .input-with-icon #locationInput::placeholder {
    color: black;
    /* Change the color to black */
    opacity: 1;
    /* Ensure the opacity is fully opaque */
}

.select_services .input-with-icon img {
    position: absolute;
    left: 10px;
    /* Adjust icon position */
    top: 10px;
    /* Adjust icon position */
    color: #0D5D61;
    /* Icon color */
}

/* Styling for radio buttons */
.select_services input[type="radio"] {
    accent-color: #0D5D61;
    /* Sets the color of the radio button */
    margin-right: 10px;
    /* Space between radio button and label */
    margin-top: 7px;
}

/* Styling for labels */
.select_services .radio-label {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 16px;
    color: #333333;
    cursor: pointer;
}

/* Optional: Styling for hover effect */
.select_services .radio-label:hover {
    color: #0D5D61;
}

.select_services .input-icon {
    position: relative;
}

.select_services .input-icon input[type="date"],
.select_services .input-icon input[type="text"] {
    padding-left: 35px;
    /* Adjust based on icon size */
}

.select_services .input-icon .icon {
    position: absolute;
    left: 10px;
    /* Adjust icon position */
    top: 50%;
    transform: translateY(-50%);
}

.select_services .text p {
    font-size: 18px;
    font-weight: 300;
    line-height: 35px;
    color: #030807;
}

.select_services h5 {
    font-size: 22px;
    font-weight: 6 00;
    line-height: 33px;
}

.select_services label {
    margin-bottom: 12px;
    font-weight: 300;
    font-size: 16px;
    line-height: 20px;
}

.select_services .s_descr {
    font-size: 18px;
    line-height: 36px;
    font-weight: 500;
}

.select_services .select_heading {
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
}

.select_services .service_points {
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
}

@media(max-width:1024px) {

    .select_services .trust .box {
        width: 182.59px;
        height: 130px;
        font-size: 16px;
        font-weight: 500;
        line-height: 15px;
        padding: 22px 16px;
    }

    .select_services .trust .box h6 {
        font-size: 13px;
        font-weight: 500;
        line-height: 15px;
    }

    .select_services .trust .box .Excellent {
        font-size: 14px;
        font-weight: 600;
        line-height: 15px;
    }

    .select_services .trust .box .ratings_img {
        max-width: 48%;
    }
}

@media(max-width:768px) {
    .select_services .trust .box {
        width: 215px;
        height: 130px;
        font-size: 16px;
        font-weight: 500;
        line-height: 15px;
        padding: 22px 16px;
    }

    .select_services .trust .box h6 {
        font-weight: 500;
        font-size: 16px;
        line-height: 18px;
    }

    .select_services .trust .box .Excellent {
        font-size: 16px;
        font-weight: 600;
        line-height: 15px;
    }

    .select_services .trust .box .ratings_img {
        max-width: 55%;
    }
}

@media(max-width:480px) {
    .select_services .trust .box {
        width: 372px;
        height: 130px;
        font-size: 16px;
        font-weight: 500;
        line-height: 15px;
        padding: 22px 16px;
    }

    .select_services .trust .box h6 {
        font-size: 16px;
        font-weight: 500;
        line-height: 15px;
    }

    .select_services .trust .box .Excellent {
        font-size: 16px;
        font-weight: 600;
        line-height: 15px;
    }

    .select_services .trust .box .ratings_img {
        max-width: 100%;
    }
}

/* ========================= Select Services Page Styling End ========================= */


/*============================ Checkout Information Page Syling Start ======================*/

.checkout {
    margin-bottom: -80px;
}

.go_back {
    padding-left: 56px;
}

.go_back img {
    background-color: rgb(236, 233, 233);
    padding: 5px 5px;
    margin-right: 12px;
}

.go_back a {
    text-decoration: none;
    color: #000;
}

.go_back a p {
    font-size: 16px;
    font-weight: 400;
    line-height: 15px;
}

.checkout h4 {
    font-weight: 500;
    color: #2A8488;
    font-size: 24px;
    line-height: 30px;
}

.checkout .col-lg-7 label {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
}

.checkout .gray {
    margin-top: 20px;
}

.checkout .c_select {
    padding: 10px 30px 10px 10px;
    /* Adjust padding for the icon */
    appearance: none;
    /* Remove default dropdown arrow */
    -webkit-appearance: none;
    /* For WebKit browsers */
    -moz-appearance: none;
    /* For Firefox */
    border: 1px solid #ccc;
    /* Border styling */
    border-radius: 4px;
    /* Rounded corners */
    background-color: #fff;
    /* Background color */
    font-size: 16px;
    /* Font size */
}

.checkout .c_select:focus {
    outline: none;
    /* Remove default focus outline */
    border-color: #2A8488;
    /* Focus border color */
}

.checkout .dropdown-icon {
    position: absolute;
    right: 10px;
    /* Position icon to the right */
    top: 50%;
    transform: translateY(-50%);
    /* Center icon vertically */
    pointer-events: none;
    /* Prevent icon from capturing mouse events */
    color: #333;
    /* Color of the icon */
}

/* Hide the default dropdown arrow for better styling */
.checkout .c_select::-ms-expand {
    display: none;
}

.checkout .gray {
    color: gray;
}

.checkout h4 {
    font-weight: 500;
    size: 24px;
    line-height: 30px;
}

.checkout .right_box {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #2A8488;
}

.checkout .right_box .a_text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.checkout .right_box small {
    color: #666565;
}

.checkout .check_head {
    color: #6b6a6a;
}

.checkout .check_head span {
    color: #2A8488;
    font-size: 18px;
    font-weight: 600;
}

.checkout i {
    color: #2A8488;
}

.checkout .total_pay {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.checkout .c_price {
    color: #2A8488;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}

.checkout .red_btn {
    background-color: #FF4040;
    color: white;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
}

.checkout .head_text {
    color: #2A8488;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.checkout .check_questions {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.checkbox-label {
    color: black;
}

.checkbox-label a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    size: 18px;
    line-height: 15px;
}

.checkbox-label {
    font-weight: 500;
    size: 18px;
    line-height: 20px;
}

.checkout .custom-radio label {
    font-size: 15.5px;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: #2A8488 !important;
    border-color: #2A8488 !important;
}

.checkout .custom-control img {
    background-color: white;
    border: 1px solid rgb(223, 222, 222);
}

@media(max-width:1024px) {
    .checkout .gray {
        margin-top: 20px;
    }
}

@media(max-width:768px) {
    .checkout .gray {
        margin-top: 0;
    }
}

/*====================== Checkout Styling End ====================== */


/* =========================== Appointment Section Styling Start ============================ */

.appointment .box {
    background-color: white;
    box-shadow: 0 5px 4px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid #ADC8C9;
}

.appointment .box h2 {
    color: #0D5D61;
    font-size: 36px;
    font-weight: 500;
}

.appointment h4 {
    color: #2A8488;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
}

.appointment .btn_red {
    background-color: #FF4040;
    color: white;
    padding: 5px 25px;
}

.appointment .box .t_buttons a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px;
    background-color: #ADC8C9;
    padding: 12px 34px;
    margin: 3px 1px;
    border-radius: 3px;
}

.appointment .reviews_no {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
}

.appointment .box .bottom_text h6 {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-left: 10px;
}

.appointment .box .bottom_text hr {
    border: 1px solid #2A848840;
    margin-top: 0;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

.appointment .box .t_buttons .active {
    color: white;
    background-color: #0D5D61;
}

.appointment .right_box {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    border: 1px solid #2A848880;
}

.appointment .right_box .head_text {
    color: #2A8488;
    font-weight: 600;
    font-size: 18px;
    line-height: 30px;
}

.appointment .appoint_questions {
    color: #616161;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

.appointment .right_box .a_text {
    color: #000;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.appointment .app_head span {
    color: #2A8488;
    font-size: 18px;
    font-weight: 600;
}

.appointment .shipping_box {
    background-color: white;
    border: 1px solid #ADC8C9;
    background-color: #F7FFFF;
    border-radius: 10px;
}

.appointment .shipping_box p {
    color: #616161;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.appointment .c_name {
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    margin-left: -30px;
}

.appointment .ratings {
    margin-left: -30px;
    margin-bottom: 15px;
}

.appointment .shipping_box span {
    font-size: 16px;
    font-weight: 600;
    line-height: 15px;
    color: black;
}

.appointment .shipping_box i {
    color: #0D5D61;
    font-size: 18px;
}

.appointment .secondary {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: black;
    border: 0.5px solid #03080740;
    padding: 14px 25px;
}

@media (max-width: 1024px) {
    .appointment .box {
        background-color: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        border-radius: 26px;
        border: 1px solid #ADC8C9;
    }

    .appointment .box .t_buttons a {
        text-decoration: none;
        color: black;
        font-size: 12px;
        font-weight: 400;
        line-height: 15px;
        background-color: #ADC8C9;
        padding: 8px 27px;
        border-radius: 3px;
    }

    .appointment .box .bottom_text hr {
        border: 1px solid #2A848840;
        margin-top: 0;
        margin-bottom: 0.5rem;
        margin-left: 0.2rem;
        margin-right: 0.2rem;
    }

    .appointment .right_box .head_text {
        color: #2A8488;
        font-weight: 600;
        font-size: 14px;
        line-height: 30px;
    }

    .appointment .appoint_questions {
        color: #616161;
        font-weight: 400;
        font-size: 14px;
        line-height: 30px;
    }

    .appointment .right_box .a_text {
        color: #000;
        font-size: 14px;
        font-weight: 500;
        line-height: 30px;
    }

    .appointment .shipping_box p {
        margin-bottom: 0.5rem;
    }

    .appointment .shipping_box span {
        font-size: 14px;
        font-weight: 600;
        line-height: 15px;
        color: black;
    }

    .appointment .shipping_box p {
        color: #616161;
        font-size: 14px;
        font-weight: 400;
        line-height: 25px;
    }
}

@media (max-width: 768px) {
    .appointment .box {
        background-color: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        border-radius: 26px;
        border: 1px solid #ADC8C9;
    }

    .appointment .box .t_buttons a {
        text-decoration: none;
        color: black;
        font-size: 14px;
        font-weight: 400;
        line-height: 15px;
        background-color: #ADC8C9;
        padding: 12px 34px;
        margin: 3px 1px;
        border-radius: 3px;
    }

    .appointment .box .bottom_text hr {
        border: 1px solid #2A848840;
        margin-top: 0;
        margin-bottom: 0.5rem;
        margin-left: 0.7rem;
        margin-right: 0.7rem;
    }

    .appointment .right_box .head_text {
        color: #2A8488;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
    }

    .appointment .appoint_questions {
        color: #616161;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
    }

    .appointment .right_box .a_text {
        color: #000;
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
    }

    .appointment .shipping_box p {
        margin-bottom: 1rem;
    }

    .appointment .shipping_box span {
        font-size: 16px;
        font-weight: 600;
        line-height: 15px;
        color: black;
    }

    .appointment .shipping_box p {
        color: #616161;
        font-size: 16px;
        font-weight: 400;
        line-height: 25px;
    }

    .go_back {
        padding-left: 10px;
    }
}

@media (max-width: 480px) {
    .appointment .box {
        background-color: white;
        box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
        border-radius: 26px;
        border: 1px solid #ADC8C9;
    }

    .appointment .box .t_buttons a {
        text-decoration: none;
        color: black;
        font-size: 10px;
        font-weight: 400;
        line-height: 15px;
        background-color: #ADC8C9;
        padding: 10px 12px;
        border-radius: 3px;
    }

    .appointment .box .bottom_text hr {
        border: 1px solid #2A848840;
        margin-top: 0;
        margin-bottom: 0.5rem;
        margin-left: 0.4rem;
        margin-right: 0.4rem;
    }

    .appointment .right_box .head_text {
        color: #2A8488;
        font-weight: 600;
        font-size: 16px;
        line-height: 30px;
    }

    .appointment .appoint_questions {
        color: #616161;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
    }

    .appointment .right_box .a_text {
        color: #000;
        font-size: 16px;
        font-weight: 500;
        line-height: 30px;
    }

    .appointment .shipping_box p {
        margin-bottom: 1rem;
    }

    .appointment .shipping_box span {
        font-size: 16px;
        font-weight: 600;
        line-height: 15px;
        color: black;
    }

    .appointment .shipping_box p {
        color: #616161;
        font-size: 16px;
        font-weight: 400;
        line-height: 25px;
    }

    .appointment .c_name {
        font-weight: 500;
        font-size: 16px;
        line-height: 30px;
        margin-left: -10px;
    }

    .appointment .ratings {
        margin-left: -10px;
        margin-bottom: 15px;
    }
}

/* =========================== Appointment Section Styling End ============================ */


/* ==================== background image Styling  ================== */

.footer_mail {
    position: relative;
    top: 140px;
}

.footer_mail .f_bg {
    background-image: url('../img/OBJECTS.png');
    background-color: #2A8488;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    color: white;
    align-content: center;
    border-radius: 40px;
}

.footer_mail .col-sm-12 {
    align-content: center;
}

.footer_mail .f_head {
    font-size: 36px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 0.5rem;
}

.footer_mail p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer_mail .email-input {
    border: 1px solid white;
    border-radius: 25px;
    padding: 26px 15px;
    background-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: none;
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
}

.footer_mail .email-input::placeholder {
    color: rgb(255, 255, 255);
}

.footer_mail .email-input:focus {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    outline: none;
}

.footer_mail .sub_f_mail {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.footer_mail #btn_black {
    background-color: #000;
    color: #fff;
    border-radius: 30px;
    border: none;
    padding: 14px 25px;
    font-weight: 600;
    font-size: 18px;
    line-height: 27px;
}

.footer_mail .btn:hover {
    background-color: #333;
}

@media (max-width: 1024px) {

    .footer_mail .f_head {
        font-size: 32px;
        font-weight: 700;
        line-height: 44px;
        margin-bottom: 0.5rem;
    }

    .footer_mail .sub_f_mail {
        font-size: 16px;
        font-weight: 400;
        line-height: 18px;
    }

    .footer_mail .email-input {
        border: 1px solid white;
        border-radius: 25px;
        padding: 22px 15px;
        background-color: rgba(255, 255, 255, 0.25);
        color: #fff;
        box-shadow: none;
        width: 100%;
        font-weight: 600;
        font-size: 16px;
        line-height: 27px;
    }

    .footer_mail #btn_black {
        background-color: #000;
        color: #fff;
        border-radius: 30px;
        border: none;
        padding: 12px 20px;
        font-weight: 600;
        font-size: 14px;
        line-height: 27px;
    }
}

@media (max-width: 768px) {
    .footer_mail .f_head {
        font-size: 2rem;
    }

    .footer_mail .sub_f_mail {
        font-size: 15px;
        font-weight: 400;
        line-height: 20px;
    }

    .footer_mail p {
        font-size: 0.875rem;
    }

    .footer_mail .email-input {
        border: 1px solid white;
        border-radius: 25px;
        padding: 22px 15px;
        background-color: rgba(255, 255, 255, 0.25);
        color: #fff;
        box-shadow: none;
        width: 100%;
        font-weight: 600;
        font-size: 14px;
        line-height: 27px;
    }

    .footer_mail .btn {
        width: 100%;
    }

    .footer_mail #btn_black {
        background-color: #000;
        color: #fff;
        border-radius: 30px;
        border: none;
        padding: 11px 15px;
        font-weight: 600;
        font-size: 12px;
        line-height: 27px;
    }
}

@media (max-width: 480px) {
    .footer_mail .email-input {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 390px) {
    .get_in_touch .bg .buttons {
        margin-top: 10px;
        display: inline-flex;
    }
}

/* ==================== background image Styling END ================== */


/* ==================== Footer Styling Start ================== */

footer {
    background-color: #0d5d6118;
}

footer .col-md-6 {
    padding: 0;
    margin: 0;
}

footer h1 {
    font-weight: 500;
    font-size: 24px;
    line-height: 25px;
}

footer a {
    text-decoration: none;
    color: black;
}

footer a:hover {
    color: #2A8488;
    text-decoration: none;
}

footer p {
    margin: 10px 0;
    font-size: 18px;
    line-height: 25px;
    font-weight: 400;
}

.pages p {
    margin: 30px 0;
    font-size: 18px;
}

footer .service {
    padding-left: 42px;
}

.service p {
    margin: 30px 0;
}

footer h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 15px;
}

footer .f-heading {
    font-weight: 600;
    font-size: 18px;
    margin-top: 25px;
}

footer .footer_com_detail {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
}

footer .m-contact {
    margin-bottom: 30px;
}

footer .social_links {
    background-color: #C4DDDE;
    border-radius: 20px;
    margin-right: 84px;
}

footer hr {
    border: 1px solid #0d5d6121;
    margin-top: 30px;
}

footer .copyright {
    margin-top: 30px;
    font-weight: 400;
}

footer .copyright a {
    margin-top: 30px;
    color: #2A8488;
}

footer .f_chat {
    background-color: #2A8488;
    color: white;
    border-radius: 6px 6px 0 0;
    margin-top: 31px;
}

footer .chat {
    position: fixed;
    /* Ensure the chat button is fixed */
    bottom: 0;
    /* Adjust as needed */
    right: 20px;
    /* Adjust as needed */
    background-color: #2A8488;
    /* Background color as specified */
    color: white;
    /* Text color as specified */
    border-radius: 10px 10px 0 0;
    /* Rounded corners as specified */
    margin-left: 0;
    /* Remove margin since it's not needed for fixed position */
    font-size: 20px;
    /* Font size as specified */
    font-weight: 500;
    /* Font weight (px to number) */
    line-height: 30px;
    /* Line height as specified */
    padding: 10px;
    /* Optional: add padding for better spacing */
}

footer .chat img {
    width: 32px;
    /* Image width as specified */
    height: 32px;
    /* Image height as specified */
    vertical-align: middle;
    margin-left: 85px;
    /* Aligns the image with the text */
}



@media (max-width: 1024px) {
    footer .social_links .icons a img {
        width: 36px;
        height: 36px;
    }

    footer p {
        margin: 10px 0;
        font-size: 12px;
        line-height: 22px;
        font-weight: 400;
    }

    .pages p {
        margin: 24px 0;
        font-size: 14px;
    }

    .service p {
        margin: 24px 0;
        font-size: 14px;
    }

    footer .footer_com_detail {
        font-size: 13px;
        line-height: 25px;
        font-weight: 500;
    }

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 35px;
    }

    footer .chat img {
        width: 26px;
        height: 26px;
        margin-left: 70px;
    }

    footer .chat {
        background-color: #2A8488;
        color: white;
        border-radius: 8px 8px 0 0;
        margin-left: 50px;
        font-size: 16px;
        font-weight: 500px;
        line-height: 30px;
    }

    footer .service {
        padding-left: 35px;
    }
}

@media (min-width: 1025px) and (max-width: 1220px) {
    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 15px;
    }
}


@media (min-width: 992px) and (max-width: 1024px) {
    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 35px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 75px;
    }
}


@media (max-width: 768px) {
    footer .social_links .icons a img {
        width: 44px;
        height: 44px;
    }

    footer p {
        margin: 10px 0;
        font-size: 16px;
        line-height: 25px;
        font-weight: 400;
    }

    .pages p {
        margin: 30px 0;
        font-size: 16px;
    }

    .service p {
        margin: 30px 0;
        font-size: 16px;
    }

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 75px;
    }

    footer .chat img {
        width: 20px;
        height: 20px;
        margin-left: 55px;
    }

    footer .chat {
        background-color: #2A8488;
        color: white;
        border-radius: 8px 8px 0 0;
        margin-left: 50px;
        font-size: 14px;
        font-weight: 500px;
        line-height: 30px;
    }

    footer .service {
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 220px;
    }
}

@media (max-width: 530px) {

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 175px;
    }


}

@media (max-width: 480px) {
    footer .social_links .icons a img {
        width: 40px;
        height: 40px;
    }

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 120px;
    }


}

@media (max-width: 430px) {
    footer .social_links .icons a img {
        width: 36px;
        height: 36px;
    }

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        margin-right: 104px;
    }

    footer .chat img {
        width: 20px;
        height: 20px;
        margin-left: 30px;
    }

    footer .chat {
        background-color: #2A8488;
        color: white;
        border-radius: 8px 8px 0 0;
        margin-left: 50px;
        font-size: 14px;
        font-weight: 500px;
        line-height: 30px;
    }
}

@media (max-width: 375px) {
    footer .social_links {
        margin-right: 45px;
    }
}

@media (max-width: 320px) {

    footer .social_links {
        background-color: #C4DDDE;
        border-radius: 25px;
        /* margin-right: 48px; */
    }

    footer .chat img {
        width: 20px;
        height: 20px;
        margin-left: 20px;
    }

    footer .chat {
        background-color: #2A8488;
        color: white;
        border-radius: 8px 8px 0 0;
        margin-left: 50px;
        font-size: 14px;
        font-weight: 500px;
        line-height: 30px;
    }
}


/* ==================== Footer Styling End ================== */