/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =============
   GLOBAL STYLES 
   ============= */
   
body {
  font-family: 'Lato', Arial, sans-serif;
  line-height: 1.6;
  background-color: #181818;
  color: #333;
}
h2 {
  line-height: 1.6;
  color: #fafafa;
  text-transform: uppercase;
  padding: 0 0 8px 0;
}
p {
  color: #fafafa;
  font-weight: 80;
}
.full-width {
  width: 100%;
  padding: 0;
}
.limited-width {
  max-width: 900px;
  margin: 0 auto; /* Centers the content horizontally */
  padding: 30px 0;
}
.button {
  display: inline-block;
  padding: 6px 20px;
  margin: 12px 10px 12px 0;
  border-radius: 50px;
  background-color: #b1b1b1;
  border: none;
  text-align: center;
  text-decoration: none;
  color: #000000;
  font-size: 12px;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
  font-weight: 700;
}
button i {
  margin-right: 5px;
}
.button:hover,
.button a:hover {
  background-color: #fff;
}

/* Nav */
  nav {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    height: 52px;
    border-bottom: 3px solid #909090;
    position: relative;
  }
  
  nav ul {
    list-style-type: none;
    display: flex;
  }
  
  nav li {
    margin: 0 14px;
  }
  
  nav a {
    position: relative;
    font-weight: 700;
    color: #fafafa;
    text-transform: uppercase;
    text-decoration: none;
  }
  
  /* Color bar */
  nav a::after {
    content: '';
    position: absolute;
    left: -3px;
    right: -3px;
    bottom: -19px;
    height: 3px;
    background-color: transparent;
    opacity: 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  /* Color bar animation */
  nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
  }
  
/* Individual color bars */

  /* Label for Home */
  nav li:nth-child(1) a::after {
    background-color: #83cfc7;
  }
  
  /* Label for About Us */
  nav li:nth-child(2) a::after {
    background-color: #ef6822;
  }
  
  /* Label for Products */
  nav li:nth-child(3) a::after {
    background-color: #6abd45;
  }
  
  /* Label for Testimonials */
  nav li:nth-child(4) a::after {
    background-color: #ed1c24;
  }
  
  /* Label for Investors */
  nav li:nth-child(5) a::after {
    background-color: #97509f;
  }
  
  /* Label for Contact */
  nav li:nth-child(6) a::after {
    background-color: #fcb315;
  }

  /* Hamburger Menu */
  .hamburger-wrapper .hamburger {
    display: block;
    font-size: 24px;
    color: #efefef;
    position: relative;
    cursor: pointer;
  }
  
  /* Hamburger Menu Animation */
  .hamburger {
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, transform;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
  }
  
  .hamburger-wrapper {
    display: block;
  }
  
  .hamburger.is-active .line {
    background-color: #333;
  }
  
  .line {
    display: block;
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
    background-color: #888;
    transition-property: transform, background-color;
    transition-duration: 0.3s;
    transition-timing-function: ease-in-out;
  }
  
  .line:first-child {
    transform-origin: top left;
  }
  
  .line:last-child {
    transform-origin: bottom left;
  }
  
  .hamburger.is-active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.is-active .line:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.is-active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Expanded Menu */
  nav.expanded {
    height: auto;
    padding: 12px 0 20px 0;
  }
  nav.expanded .menu-items {
    visibility: visible;
    opacity: 1;
    max-height: 400px;
    transition: opacity 0.3s ease, max-height 0.3s ease;
    position: absolute; /* Add position absolute to allow the menu to overlap other elements */
    top: 34px; /* Adjust the top position based on the navigation height */
    left: 0;
    right: 0;
    z-index: 999; /* Ensure the menu is on top of other elements */
  }
  
  .menu-items {
    position: relative; /* Set position relative to allow proper positioning of child elements */
  }

/* Rest of the CSS code... */


/* ========
   SECTIONS 
   ======== */
   

/* Globle Section Styles */

.hero, .about-section, .products-section, .testimonials-section, .investors-section, .contact-section {
  text-align: center;
}

/* Home */

.hero {
  position: relative;
  height: auto;
  background-color: #000;
}

.hero img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 42px); /* Adjust the max-height based on the navigation height */
  object-fit: contain;
  max-width: 1200px;
}

/* About Us */

.about-section {
  background-color: #313131;
  padding: 40px;
}
.about-section p {
  max-width: 900px;
  margin: auto;
}
.about-section p > a {
  margin-top: 30px;
}

/* Products Section */

.products-section {
  background-color: #181818;
}
.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.product-column {
  flex: 0 0 220px;
  margin-bottom: 30px;
  padding: 26px;
  color: #fafafa;
}

/* Define a CSS class for the square box with rounded edges */
.square-box {
  background-color: #333;
  border: 1px solid #555;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
}

/* Adjust the color and font size of the bullet points */

.square-box ul {
  list-style: none;
  padding: 0;
}

.square-box ul li {
  position: relative;
  padding-left: 25px;
  list-style-type: none; /* Remove the default bullet point */  
}

.square-box ul li:before {
  content: "\2714";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
}

.square-box:hover ul li:before {
  color: #6abd45; /* Change the color to #fcb315 */
}

.product-info {
  margin: 20px 0 0 0;
}

.product-info p {
  font-size: 14px;
  margin-bottom: 20px;
}

.product-info ul {
  list-style-type: disc;
  padding-left: 8px;
}

.product-info li {
  font-size: 14px;
  margin-bottom: 5px;
  text-align: left;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 4px solid #909090;
  overflow: hidden;
}

.product-image img {
  display: block;
  width: 125%;
  height: auto;
  object-fit: cover;
  /* transform: translateY(-10px); */
}

/* Testimonials Section */

