/* body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(-45deg, #1B263B, #3A506B, #6A0572, #9C1DE7, #538498, #2C3E50, #10101C);
  background-size: 600% 600%;
  animation: gradientAnimation 18s ease infinite;
  position: relative;

  color: var(--text-color);
}


@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
} */





/* Default Styles */
.section-about-top .section-about-row {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  margin-top: 6rem;
}


.stats {
  display: flex;
  gap: 3rem;
  margin: 0;
}

.stat {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.stat p {
  color: var(--secondary-color);
  font-size: 3rem;
  margin: 0;
  font-weight: 100;
}

.stat b {
  font-size: 1.5rem;
}

/* .buttons-row {
  display: flex;
  width: 80%;
  margin: 0px auto;
  justify-content: center;
  margin-top: 2rem;
}

.buttons-row button {
  border: none;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  background: transparent;
  color: white;
  border-bottom: 2px solid white;
  cursor: pointer;
  transition: 0.5s;
  border-right: 1px solid grey;
}

.buttons-row button:last-child {
  border-right: none;
}

.buttons-row button:hover {
  background-color: white;
  color: var(--primary-color);
} */

/* Responsive Styles */

/* For small tablets and large phones (max-width: 768px) */
@media screen and (max-width: 768px) {
  .section-about-top .section-about-row {
      margin-top: 4rem;
      gap: 2rem;
      text-align: center;
  }

  .section-about-top .section-about-row h2 {
      font-size: 2rem;
  }
  .all-buttons{
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }

  .stats {
      flex-direction: column;
      gap: 2rem;
      margin-top: 2rem;
  }

  .stat p {
      font-size: 3rem;
  }

  .stat b {
      font-size: 1.8rem;
  }

  .buttons-row {
      width: 90%;
      margin-top: 2rem;
  }

  .buttons-row button {
      font-size: 1.3rem;
      padding: 0.2rem 0.5rem;
  }

  /* Remove borders in buttons for better layout */
  .buttons-row button {
      border-right: none;
  }
}

/* For mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .section-about-top .section-about-row {
      margin-top: 3rem;
      gap: 1rem;
  }

  .section-about-top .section-about-row h2 {
      font-size: 1.5rem;
      text-align: center;
  }

  .stats {
      flex-direction: column;
      gap: 1rem;
  }

  .stat p {
      font-size: 2.5rem;
  }

  .stat b {
      font-size: 1.5rem;
  }

  .buttons-row {
      flex-direction: column;
      width: 100%;
      margin-top: 1.5rem;
  }

  .buttons-row button {
      font-size: 1.2rem;
      padding: 1rem;
      width: 100%;
      margin-bottom: 1rem;
  }

  .buttons-row button:last-child {
      margin-bottom: 0;
  }

  /* Remove border-right in buttons for mobile */
  .buttons-row button {
      border-right: none;
  }
}



.team-section {
  text-align: center;
  padding: 50px 20px;
}

.team-section h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 30px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  margin-bottom: 15px;
}

.team-card .role {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--tertiary-color);
  margin-bottom: 8px;
}

.team-card .name {
  font-size: 1rem;
  color: grey;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.map-section {
  background-color: white;
  padding: 2rem;
  text-align: center;
  margin: 2rem 0 0 0;
}
.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}
iframe {
  width: 100%;
  height: 100%;
  border: none;
}


