* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;

}
/*--------------------------------------------------------- Navbar----------------------------------------------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: rgb(33, 37, 41);
  color: white;
  border-radius: 0 0 15px 15px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 10px;
}
.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}
.navbar ul li {
  padding: 0 1rem;
}
.navbar ul li a {
  color: white;
  text-decoration: none;
}
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}
/* Mobile Menu */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background-color: rgb(33, 37, 41);
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    align-items: center;
  }
  .navbar ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
    margin-right: 15px;
  }
}
/* -------------------------------------------------------button------------------------------------------------ */
.but1{
  align-items: center;
  background-image: linear-gradient(144deg, #af40ff, #5b42f3 50%, #00ddeb);
  border: 0;
  border-radius: 8px;
  box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-size: 18px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s;
}

button:active,
button:hover {
  outline: 0;
}

button span {

  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

button:hover span {
  background: none;
}

button:active {
  transform: scale(0.9);
}



/* -----------------------------------------------------------------------section-------------------------- */
.first-section{
  height: auto;
}
.topic{
  /* border:  1px solid red; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  text-align: center;
}

/* -----------------------------------------------------------map---------------------------------------- */

.map-section {
 /* 1 border: 1px solid black; */
  border-radius: 20px;
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #e0f7fa, #ffffff);
}
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* --------------------------------------------------------------social-media------------------------------------------- */
.social-media {
  gap: 30px;
}
.social-media a{
  text-decoration: none;
}