/* General Layout and Styling */
body,html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background: #f4f4f4; /* Light grey background for the page */
}

/* Header overall styling */
header {
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 0;
  z-index: 100; /* Ensure it is above other content */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add shadow for depth */
  background-color: #003662; /* Company color */
  color: white;
  padding: 1rem 0; /* Padding top and bottom */
  display: flex;
  justify-content: center; /* Centers the inner container */
}

.header-footer-container {
  width: 100%;
  max-width: 1200px; /* Maximum width for the content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* Padding on the sides */
}

.logo {
  margin-left: -20px; /* Adjust this value as needed to align with design */
}

nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0 auto; /* This centers the navigation links */
}

nav ul li {
  margin-right: 20px; /* Increase spacing */
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover,
nav a:focus {
  color: #99AEC0; /* Light blue for hover effect */
  transition: color 0.3s ease;
}

/* Button styling */
.quote-btn {
  background-color: rgb(218, 149, 20); /* Green color for the button */
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  outline: none;
  margin-left: auto; /* Aligns button to the far right */
}

.quote-btn:hover {
  background-color: #194A71; /* Darker shade for hover effect */
}

/* Responsive Navbar Styles */
@media only screen and (max-width: 768px) {
  .header-footer-container {
      flex-direction: column;
      align-items: flex-start;
  }

  nav ul {
      flex-direction: column; /* Stack menu items vertically */
      width: 100%; /* Full-width for mobile */
      padding-left: 0;
      margin-left: 0;
  }

  nav ul li {
      width: 100%; /* Make each list item full-width */
  }

  .quote-btn {
      margin-top: 10px; /* Adjust spacing for the "Build Your AI Workforce" button */
      margin-left: 0;
      padding: 6px 12px;
      border-radius: 2px;
      font-size: 14px;
  }
}

/* Section styling */
section {
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 1200px; /* Consistent max width for all sections */
}

/* Manifesto Section */
.manifesto-section {
  margin: 40px auto; /* Increase the top and bottom margins */
  padding: 40px 20px; /* Increase padding inside the section */
  max-width: 1200px;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.manifesto-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.manifesto-section h1 {
  color: #003662; /* Company color */
  font-size: 38px; /* Increase font size as needed */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.manifesto-section p {
  text-align: justify; /* Applies justification to all paragraphs in the section */
}

.svg-box {
  margin: 10px;
}

.info-box {
  margin: 10px;
  background-color: #f4f4f4;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 250px;
  text-align: left;
}

.info-box h3 {
  color: #003662; /* Company color */
  font-weight: bold;
  margin-left: 10px;
  font-size: 18px; /* Adjusted size */
}

.info-box i {
  /* Manifesto Section Icons */
  color: #003662; /* Company color */
  font-size: 40px; /* Adjust size as needed */
  margin-bottom: 10px;
}

.manifesto-summary {
  margin-top: 20px;
}

.icon-header-pair {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.icon-header-pair i {
  color: #003662; /* Company color */
  font-size: 30px; /* Adjust size as needed */
  margin-right: 10px;
}

.icon-header-pair h3 {
  color: #003662; /* Company color */
  font-weight: bold;
  margin: 0;
}

/* Call-to-Action Button Styling */
.cta-button-container {
  text-align: center;
  margin-top: 40px; /* Increased spacing before the button */
}

.cta-button {
  background-color: #003662; /* Company color */
  color: white;
  padding: 18px 26px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  border-radius: 6px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  color: black;
  background-color: #B2C2CF; /* Slightly darker shade for hover effect */
}

/* Responsive CTA Button */
@media only screen and (max-width: 768px) {
  .cta-button-container {
      text-align: center; /* Center-align the button */
      margin: 20px 0;
  }

  .cta-button {
      display: inline-block; /* Adjust alignment */
      width: 80%; /* Button should take up 80% of available space */
      padding: 10px 20px;
      text-align: center;
  }
}

/* Virtual AI Robots Section */
.visual-robots-section h1 {
  color: #003662; /* Company color */
  font-size: 30px; /* Increase font size as needed */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.visual-robots-section h2 {
  color: #003662; /* Company color */
  font-size: 22px; /* Increase font size as needed */
  text-align: center;
  margin-bottom: 1px;
  font-weight: bold;
}

.visual-robots-section p {
  text-align: justify;
}

.circle-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.circle {
  background-color: #5B6873; /* Light grey background */
  border-radius: 40%;
  width: 220px; /* Adjust size as needed */
  height: 220px; /* Adjust size as needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 15px;
}

.circle i {
  color: white; /* Company color */
  font-size: 38px;
  margin-bottom: 1px;
}

.circle h3 {
  color: white; /* Company color */
  font-weight: bold;
  margin-bottom: 5px;
}

.circle p {
  font-size: 13px; /* Adjust text size as needed */
  color: white;
  text-align: justify;
}

/* Business Modules Section */
.business-modules-section h2 {
  font-size: 26px;
  text-align: center;
  color: #003662; /* Company color */
  margin-bottom: 20px;
}

.module-chart {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.module-chart li {
  flex-basis: 45%; /* Two items per row */
  background-color: #E0E6EC; /* Light grey background */
  margin: 10px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.module-chart h3 {
  font-size: 20px;
  color: #003662; /* Company color */
  margin-bottom: 8px;
}

.module-chart p {
  text-align: justify;
  font-size: 14px;
}

/* Service Offerings Section */
.service-offerings-section {
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1200px;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.service-offerings-section h2 {
  font-size: 26px;
  color: #003662; /* Company color */
  margin-bottom: 20px;
}

.offerings-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.offering {
  flex-basis: 45%;
  background-color: #f4f4f4; /* Light grey background */
  margin: 10px;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.offering i {
  color: #003662; /* Company color */
  font-size: 32px;
  margin-bottom: 10px;
}

.offering h3 {
  color: #003662; /* Company color */
  margin-bottom: 8px;
}

.offering p {
  text-align: justify;
  font-size: 14px;
}

.icon-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

.icon-header i {
  color: #003662; /* Company color */
  font-size: 32px;
  margin-right: 8px; /* Space between icon and header */
}

.icon-header h3 {
  color: #003662; /* Company color */
  margin: 0;
  font-size: 20px; /* Adjust font size if needed */
}

/* Success Stages Section */
.success-stages-section {
  text-align: center;
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1200px;
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.success-stages-section h2 {
  color: #003662; /* Company color */
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Process Container */
.process-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Process Step Design */
.process-step {
  flex: 1 1 15%;
  background-color: #00509d; /* Primary color */
  color: white;
  padding: 20px;
  border-radius: 50px 0 0 50px; /* Curved design */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.process-step:hover {
  transform: scale(1.05);
}

.process-step h3 {
  margin-bottom: 8px;
  font-weight: bold;
  color: white;
}

.process-step p {
  font-size: 14px;
  margin-bottom: 0;
  color: #e0f7fa; /* Lighter text color */
}

.step-number { /* Step Number Style */
  width: 35px;
  height: 35px;
  background-color: white;
  color: #00509d; /* Primary color */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
#footer {
  background-color: #003662; /* Company color */
  color: white;
}

.footer-container { /* Footer Container */
  max-width: 1200px; /* Adjust based on your content width */
  margin: 0 auto; /* Center horizontally */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 20px 0;
}

.footer-column {
  flex: auto;
  min-width: 220px;
}

.footer-column h4 {
  color: #61dafb; /* Lighter accent color */
  margin-bottom: 10px;
}

.footer-column p, .footer-column ul, .footer-column form {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  color: white;
  text-decoration: none;
}

.footer-column a:hover {
  color: #99AEC0;
}

.footer-bottom { /* Footer Bottom */
  max-width: 1200px; /* Match this with the footer container width */
  margin: 0 auto;
  text-align: center;
  padding: 10px 0;
  border-top: 1px solid #61dafb; /* Accent color */
}

.subscribe-btn { /* Subscribe Button */
  background-color: #0c1216; /* Primary company color */
  color: white; /* Text color */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 20px; /* Adjust padding for comfortable click */
  cursor: pointer; /* Change cursor to pointer */
  font-weight: bold; /* Emphasize text */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: background-color 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #00509d; /* Lighter shade on hover */
}

input[type="email"] { /* Input Field Styling */
  border: 1px solid #003662;
  border-radius: 5px;
  padding: 8px 12px;
  margin-right: 10px;
}

/* Modal Form */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}

@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0
  }

  to {
    top: 0;
    opacity: 1
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Confirmation Modal Styles */
#confirmationModal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#confirmationModal .modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
}

#confirmationModal .close-confirmation {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

#confirmationModal .close-confirmation:hover,
#confirmationModal .close-confirmation:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Cookies Banner */
.cookie-banner {
  background-color: #04467b; /* Primary company color */
  color: white;
  padding: 15px;
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  z-index: 1003;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-banner a {
  color: white;
}

.cookie-banner button {
  background-color: #00509d; /* Lighter shade */
  color: white;
  border: none;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: 5px;
  cursor: pointer;
}

.cookie-banner button:hover {
  background-color: #61dafb; /* Highlight on hover */
}

/* Cookies Modal Background */
.cookies-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Cookies Modal Content */
.cookies-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button for Cookies Modal */
.close-cookies {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-cookies:hover,
.close-cookies:focus {
  color: black;
  text-decoration: none;
}

/* Privacy Modal Background */
.privacy-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1002; /* Ensure it appears above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Privacy Modal Content */
.privacy-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button for Privacy Modal */
.close-privacy {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-privacy:hover,
.close-privacy:focus {
  color: black;
  text-decoration: none;
}

/* Terms Modal Background */
.terms-modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1003; /* Ensure it appears above other elements */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
}

/* Terms Modal Content */
.terms-modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 60%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Close Button for Terms Modal */
.close-terms {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-terms:hover,
.close-terms:focus {
  color: black;
  text-decoration: none;
}

/* Form Styles */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: calc(100% - 20px);
  padding: 10px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.submit-btn {
  background-color: #003662;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.submit-btn:hover {
  opacity: 0.9;
}


/* Newsletter Confirmation Modal Styles */
#newsletterConfirmationModal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

#newsletterConfirmationModal .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
}

#newsletterConfirmationModal .close-newsletter-confirmation {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

#newsletterConfirmationModal .close-newsletter-confirmation:hover,
#newsletterConfirmationModal .close-newsletter-confirmation:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
