#loadingScreen {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    /* Change to match your website's background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it is above all other content */
}

.revised-nav {
    padding-right: 50px;
    background-color: white;
    padding-left: 50px;
    border-radius: 0px;
}

.revised-nav img {
    width: 150px;
}

.zoom-container {
    overflow: hidden;
}

.desktop-banner {
    display: block;
}

.mobile-banner {
    display: none;
}

.side-nav li a {
    line-height: 1px;
}

.services-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: white;
    color: black;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.mobile-view-services {
    display: none;
}

.desktop-view-services {
    display: block;
}

.navbar-collapse {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    height: 100%;
    /* Full height for the menu */
}

.nav.navbar-nav.side-nav {
    flex-grow: 1;
    /* Take up available space */
}

.social-media {
    display: flex;
    justify-content: left;
    /* Center the icons horizontally */
    align-items: baseline;
    /* Align the icons vertically */
    margin-top: 8px;
    /* Push the icons to the bottom */
    padding: 10px 0;
    /* Add some spacing */
    list-style: none;
    /* Remove default list styling */
}

.social-media li {
    margin: 0 4px;
    /* Add spacing between icons */
}

.social-media a {
    color: inherit;
    /* Inherit color for icons */
    text-decoration: none;
    /* Remove underline */
    font-size: 20px;
    /* Adjust icon size */
}

.icon-zoom {
    transition: transform 0.3s ease; /* Smooth zoom effect */
  }
  
  .icon-zoom:hover {
    transform: scale(1.2); /* Zoom to 110% on hover */
  }

  .contact-links {
    color: #ffff !important;
    text-decoration: none;
  }

  .contact-links:hover {
    color: #ef8902 !important;
    text-decoration: none;
  }

.banner-text {
    text-align: right;
    margin-top: 250px;
    margin-bottom: -5px;
    font-size: 40px;
    float: right;
    line-height: 1.3;
}

.animated-text-container {
    height: 1.5em;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    /* Push container to the right */
}

.text-item {
    display: block; /* or inline-block */
    position: absolute;
    height: auto; /* Let the text adjust its height naturally */
    line-height: 1.5; /* Adjust line height for better spacing */
    font-size: 40px; /* Ensure consistent font size */
    padding: 0.2em 0; /* prevent clipping */
    bottom: -80px;
    width: 100%;
    text-align: right;
    transition: bottom 0.5s ease-in-out;
}

.text-item.active {
    bottom: 0;
}

.index-banner {
    height: 600px !important;
}

/* Styles for mobile devices (max-width: 767px) */
@media only screen and (max-width: 767px) {
    .navbar-nav li {
        margin: 1px 0;
    }

    .revised-nav {
        padding-right: 20px;
        padding-left: 20px;
    }

    .revised-nav img {
        width: 100px;
    }

    .zoom-container {
        overflow: visible;
    }

    footer .social-media {
        margin-top: 20px !important;
    }

    .desktop-banner {
        display: none;
    }

    .mobile-banner {
        display: block;
    }

    .mob-mt-50 {
        margin-top: 50px;
    }

    .mobile-view-services {
        display: block;
    }

    .desktop-view-services {
        display: none !important;
    }

    .services-body {
        display: block !important;
        overflow: scroll !important;
    }

    .banner-text {
        margin-top: 150px;
    }

    /* .animated-text-container {
        height: 25px;
    } */

    .text-item {
        font-size: 25px;
    }

    .video-bg {
        height: 400px;
    }

    .index-banner {
        height: 600px !important;
    }

    .we-do {
        margin-top: 320px;
    }
}

/* Styles for tablets (min-width: 768px) and (max-width: 1024px) */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    footer .social-media {
        margin-top: 40px !important;
    }

    .mob-mt-50 {
        margin-top: 50px;
    }
}