.testimonials-section {
  position: relative;
  padding: 0;
  margin: 0;
  height: 80vh;
  overflow: hidden;
}

.testimonials-content {
  position: relative;
  height: 100%;
}

.testimonial {
  position: relative;
  padding: 0;
  border-top: 2px solid black;
  border-bottom: 2px solid black;
  background-image: url(../images/testimonials_graphic.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size:  max-width: 1200px;;
  height: 100%;
  z-index: 1; /* Adjusted z-index value */
}

.testimonial:before,
.testimonial:after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #ae4532;
  left: 0;
  z-index: 0; /* Adjusted z-index value */
  margin: 21px 0;
}

.testimonial:before {
  top: 0;
  height: 5px;
}

.testimonial:after {
  bottom: 0;
  height: 5px;
}

.testimonial-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: 'Lato', Arial, sans-serif;
  font-style: italic;
  line-height: 1.5;
  color: white;
  padding: 20px;
  width: 80%;
  font-size: 24px;
}

.quote::before {
  content: "\201C"; /* Opening curly quotation mark */
    font-weight: 700;
}

.quote::after {
  content: "\201D"; /* Closing curly quotation mark */
    font-weight: 700;
}

.quote {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
}

.testimonial-author {
  font-weight: 700;
}

/* Investors Section */

#investors {
  background-color: #2b2b2b;
}

.investors-section {
  padding: 50px;
}

.investors-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 900px;
  margin: auto;
}

.investors-info {
  flex: 0 0 100%;
  color: #fafafa;
  text-align: left;
  margin-bottom: 20px;
  max-width: 100%; /* Add this line to limit the width */
}

.investors-form {
  flex: 0 0 100%;
  margin-top: 60px;
  color: #fafafa;
  text-align: left;
}

.investors-info h2 {
  text-transform: uppercase;
  line-height: 1.6;
  margin-bottom: 20px;
}

.form-row {
  width: 70%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Add this line */
}

.form-row label {
  width: 80px;
  text-align: left;
  margin-right: 25px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-size: 80%;
  font-weight: 700;
  flex: 0 0 auto; /* Add this line */
}

.form-row input[type="text"],
.form-row input[type="email"],
.captcha-container input[type="text"] {
  flex: 1;
  height: 30px;
  border: 1px solid #909090;
  background-color: #f7f7f7;
  color: #333;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 14px;
  padding: 2px 10px;
  margin: 4px 0;
  max-width: 200px;
}

button#nextButton {
  margin-left: 108px;
}

.form-group {
  display: flex;
}

.investors-step {
  display: none;
}

.captcha-container {
  display: flex;
  flex-direction: column;
}

.captcha-image {
  display: flex;
  align-items: center;
  padding: 0 0 6px 0;
  border: none;
  background-color: transparent;
  color: #007bff;
  cursor: pointer;
}

.captcha-image img {
  width: 100%;
  height: auto;
  max-width: 200px; /* Adjust the max-width as needed */
  margin-right: 10px;
}

.captcha-image button {
  padding: 5px;
  border: none;
  background-color: transparent;
  color: #007bff;
  cursor: pointer;
}

.captcha-container img {
  margin-right: 10px;
}

/* Thank You Message */
.thank-you-message {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: calc(50% + 50px); /* Adjust the vertical position as needed */
  left: 0;
  right: 0;
  background-color: #fcb315;
  color: #000;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* Contact Section */

#contact {
  position: relative;
  min-height: 380px;
}

.map-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/map.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1; /* Push the map background to the back */
}

.contact-box {
  width: 220px;
  height: 155px;
  background-color: #2b2b2b;
  color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

.contact-box h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffb400;
}

.contact-box p {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Back to Top Link Styles */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: #55ffe1;
  color: #fff;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease-in-out;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.back-to-top:hover {
  background-color: #555;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
}

/* Scaling and Responsive Styles */

@media (max-width: 380px) {
  
    /* Form fix for ultra narrow browsers */
  .form-row {
    flex-direction: column; /* Change the flex-direction to column */
    align-items: flex-start; /* Adjust alignment to start */
    margin-bottom: 10px; /* Add some space between rows */
  }

  .form-row label {
    margin-right: 0; /* Remove the right margin on labels */
    margin-bottom: 5px; /* Add some space between labels */
  }
}

@media (max-width: 575.98px),
       (min-width: 576px) and (max-width: 767.98px) {
         
  /* Portrait Phones and Tablets */
  nav {
    flex-direction: column;
    height: auto;
    border-bottom: 3px solid #909090;
    height: 50px;
  }
  nav ul {
    flex-direction: column;
  }
  nav li {
    margin: 10px 0;
    text-align: center;
  }

  /* Hide Text in Mobile */
  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #181818;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }
  nav a {
    display: block;
    padding: 10px 0;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
  }
  .investors-form {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  /* Normal Desktop Display */  
  .hamburger-wrapper {
    display: none;
  }

  /* Investors Section */
  .investors-content {
    display: flex;
    flex-wrap: nowrap; /* Allow wrapping of flex items */
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
    max-width: 800px;
    margin: auto;
  }

  .investors-info {
    flex: 1 1 100%; /* Span the entire width */
    color: #fafafa;
    text-align: left;
    margin-bottom: 20px; /* Add margin-bottom to create space between sections */
  }

  .investors-form {
    flex: 1 1 100%; /* Span the entire width */
    color: #fafafa;
    text-align: left;
    margin-left: 40px;
  }

  .form-row label {
    width: 70px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* Laptops */
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Large Devices */
  
  /* Styles for large devices */
}

@media (min-width: 1200px) {
  /* Extra Large Devices */
  
  /* Styles for extra large devices */
}