
.chatbox-button-text {
    color: #fff !important;
    position: relative;
    top: -20px;
    font-size: 110%;
    font-weight: 800;
    width: auto !important;
    background: 0 0 !important;
    height: auto !important;
    font-style: normal !important;
    min-width: auto !important;
    text-align: left !important;
    text-shadow: none !important;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif !important;
}

.chatbox-launch-button, .chatbox-launch-button svg {
    height: 48px !important;
    display: inline-block !important;
}
.chatbox-attention-grabber, .chatbox-launch-button {
    left: 10px !important;
    z-index: 2 !important;
}
.chatbox-launch-button {
    background-color: #78909c !important;
    font-size: 100% !important;
    position: fixed !important;
    bottom: 15px !important;
    width: auto !important;
    background: #78909c !important;
    border: 0 !important;
    border-radius: 100px !important;
    box-shadow: 0 3px 15px 0 rgba(0, 0, 0, .25) !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    transition: all .4s, bottom .8s ease-in-out !important;
    cursor: pointer !important;
    outline: 0 !important;
    margin: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    animation-name: loadBubble;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: .2s;
}

  .video-background-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw; /* Ensure full width for centering */
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    z-index: -1;
  }
  
  /* Overlay Content */
  .overlay-content {
    position: absolute;
    z-index: 1;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    width: 100vw; /* Ensure full width for centering */
    height: 100%; /* Ensure full height for vertical centering */
    min-height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center both horizontally and vertically */
    box-sizing: border-box;
  }


  /* Image/Video Background Container */
.image-header-container {
    position: relative;
    width: 100%;
    height: 100%; /* Full viewport height */
    overflow: hidden;
    margin: 0;
    min-height: 700px;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Center horizontally */
  }
  


#header-info-container {
    display: flex;              /* Enable flexbox */
    flex-direction: column;     /* Arrange children vertically */
    align-items: center;        /* Center horizontally */
    text-align: center;         /* Center text */
    margin-top: 10px; 
    margin-bottom: 20px; 
    padding: 10px 0; 
    border-radius: 8px; 
    max-width: 1000px;
    margin-left: auto;          /* Center the container */
    margin-right: auto;         /* Center the container */
  
  }
  
  .header-text {
    color: white;
    font-size: 16px;
    width: auto; /* Change this to auto or a specific value */
    max-width: 100%; /* Ensure it doesn't exceed the parent width */
    text-align: center; /* Center text */
    margin-left: auto; /* Center horizontally */
    margin-right: auto; /* Center horizontally */
    width: 60vw;
  }
  
  .header-logo {
    width: 300px;  /* Set desired width */
    height: auto;  /* Maintain aspect ratio */
    display: block; 
    margin: 10px auto 0; /* Center the image and add space above */
  }
  
  


  
  /* HOME SERVICE (FIRST 3 SQUARE SECTIONS) */
  .service-container h1 {
    padding: 10px;
    padding-bottom: 20px;
  }
  
  
  /* HEADINGS */
  .main-heading, .sub-heading {
    font-size: 36px;
    margin: 10px 0;
    font-weight: 500; /* Thicker weight for headings */
    background: none; /* Ensure no background color */
    padding: 0; /* Remove padding if any */
  }
  
  .sub-heading {
    font-size: 24px;
    margin-top: 25px; /* Add margin on top to separate from main heading */
    margin-bottom: 35px; /* Add margin on bottom to separate from main heading */
  }

.home-services {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    background-color: none;
    box-sizing: border-box;
    width: 100%;
    align-items: center; /* Center items horizontally */
}

/* Hide scrollbar but keep scrolling functionality */
.home-services::-webkit-scrollbar {
    display: none; /* For Chrome, Safari, and Opera */
}

.home-services {
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    scrollbar-width: none; /* For Firefox */
}

.home-services h1 {
    color: #000;
}

/* Wrapper to hold both image and text content */
.home-services-wrapper {
    display: flex;
    flex-direction: row; /* Ensure horizontal layout */
    gap: 50px; /* Add space between items */
    align-items: center; /* Center items vertically within the wrapper */
    justify-content: center; /* Center the content within the container */
    flex-wrap: nowrap; /* Prevent wrapping */
    box-sizing: border-box; /* Ensure padding and border are included in width */
    margin-top: 10px; /* Add padding to avoid touching edges */
    width: auto;
}



/* Service Item Styling */
.service-item {
    max-width: 800px; /* Fixed width for each service item */
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden; /* Prevent content from overflowing */
    margin-bottom: 20px;
    white-space: normal; /* Allow text to wrap onto multiple lines */
}

.service-item h1, .service-item h2, .service-item p {
    margin: 0;
    padding: 0;
}

.service-item h1 {
    font-size: 24px;
    text-align: center; /* Center align heading text */
    color: black;
    margin-bottom: 20px; /* Match padding with common-heading */
    font-weight: 400; /* Match font weight with why-us */
}

