html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
  
    width: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 100px; /* Space for the fixed bottom div */
    max-width: 800px;
    margin: 0 auto; /* Center content on the page */
    padding-top: 0; /* Default padding for mobile */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

@media (min-width: 992px) {
    body {
        padding-top: 50px; /* Add padding only for desktop */
    }

    #callButtonMobile {
        display: none; /* Hide mobile call button on desktop */
    }

    #callButtonDesktop {
        display: flex; /* Show desktop call button */
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        padding: 10px;
        background-color: #28a745;
        color: #fff;
        text-align: center;
        border-radius: 5px;
    }
}

@media (max-width: 991px) {
    #callButtonDesktop {
        display: none; /* Hide desktop call button on mobile */
    }

    #callButtonMobile {
        display: flex; /* Show mobile call button */
        justify-content: center;
        align-items: center;
        font-size: 1.2rem;
        padding: 10px;
        background-color: #28a745;
        color: #fff;
        text-align: center;
        text-decoration: none;
        border-radius: 5px;
    }
}

.content-section {
    padding: 20px;
    text-align: center;
}

.content-section h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.content-section p {
    font-size: 1.1rem;
    color: #555;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.service-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: center;
    margin-bottom:2em;
}

.service-section h2 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.service-section p {
    font-size: 1rem;
    color: #666;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.service-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.bottom-div {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    z-index: 1000;
}

.bottom-div button {
    font-size: 1.2rem;
    padding: 10px;
    border: none;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
}

i.fa.fa-arrow-left {
    margin-right: 1em;
}