 /*-------------------------------- navbar------------------------------------  */
    
      
      /* dont use  ...........................................................................................................................................*/
      .reinvent-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  /* background: url("bg.png") no-repeat center center/cover; */
  background: rgb(31 41 55);


  height: 55vh; /* Adjusts height */
  color: #fff;

}

.text-container {
  display: flex;
  width: 100%;
  justify-content: space-between; /* Align heading to left and paragraph to right */
  align-items: flex-start; /* Aligns items to the top */
}

.headline {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 900;
  max-width: 80%; /* Restrict heading to 50% width */
  text-align: left;
}

.highlight {
  color: #fff;
}

.arrow {
  color: #009e52;
  font-weight: bold;
  font-size: 5rem;
}

.description {
  font-size: 2rem;
  line-height: 1.8;
  max-width: 50%; /* Restrict description to 50% width */
  text-align: left; /* Aligns paragraph text to the right */

}

.cta {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 3rem;
  margin-top: 10px;
}

.cta span {
  color: #009e52;
  font-weight: bold;
}
/* Responsiveness for Mobile (Below 768px) */
@media (max-width: 768px) {
  .reinvent-section {
  
    height: 50vh;
  }

  .text-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .headline,
  .description {
    max-width: 100%;
    font-size: 3rem; /* Decrease font size for smaller screens */
  }

  .headline {
    font-size: 3.5rem;
  }

  .description {
    font-size: 1.6rem;
    margin-left: 0;
    margin-top: 20px;
  }

  .cta {
    font-size: 2rem;
  }
}
/* Apply some basic styles to the container */



      /* -------------------------------------------section two ----------------------------------------*/
/* About Us Section */
.about-us {
  background: #161616;
  margin-top: 20px;
  margin: 10px;
  
}

.about-us h2,
.about-us h3 {
  color: #ffffff;
  
  font-size: 2rem;
  margin-bottom: 10px;
  
}


.about-us p,
.about-us ul {
  margin: 10px 0;
  font-size: 1.3rem;
  color: #ffffff;
  text-align: justify;
}

.about-us ul {
  padding-left: 13px;
}

.about-us ul li {
  color: #ffffff;
}

/* Container Two */
.container-two {
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px; */
}

.content {
  flex: 2;
  margin: 20px;
}

.form-container {
  flex: 1;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.form-container h3 {
  text-align: center;
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 2.5rem;
  color: #009e52;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-container form input,
.form-container form select,
.form-container form button {
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  background: #f3f3f3;
  
}

.form-container form button {
  background-color: #009e52;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}

.form-container form button:hover {
  background-color: #007000;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .about-us p,
  .about-us ul {
    font-size: 1.3rem;
  }

  .form-container h3 {
    font-size: 2rem;
  }

  .form-container form input,
  .form-container form select,
  .form-container form button {
    font-size: 14px;
    padding: 8px;
  }
}

@media screen and (max-width: 768px) {
  .container-two {
    flex-direction: column;
    align-items: center;
  }

  .content,
  .form-container {
    width: 90%;
  }

  .about-us h2,
  .about-us h3 {
    font-size: 2rem;
  }

  .about-us p,
  .about-us ul {
    font-size: 1.2rem;
  }

  .form-container h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 480px) {
  .about-us h2,
  .about-us h3 {
    font-size: 2rem;
  }
  .about-us{
    margin: 0px;
  }

  .about-us p,
  .about-us ul {
    font-size: 1.2rem;
    text-align: justify;
  }

  .form-container h3 {
    font-size: 2rem;
  }

  .form-container form input,
  .form-container form select,
  .form-container form button {
    font-size: 1.2rem;
    padding: 8px;
  }
}