.service-item h2 {
    font-size: 18px;
    text-align: center; /* Center align heading text */
    margin: 10px auto; /* Match padding with common-subheading */
    font-weight: 400; /* Match font weight with why-us */
}

.service-item p {
    font-size: 14px;
    margin: 10px 0; /* Match padding with common-text */
    font-weight: 300; /* Match font weight with why-us */
}

/* Service item background colors */
.service-item:nth-of-type(1) {
    background-color: #2a6d9a; /* Dark Blue */
    color: white;
}

.service-item:nth-of-type(2) {
    background-color: #e2e2e2; /* Light Gray */
    color: black;
}

.service-item:nth-of-type(3) {
    background-color: #2596be; /* Blue */
    color: white;
}

/* Container for service items */
.service-items-container {
    display: flex;
    flex-direction: row; /* Ensure horizontal layout */
    gap: 20px; /* Space between items */
    padding-top: 20px; /* Add padding to avoid touching edges */
    box-sizing: border-box; /* Ensure padding is included in width */
    padding-bottom: 0;
    justify-content: flex-end; /* Align content to the right */
}

/* Container for image */
.image {
    display: flex;
    justify-content: flex-start; /* Align image content to the left */
    align-items: center;
    position: relative;
    height: 100%; /* Make the image fill the container height */
    background-color: none;
    overflow: hidden; /* Hide parts of the image that extend beyond the container */
}

/* Adjust image to fit container and prevent overflow */
.image img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
}

/* Why Work With Us Section */
.why-us {
    background-color: #fff;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
}

.why-us h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px; /* Standardized margin for heading */
    font-weight: 400; /* Match font weight with service-items */
}

.why-us p.sub-heading {
    font-size: 16px;
    color: #333;
    margin: 10px auto 20px auto; /* Standardized margin for sub-heading */
    max-width: 800px;
    font-weight: 300; /* Match font weight with service-items */
}

.why-us-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    width: 100%;
    min-width: 100vw;
    scroll-behavior: smooth;
    justify-content: center; /* Center horizontally */
}

.why-us-container::-webkit-scrollbar {
    display: none;
}

.why-us-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reason {
    flex: 0 0 300px;
    padding: 20px;
    background-color: #e2e2e2;
    color: black;
    text-align: center; /* Center align reason text */
}

.reason:nth-of-type(2) {
    background-color: #f3f3f3;
}

.reason:nth-of-type(3) {
    background-color: #2596be;
    color: white;
}

.reason:nth-of-type(4) {
    background-color: #2a6d9a;
    color: white;
}

.reason h2 {
    font-size: 18px;
    text-align: center; /* Center align heading text */
    margin: 10px auto; /* Match padding with common-subheading */
    font-weight: 400; /* Match font weight with service-items */
}

.reason p {
    font-size: 14px;
    text-align: center; /* Center align heading text */
    margin: 10px auto; /* Match padding with common-subheading */
    font-weight: 300; /* Match font weight with service-items */
}


/* under 700 */
@media screen and (max-width: 657px) {    
    .header-logo {
        width: 200px;  /* Set desired width */
      }
    
    .home-services-wrapper, .service-items-container,
    .why-us-container {
        flex-direction: column;
        align-items: center;
        min-width: 100%;
    }

    .image, .main-image {
        width: 100%; /* Ensure images scale to fit container width */
        height: auto; /* Maintain aspect ratio */
        margin-right: 0; /* Reset margin for mobile */
    }

    .main-heading {
        font-size: 28px; /* Consistent heading size */
    }

    .sub-heading {
        font-size: 16px; /* Consistent sub-heading size */
    }

    .button_link {
        font-size: 14px;   
        width: 150px; /* Fixed width for buttons */
    }

    .reason {
        flex: 1;
        max-width: 100%; /* Full width for reasons */
    }

    #header-info-container {
        margin-bottom: 20px; /* Spacing adjustment */
    }

}

  
/* after 700  */
@media screen and (min-width: 769px) {
    .header-logo {
        width: 250px;  /* Set desired width */
    }
}

      /* up to 10000px */
@media screen and (max-width: 10000px) {
    
    .image-header-container {
        height: 100vh; /* Use viewport width for height in landscape mode */
    }

   .header-text {
        color: white;
        font-size: 10px;
        margin: 2px;
    }
}  



/* under 770px (mobile size) */
@media screen and (max-width: 768px) {
  .menu-bar {
      flex-direction: column;
  }

  .menu-column.left-column {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: rgba(0,0,0,0.9);
      text-align: center;
  }

  .menu-column.left-column.active {
      display: flex;
  }

  .menu-column.left-column .menu-item {
      padding: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .hamburger-menu {
      display: flex;
  }

  .menu-column.right-column {
      position: absolute;
      top: 15px;
      left: 15px;
  }

}
