/* General Box Styling */
.service-box {
  padding: 15px;
  height: 300px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
  background-color: black; /* Change background color on hover */
  color: white; /* Change font color on hover */
}

/* Service Box For Calculator */
.service-box-cal {
  padding: 15px;
  height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box-cal:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
  background-color: black; /* Change background color on hover */
  color: white; /* Change font color on hover */
}

/* Apply the Service Box 2 */
.service-box2 {
  padding: 15px;
  height: 100px;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-box2:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
  background-color: black; /* Change background color on hover */
  color: white; /* Change font color on hover */
}

/* Apply Hover and Shadow Effect to Other Sections */
.box, .custom-mobile-box {
  padding: 15px;
  height: auto;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box:hover, .custom-mobile-box:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .service-box, .box, .custom-mobile-box {
    margin-bottom: 30px; /* Increase margin for better spacing */
  }

  .service-box p, .custom-mobile-box p {
    font-size: 14px; /* Adjust font size for readability on small screens */
  }

  .service-box img, .custom-mobile-box img {
    height: auto;
  }
}
.service-box h2,
.service-box h4 {
  margin-bottom: 10px; /* Reduce the margin-bottom for less space */
}

.service-box p {
  margin-top: 0;
  margin-bottom: 10px; /* Ensure consistency in spacing */
  text-align: justify; /* Optional: justify text for better readability */
}


.service-box ul {
  padding-left: 20px; /* Ensure bullets are displayed */
  margin: 10px 0;
}

.service-box ul li {
  margin-bottom: 5px;
  list-style-type: disc; /* Ensure bullets are displayed */
}

.service-box .learn-more-btn {
  display: inline-block;
  margin-top: auto; /* Ensure the button stays at the bottom */
  padding: 10px 15px;
  color: #fff;
  background-color: #007bff;
  border-radius: 5px;
  text-decoration: none;
}

.service-box .learn-more-btn:hover {
  background-color: #0056b3;
}

.service-icon {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}
.custom-mobile-box-s2 {
  height: auto;
  padding: 10px; /* Adjust padding as necessary */
  text-align: justify;

}


/* Custom Mobile Box Specific Styling */
#custom-mobile-box-small-height,
#custom-mobile-box-s2,
#custom-mobile-box-width-ex-long,
#custom-mobile-box-width-one-long {
  max-width: 100%;
  margin: 0 auto; /* Centering the box */
}

#custom-mobile-box-s2 {
  max-width: 300px;
  padding: 5px 5px; /* Add padding for top and bottom */
}

#custom-mobile-box-small-height {
  max-width: 500px;
  padding: 30px 15px; /* Add padding for top and bottom */
}

#custom-mobile-box-width-ex-long {
  max-width: 800px;
}

#custom-mobile-box-width-one-long {
  max-width: 1200px;
  height: auto;
  padding: 30px 15px; /* Add padding for top and bottom */
}

#custom-mobile-box-width-one-long p {
  text-align: justify; /* Ensured text alignment is justified */
  font-size: 16px; /* Adjusted font size for readability */
  line-height: 1.6; /* Set line height for better readability */
}

#custom-mobile-box-width-one-long p {
  text-align: justify;
}

/* Update Image Fit in Box with Responsive Height */
.image-fit-300 {
  max-height: 250px; /* Set maximum height */
  width: 100%;
  max-width: 100%; /* Ensures image does not overflow */

  object-fit: cover; /* Maintain aspect ratio and cover container */
}

/* Media Queries for Responsive Image Heights */
@media (max-width: 768px) {
  .image-fit-300 {
    height: 200px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 576px) {
  .image-fit-300 {
    height: 150px; /* Further adjust height for even smaller screens */
  }
}

/* Adjust Padding Between Heading and Paragraph */
#custom-mobile h2 {
  margin-bottom: 20px; /* Adjust as necessary */
}


/* Media Queries for Mobile */
@media (max-width: 768px) {
  #custom-mobile-box-width-one-long {
    padding: 20px 10px; /* Adjusted padding for smaller screens */
  }
}

@media (min-width: 1200px) {
  #custom-mobile-box-width-one-long {
    max-width: 1200px; /* Limited max-width on larger screens */
  }
}
@media (max-width: 768px) {
  .service-box {
    margin-bottom: 30px; /* Increase margin for better spacing */
  }

  #custom-mobile-box-small-height, 
  #custom-mobile-box-width-ex-long,
  #custom-mobile-box-width-one-long {
    padding: 20px 10px; /* Adjust padding for smaller screens */
  }
}

@media (min-width: 769px) {
  .col-md-3, .col-md-8, .col-md-4 {
    display: flex;
  }

  .col-md-8 {
    justify-content: center; /* Center the content in the wider column */
  }
}

