body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f4f6f8;
  color: #1a1a1a;
  overflow-x: hidden;
}
nav {
  background: #232526;
  color: #fff;
  box-shadow: 0 2px 12px rgba(40, 62, 81, 0.07);
}
.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, opacity 0.2s;
}
nav ul li a.active,
nav ul li a:hover {
  background: #1a73e8;
  opacity: 1;
}
header {
  background: linear-gradient(135deg, #232526 40%, #414345 100%);
  color: #e0e6f1;
  padding: 4rem 2rem 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
header h1 {
  margin: 0 0 1rem 0;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}
header p {
  font-size: 1.4rem;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}
.container {
  max-width: 1100px;
  margin: 3rem auto 4rem auto;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(40, 62, 81, 0.15);
  padding: 3rem 3rem 3rem 3rem;
  transition: box-shadow 0.3s ease;
}
.container:hover {
  box-shadow: 0 20px 60px rgba(40, 62, 81, 0.25);
}
h2 {
  font-size: 2.2rem;
  color: #232526;
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-bottom: 3px solid #1a73e8;
  padding-bottom: 0.5rem;
}
.values, .why {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.card {
  flex: 1 1 300px;
  background: #f9fbfd;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(72, 85, 99, 0.1);
  padding: 2rem 1.8rem;
  min-width: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  opacity: 0;
  transform: translateY(40px);
}
.card h3 {
  color: #1a73e8;
  font-size: 1.3rem;
  margin-top: 0;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
}
.card ul {
  padding-left: 1.4rem;
  margin: 1rem 0 0 0;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.5;
}
.card ul li {
  margin-bottom: 0.7rem;
}
.card:hover {
  box-shadow: 0 14px 40px rgba(72, 85, 99, 0.2);
  transform: translateY(-8px) scale(1.03);
}
.card:hover h3 {
  color: #1565c0;
}
blockquote {
  margin: 3rem 0;
  padding: 1.5rem 2rem;
  background: #e9f0fb;
  border-left: 6px solid #1a73e8;
  font-size: 1.4rem;
  color: #283e51;
  font-style: italic;
  border-radius: 12px;
  max-width: 700px;
  box-shadow: 0 6px 20px rgba(26, 115, 232, 0.15);
  opacity: 0;
  transform: translateY(40px);
  transition: box-shadow 0.3s ease;
}
blockquote:hover {
  box-shadow: 0 12px 40px rgba(26, 115, 232, 0.3);
}
.note {
  margin-top: 3rem;
  padding: 1.2rem 1.8rem;
  background: #fff8e1;
  border-left: 6px solid #fbc02d;
  color: #7a5a00;
  border-radius: 12px;
  font-size: 1.1rem;
  max-width: 650px;
  box-shadow: 0 6px 20px rgba(251, 192, 45, 0.15);
  transition: box-shadow 0.3s ease;
}
.fade-in {
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}
.fade-in-delay {
  opacity: 0;
  animation: fadeInUp 1.2s 0.3s ease forwards;
}
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-30px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), transform 0.7s cubic-bezier(0.77,0,0.175,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* People Page */
.people-header {
  background: linear-gradient(135deg, #1a73e8 40%, #232526 100%);
  color: #fff;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
}
.team-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}
.team-card {
  display: flex;
  flex-wrap: wrap;
  background: #f9fbfd;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(40,62,81,0.10);
  padding: 2.5rem 2rem;
  max-width: 900px;
  width: 100%;
  gap: 2.5rem;
  align-items: flex-start;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.77,0,0.175,1), transform 0.7s cubic-bezier(0.77,0,0.175,1);
}
.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-photo img {
  border-radius: 50%;
  width: 180px;
  height: 180px;
  object-fit: cover;
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.12);
  background: #e9f0fb;
  margin-bottom: 1rem;
}
.team-info {
  flex: 1;
  min-width: 260px;
}
.team-info h2 {
  margin-top: 0;
  color: #1a73e8;
  font-size: 2rem;
  font-weight: 700;
}
.team-title {
  color: #232526;
  font-weight: 600;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}
.team-highlights {
  padding-left: 1.2rem;
  margin-bottom: 1.5rem;
  color: #444;
  font-size: 1.08rem;
  line-height: 1.6;
}
.team-highlights li {
  margin-bottom: 0.6rem;
}
.team-qualifications h3 {
  margin-bottom: 0.3rem;
  color: #1565c0;
  font-size: 1.1rem;
}
.team-qualifications p {
  margin: 0 0 0.5rem 0;
  color: #333;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .values, .why {
    flex-direction: column;
    gap: 1.5rem;
  }
  .container {
    padding: 2rem 1.5rem;
  }
  blockquote {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
  }
  .team-card {
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem;
  }
  .team-photo img {
    width: 140px;
    height: 140px;
  }
}

.footer {
  background: #232526;
  color: #e0e6f1;
  padding: 2rem 0 1rem 0;
  margin-top: 4rem;
  font-size: 1rem;
}
.footer-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.footer-company {
  line-height: 1.7;
}
.footer-company a {
  color: #1a73e8;
  text-decoration: underline;
  transition: color 0.2s;
}
.footer-company a:hover {
  color: #90caf9;
}
.footer-legal {
  font-size: 0.97rem;
  opacity: 0.8;
}
@media (max-width: 700px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.team-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  object-position: center 15%; /* Adjust this percentage as needed */
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.12);
  background: #e9f0fb;
  border: 3px solid #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.profile-photo:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(26, 115, 232, 0.18);
}

@media (max-width: 900px) {
  .profile-photo {
    width: 120px;
    height: 160px;
  }
}

.contact-form {
  max-width: 420px;
  margin: 2rem auto;
  background: #f9fbfd;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26, 115, 232, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.contact-form label {
  font-weight: 500;
  color: #232526;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0.3rem;
  font-family: inherit;
}
.contact-form button {
  background: #1a73e8;
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #1565c0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #232526;
  color: #fff;
  padding: 0.8rem 2rem;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.nav-items {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-items li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, opacity 0.2s;
}

.nav-items li a.active,
.nav-items li a:hover {
  background: #1a73e8;
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 800px) {
  .hamburger {
    display: block;
  }
  .nav-items {
    display: none;
    flex-direction: column;
    background: #232526;
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 10;
  }
  .navbar.open .nav-items {
    display: flex;
  }
  .nav-items li {
    margin: 0;
    text-align: right;
    padding: 0.7rem 1.2rem;
  }
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #232526;
  color: #fff;
  padding: 0.8rem 2rem;
  position: relative;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: #fff;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.nav-items {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-items li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.85;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  transition: background 0.2s, opacity 0.2s;
}

.nav-items li a.active,
.nav-items li a:hover {
  background: #1a73e8;
  opacity: 1;
}

/* Responsive styles */
@media (max-width: 800px) {
  .hamburger {
    display: block;
  }
  .nav-items {
    display: none;
    flex-direction: column;
    background: #232526;
    position: absolute;
    top: 100%;
    right: 0;
    width: 180px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    z-index: 10;
  }
  .navbar.open .nav-items {
    display: flex;
  }
  .nav-items li {
    margin: 0;
    text-align: right;
    padding: 0.7rem 1.2rem;
  }
}




