/* General Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  background-color: #1e293b;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

header h1 {
  font-size: 24px;
  margin: 0;
}

.navbar {
  display: flex;
  gap: 15px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.navbar a:hover {
  color: #38bdf8;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
}

.carousel img {
  width: 100%;
  height: auto;
}

/* Vision and Mission */
.vision-mission {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 20px;
}

.vision, .mission {
  flex: 1 1 calc(50% - 20px);
  margin: 10px;
  padding: 15px;
  background-color: #f3f4f6;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.vision h2, .mission h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  color: #1e293b;
}

.vision p, .mission p {
  font-size: 16px;
  color: #475569;
}

/* Founders Section */
.founders {
  text-align: center;
  padding: 20px;
  background-color: #e2e8f0;
}

.founders h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.founders img {
  max-width: 200px;
  border-radius: 50%;
  margin: 10px;
}

/* Videos Section */
.videos {
  padding: 20px;
  text-align: center;
}

.videos h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.videos iframe {
  width: 90%;
  height: 400px;
  max-width: 800px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Map Section */
.map {
  text-align: center;
  padding: 20px;
}

.map h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #1e293b;
}

.map iframe {
  width: 90%;
  height: 300px;
  max-width: 800px;
  border: none;
  border-radius: 8px;
}

/* Footer */
footer {
  background-color: #1e293b;
  color: white;
  text-align: center;
  padding: 10px 20px;
}

footer a {
  color: #38bdf8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