/* General Box Styling */
.box {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  background-color: #f9f9f9;
  width: 100%;
  max-width: 500px; /* Added max-width */
  min-height: 200px; /* Added min-height for small screens */
  box-sizing: border-box;
}

.box:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
}

.icon {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

.box-content h3 {
  margin: 0 0 10px;
}

.box-content p {
  margin: 0;
}

/* Custom Mobile Box General Styling */
#custom-mobile-box,
#custom-mobile-box-small-height,
#custom-mobile-box-long,
#custom-mobile-box-width-long,
#custom-mobile-box-width-ex-long,
#custom-mobile-box-s2,
#custom-mobile-box-width-one-long {
  height: auto; /* Flexible height */
  padding: 20px;
  transition: background-color 0.3s, color 0.3s;
}

#custom-mobile-box:hover,
#custom-mobile-box-small-height:hover,
#custom-mobile-box-s2:hover,
#custom-mobile-box-long:hover,
#custom-mobile-box-width-long:hover,
#custom-mobile-box-width-ex-long:hover,
#custom-mobile-box-width-one-long:hover {
  background-color: black;
  color: white;
}
/* Custom Mobile Box Specific Styling */
.custom-mobile-box-s2 .service-icon {
  margin-bottom: 5px; /* Adjusted margin for closer spacing */
}

.custom-mobile-box-s2:hover .service-icon {
  filter: hue-rotate(0deg) saturate(100%) brightness(50%) invert(19%) sepia(100%) saturate(2224%) hue-rotate(338deg) brightness(98%) contrast(119%);
}

#custom-mobile-box:hover .service-icon,
#custom-mobile-box-small-height:hover .service-icon,
#custom-mobile-box-s2:hover .service-icon,
#custom-mobile-box-long:hover .service-icon,
#custom-mobile-box-width-long:hover .service-icon,
#custom-mobile-box-width-ex-long:hover .service-icon,
#custom-mobile-box-width-one-long:hover .service-icon {
  filter: hue-rotate(0deg) saturate(100%) brightness(50%) invert(19%) sepia(100%) saturate(2224%) hue-rotate(338deg) brightness(98%) contrast(119%);
}

/* Custom Mobile Box Specific Heights and Widths */
#custom-mobile-box {
  max-height: 450px;
}

#custom-mobile-box-small-height {
  max-height: 250px;
}

#custom-mobile-box-long {
  max-height: 650px;
}

#custom-mobile-box-width-long {
  width: 90%;
  max-width: 500px;
  max-height: 200px;
}

#custom-mobile-box-width-ex-long {
  width: 90%;
  max-width: 800px;
  max-height: 250px;
}

#custom-mobile-box-width-one-long {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto; /* Centering the box */
}

/* Learn More Button */
#custom-mobile-box-long .learn-more-btn {
  display: block;
  width: fit-content;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #D6ACC3;
  color: white;
  text-align: center;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none; /* If the button is a link */
  transition: background-color 0.3s, color 0.3s;
}

#custom-mobile-box-long .learn-more-btn:hover {
  background-color: #C097AD; /* Darken the background on hover */
}

/* Justify Paragraph Text */
#custom-mobile-box-long p {
  text-align: justify;
}

/* Service Icon */
.service-icon {
  display: block;
  margin: 0 auto 20px auto;
  width: 30px;
  height: 30px;
}

/* Logo Icons */
.logo-icon {
  width: 50px;
  height: 50px;
  fill: #764769; /* Set the color of the SVG icon */
}

/* Tech Icons Container */
.tech-icons-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.tech-icons-container div {
  text-align: center;
  margin: 10px;
}

/* Mobile Features Section */
#mobile-features {
  padding: 40px 0;
}

.feature-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.feature-list {
  list-style-type: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 20px;
  background-color: #93AEC1;
  color: white;
  padding: 30px;
}

.image-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* Adjust as needed */
}

@media (max-width: 767px) {
  .image-box img {
    margin-top: 20px; /* Add margin if needed when stacked */
  }
}

.feature-list li.active .feature-description {
  display: block;
}

.list-heading {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-size: 1.30em; /* Increase heading font size */
}

.feature-description {
  display: none;
  margin-top: 10px;
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.arrow.up {
  transform: rotate(180deg);
}

.feature-list li.active .arrow {
  transform: rotate(180deg);
}

.solution-section {
  display: flex;
  flex-wrap: wrap;
  background-color: black;
  color: white;
  padding: 20px;
}

.column {
  flex: 1 1 50%;
  padding: 20px;
}

.solution-header {
  font-size: 50px;
  margin-bottom: 30px;
}

.svg-with-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: #f0f0f0;
}

.svg-with-heading img {
  max-width: 100%;
  width: 100%; /* Set width to 100% for responsiveness */
  height: auto;
}

