 @charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #f4f6f9;
  color: #333;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0b1c2c;
  padding: 15px 30px;
  color: #fff;
}

.navbar .logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD700;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar ul li a:hover {
  color: #FFD700;
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.login-btn {
  background: #FFD700;
  padding: 8px 14px;
  border-radius: 6px;
  color: #0b1c2c !important;
  font-weight: bold;
}

.login-btn:hover {
  background: #fff;
  color: #0b1c2c !important;
}

/* ===== HEADER ===== */
.header {
  background: linear-gradient(135deg, #1a2e40 , #0b1c2c);
  padding: 80px 20px;
  color: white;
}
.header h1 {
  font-size: 3rem;
  text-align: center;
  letter-spacing: 1px;
}
.header p {
  font-size: 1.2rem;
  text-align: center;
  color: white;
}

/* ===== ABOUT SECTION ===== */
.about {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 60px 10%;
  background-color: #fff;
  gap: 30px;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0b1c2c;
}
.about-content p {
  line-height: 1.7;
  color: #0b1c2c;
  max-width: 700px;
  margin: auto;
}


/* ===== MISSION SECTION ===== */
.mission {
  padding: 80px 15%;
   text-align: center;
  background-color: #0b1c2c;
}
.mission h2 {
  font-size: 2rem;
  color: white;
  align-items: center;
  margin-bottom: 20px;
}
.mission p {
  font-size: 1.1rem;
  color:white;
  align-items: center;
  line-height: 1.8;
  max-width: 800px;
  margin: auto;
}

/* ===== TEAM SECTION ===== */
.team {
  padding: 80px 10%;
  background-color: #fff;
}
.team h2 {
  color: #0b1c2c;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
.team-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.team-member {
  background: #0b1c2c;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.team-member:hover {
  transform: translateY(-8px);
}
.team-member img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.team-member h3 {
  color: #FFD700;
  font-size: 1.2rem;
}
.team-member p {
  color: white;
  font-size: 0.95rem;
}

