html,
body {
  height: 100%;
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
}
.navbar {
  /* background-color:#19c37d; */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  top: 0; /* Position it at the top of the page */
  left: 0;
  right: 0;
  z-index: 1000; /* Set a high z-index to ensure it appears above other content */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);  */
}

.navbar-brand {
  font-size: 32px;
  color: #f16523;
  margin-left: 10px;
  font-weight: bolder;
}

.navbar-links {
  display: inline;
  padding: 20px;
  margin: 10px;
  text-decoration: none;
}
a {
  color: white;
  text-decoration: none;
  font-size: large;
}

.navbtn {
  outline: none;
  border: none;
  cursor: pointer;
  height: 35px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  background: #f16523;
  box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
  padding: 0px 18px;
  margin-right: 10px;
}

.navbtn-second {
  outline: none;
  border: none;
  cursor: pointer;
  height: 35px;
  border-radius: 30px;
  color: #fff;
  text-align: center;
  background: #f16523;
  box-shadow: 3px 3px 8px #b1b1b1, -3px -3px 8px #ffffff;
  padding: 24px 18px;
  margin-right: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
  font-size: larger;
  font-weight: bolder;
  margin-top: 20px;
}

a:hover {
  text-decoration: none;
}
.navbar-toggle {
  display: none; /* Hide the toggle button by default */
  cursor: pointer;
}
.container {
  /* background-image: url('b1.jpg'); */
  background-size: cover;
  display: flex;
  flex-direction: row;
  height: 100%;
  opacity: 1;
}

.text-column {
  flex: 1;
  padding: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  flex-direction: column;
  margin-left: 50px;
  /* background-color: #80c9b8; */
  /* background-color: rgba(0, 0, 0, 0.7); */
}
.text-column h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f16523
}

.text-column p {
  font-size: 18px;
  line-height: 1.6;
  max-width: -webkit-fill-available;
  color: black;
}

.text-column ul {
  list-style: disc;
  padding-left: 30px;
}
.iframe-column {
  flex: 1;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: #c6e1d5; */
  /* background-color: rgba(0, 0, 0, 0.9); */
}
.iframe-contaier {
  width: 100%;
  height: 100%;
  /* max-width: 800px; */
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.working-section {
  background-color: #f16523;
  padding: 40px 0;
}

.working-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.working-container h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: white;

}

.working-container p {
  font-size: 16px;
  line-height: 1.6;
}

.working-container ol {
  text-align: left; /* Set the list items to be left-aligned */
  max-width: 600px;
  margin: 0 auto;
  padding-left: 20px;
}

.working-container li {
  margin-bottom: 10px;
}

.working-container p:last-child {
  margin-top: 20px;
}

.footer {
  background-color: #f16523;
  color:white;
  text-align: center;
  padding: 20px;
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer p {
  font-size: large;
}
.social-links {
  display: flex;
  justify-content: center;
  margin-right: 20px;
}

.social-links a {
  display: flex;
  margin: 0 10px;
}

.social-links a svg{
  fill: white;
}

.logo{
  width: 70px;
}
/* Add more styling as needed for text and iframe columns */

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .text-column,
  .iframe-column {
    padding: 10px;
  }
  .navbar-links {
    display: none;
  }
  .navbar-toggle {
    display: block;
    font-size: 24px;
  }
  .navbar-links.show {
    display: flex;
    flex-direction: column;
  }
  .text-column h1 {
    font-size: 28px;
  }

  .text-column p {
    font-size: 16px;
  }
}