.svg-with-heading .solution-header {
  margin-top: 20px;
  text-align: left;
}

.svg-with-heading p,
.svg-with-heading ul {
  text-align: left;
  max-width: 800px;
}

.svg-with-heading ul {
  list-style-type:
  none;
  padding: 0;
}

.svg-with-heading li {
  margin: 10px 0;
}

.svg-with-heading li strong {
  font-weight: bold;
}

/* Tabbed Panel */
.tabed-panel {
  background-color: white;
  color: black;
  text-align: center;
  padding: 20px;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.tab {
  padding: 10px 20px;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 5px;
  margin: 0 10px;
  transition: background-color 0.3s;
}

.tab:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.tab.active {
  background-color: #D6ACC3;
  color: black;
}

.tab-content {
  display: none;
}

.tab-content img {
  max-width: 100%;
  width: 100%; /* Set width to 100% for responsiveness */
  height: auto;
}

.tab-content.active {
  display: block;
}

/* Platform */
.platform {
  margin-bottom: 15px;
}

.platform-header {
  font-weight: bold;
  cursor: pointer;
}

.platform-header:hover {
  color: red;
}

.platform-arrow {
  display: inline-block;
  margin-left: 5px;
  transform: rotate(45deg);
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transition: color 0.3s;
}

.platform-header:hover .platform-arrow {
  border-color: red;
}

.svg-section {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Adjust height as needed */
  background-color: white; /* Optional: Change background color */
}

.svg-section img {
  max-width: 100%;
  width: 100%; /* Set width to 100% for responsiveness */
  height: auto;
}

/* FAQ List Styles */
.faq-list {
  list-style-type: none;
  padding: 0;
}

.faq-list li {
  margin-bottom: 20px;
  background-color: #4E79AB;
  color: white;
  padding: 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.faq-list li.active {
  background-color: #3b5a89;
}

.faq-heading {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  font-size: 1.25em;
}

.arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.arrow.up {
  transform: rotate(180deg);
}

.faq-description {
  display: none;
  margin-top: 10px;
}

.faq-list li.active .faq-description {
  display: block;
}

.faq-list li.active .arrow {
  transform: rotate(180deg);
}

/* Media Queries for Mobile */
@media (max-width: 768px) {
  .solution-section {
    flex-direction: column;
  }

  .column {
    flex: 1 1 100%;
    padding: 10px;
  }
}

@media (max-width: 768px) {
  .service-box {
    margin-bottom: 30px; /* Increase margin for better spacing */
  }

  .service-box p {
    font-size: 14px; /* Adjust font size for readability on small screens */
  }

  .service-box img {
    height: auto;
  }
}

/* Ensuring the section is visible on all devices */
#custom-mobile {
  display: block;
  visibility: visible;
}

@media (max-width: 768px) {
  #custom-mobile {
    display: block;
  }
}
/* General Styling */
#scrolling-mobile {
  padding: 30px 0;
}

#scrolling-mobile .scrolling-section {
  max-height: 400px; /* Adjust this value as needed */
  overflow-y: auto;
  padding-left: 30px;
  padding-right: 15px;
}

#scrolling-mobile .content-right .box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

#scrolling-mobile .content-right .icon {
  width: 50px; /* Adjust this value as needed */
  height: 50px; /* Adjust this value as needed */
  margin-right: 20px;
}

#scrolling-mobile .content-right .box-content {
  max-width: calc(100% - 70px); /* Adjust this value as needed */
}

/* Hover Effect */
#scrolling-mobile .content-right .box:hover {
  box-shadow: 0 4px 6px rgba(255, 0, 0, 0.5);
  background-color: black; /* Change background color on hover */
  color: white; /* Change font color on hover */
}

/* Media Queries */
@media (max-width: 768px) {
  #scrolling-mobile .scrolling-section {
    max-height: 300px; /* Adjust this value as needed */
    padding-left: 15px;
    padding-right: 15px;
  }

  #scrolling-mobile .content-right .icon {
    width: 40px; /* Adjust this value as needed */
    height: 40px; /* Adjust this value as needed */
  }

  #scrolling-mobile .content-right .box-content {
    max-width: calc(100% - 50px); /* Adjust this value as needed */
  }
}

/* Calculator CSS */
.hidden {
  display: none;
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background-color: #007bff;
  color: #fff;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

button.red {
  background-color: red;
}


button.green {
  background-color: lightsalmon;
}

button.red:hover {
  background-color: darkred;
}

.back-arrow {
  display: inline-block;
  cursor: pointer;
  font-size: 24px;
  margin-bottom: 20px;
}
.checkbox-group {
  text-align: left;
}

.checkbox-group label {
  display: block; /* Ensure each checkbox is on its own line */
  margin-bottom: 10px; /* Space between checkboxes */
}

.step {
  margin: 2px;
}
