.map {
  background-color: green;
  position: relative;
  margin-top: 0px;
  align-items: center;
  justify-content: center;
  height: 60vh;
  padding: 20px;
  margin: 10px;
  margin-top: 30px;
  gap: 100px;
}

.mappos {
  margin-left: 100px;
  margin-top: 20px;
}

.addloc {
  margin-top: -300px;
  font-size: 28px;
  color: white;
  margin-left: 1000px;
  position: relative;
}

.mappos iframe {
    width: 50%;  /* Make iframe take up full width */
    height: 400px; /* Adjust height for smaller screens */
  }

/* Media query for screens smaller than 1024px (tablets) */
@media (max-width: 1024px) {
  .map {
    height: 50vh; /* Reduce height for smaller screens */
    padding: 15px;
    gap: 50px; /* Reduce gap */
  }

  .mappos {
    margin-left: 50px;
  }

  .addloc {
    margin-left: 700px;
    font-size: 24px; /* Adjust font size for smaller screens */
  }
  .mappos iframe {
    width: 50%;  /* Make iframe take up full width */
    height: 200px; /* Adjust height for smaller screens */
  }

}



/* Media query for screens smaller than 600px (mobile phones) */
@media (max-width: 600px) {
  .map {
    height: 30vh;
    padding: 5px;
    gap: 10px;
  }

  .mappos {
    margin-left: 10px;
  }

  .addloc {
    margin-left: 250px;
    margin-top: -200px;
    font-size: 14px;
  }
  .mappos iframe {
    width: 50%;  /* Make iframe take up full width */
    height: 200px; /* Adjust height for smaller screens */
  }
}


.designDevloped {
  background-color: navy;
  color: white;
  font-size: 16px;
  text-align: center;
  margin-top: 100px;
}

/* Adjust .designDevloped for smaller screens */
@media (max-width: 600px) {
  .designDevloped {
    font-size: 12px;
    height: 4vh;
  }
}


.links a.active {
  color: #FF7F50; /* Change to your desired color */
}
