@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");

* body {
  font-family: "Times New Roman", Times, serif;
  padding: auto;
  margin: auto;
}
.navbar {
 
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
 
.navbar-header {
  display: flex;
  align-items: center;
}
 
.menu-btn {
  display: none; /* Hide menu button by default */
  background: none;
  border: none;
  color: inherit;
  font-size: 20px;
  cursor: pointer;
}
 
.navbar-links {
  display: flex;
}
 
.navbar-links a {
  color: #fff;
  text-decoration: none;
  padding: 0 10px;
 
}
 
.sidebar {
  height: 100%;
  width: 250px;
  position: fixed;
  top: 0;
  left: -250px;
  background-color: #111;
  padding-top: 60px;
  transition: 0.3s;
}
 
.sidebar a {
  padding: 10px;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  display: block;
}
 
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  cursor: pointer;
}
 
.content {
  margin-left: 250px;
  padding: 20px;
}
a:hover {
  background-color: white;
  color: black;
}
/* Media query for responsiveness */
@media screen and (max-width: 768px) {
  .menu-btn {
    display: block; /* Show menu button */
  }
 
  .navbar-links {
    display: none; /* Hide nav links */
  }
 
  .content {
    margin-left: 0; /* Adjust content margin */
   
  }
  .h1{
   font-size: smaller;
    text-align: center;
   
  }
}
/*
 
*/
.header {
  padding: 20px;
  position: relative;
  min-height: 400px;
  background: linear-gradient(black, white);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.header-content {
  position: relative;
 color: #f0f0f0;
  text-align: center;
  position: relative;
  top: 20px;
  font-size: larger;
}
.h1{
  position: relative;
  top: 2px;
  text-align: center;
 
}

/* a:link {
  color: white;
}
a:hover {
  background-color: white;
  color: black;
}
a:visited {
  color: dimgrey;
}

.header {
  padding: 20px;
  position: relative;
  min-height: 400px;
  background: linear-gradient(black, white);
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.header-content {
  position: sticky;
  position: relative;
  color: #f0f0f0;
  text-align: center;
  position: relative;
  top: 150px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.navbar ul {
  font-weight: bold;
  font-family: sans-serif;
  position: static;
  text-align: right;
  list-style-type: none;
}
ul li {
  float: right;
  margin: 10px;
}

.navbar a {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
}


.footerbox {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  background-color: black;
  font-weight: bolder;
  text-align: center;
  font-size: x-large;

  color: aliceblue;
  height: 150px;
  text-shadow: 0px 0px 50px white;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
} */

/*-----About Page---*/
#aboutContainer {
  text-align: center;
  padding-top: 2rem;
  min-height: 100px;
  padding: 2rem;
}
#icon {
  color: black;
}
.aboutContainer h1 {
  text-decoration: underline;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.containerP {
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease-in-out forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*---Team Members---*/
#team {
  padding: 2rem;
  text-align: center;
}

.team h1 {
  margin-bottom: 2rem;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.member {
  margin: 1rem;
  max-width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  text-align: center;
}

.member img {
  width: 100%;
  height: 60%;
  border-radius: 50%;
}

.member h3 {
  margin: 1rem 0;
}

/*---Service Page---*/

#rideDetails {
  background-image: url("./images/taxis_resized.jpg");

  min-height: 50rem;
  opacity: 8;
  text-align: center;
  line-height: 50px;
  z-index: 1;
  padding-top: 20px;
}
/* Form Container */
#myForm {
  max-width: 499px;
  margin: auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  position: relative;
} 

/* Datalist/Select List */
#selectList {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Placeholders */
input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-top: 2rem;
}

input[type="text"]::placeholder {
  color: #999;
}

/* Checkboxes */
input[type="checkbox"] {
  margin-top: 2rem;
  margin-right: 8px;
  margin-bottom: 10px;
}

/* Submit Button */
input[type="submit"] {
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 2rem;
  background-color: #474747;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

input[type="submit"]:hover {
  background-color: #0a0a0a;
} 
.error-message {
  text-decoration: solid;
  width: 100%;
  color: #990000;
  padding: 10px;
  text-align: center;
}
.container{
  padding: 10px;
}
.form-group {
  margin-top: 2rem;
  margin-bottom: 1rem; /* Adjust the spacing between form groups */
}

.form-group label {
  margin-top: 2rem;
  margin-bottom: 0.5rem; /* Adjust the spacing between labels and inputs */
}

.form-group input,
.form-group select {
  margin-top: 2rem;
  margin-bottom: 1rem; /* Adjust the spacing between inputs/selects and the next form element */
}


/*contact page*/
#contactContainer {
  max-width: 599px;
  margin: auto;
  padding: 30px;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  position: relative;
}
.contactPage {
  max-width: 500px;
  margin: auto;
  padding: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  position: relative;
}
h2 {
  text-align: center;
}


label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 10px;
  background-color: #474747;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0a0a0a;
}


/* Media Queries */
@media screen and (max-width: 480px) {
  #myForm {
    padding: 10px;
  }

  label {
    display: block;
    margin-bottom: 5px;
  }

  input[type="checkbox"] {
    margin-bottom: 10px;
  }
}
