body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  position: relative;
  z-index: 0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #696969;
  z-index: -1;
}

/* ======================
   NAVBAR
   ====================== */
.navbar {
  background: #e0f4ff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  flex-wrap: nowrap; /* prevent wrapping so CTA stays inline */
}

.logo {
  font-weight: bold;
  font-size: 0.85rem; /* reduced for better fit */
  line-height: 1; /* tighter spacing */
  white-space: nowrap; /* prevent breaking */
}

.logo span {
  font-size: 0.65rem; /* smaller subtitle */
  display: block;
  color: #555;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.8rem; /* reduced gap to fit inline */
  padding-left: 0;
  margin: 0;
  flex-wrap: nowrap; /* prevent wrapping */
}

nav a {
  text-decoration: none;
  color: black;
  font-size: 0.85rem; /* slightly smaller to fit inline */
  white-space: nowrap;
}

.cta {
  background-color: #1d9bf0;
  color: white;
  padding: 0.4rem 0.8rem; /* slightly smaller padding */
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-left: 0.3rem; /* space between Careers and phone */
  font-size: 0.85rem; /* match nav link size */
}

/* ======================
   HERO IMAGE
   ====================== */
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ======================
   ABOUT & MISSION
   ====================== */
.about,
.mission {
  padding: 3rem 2rem;
  text-align: center;
}

.about ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about ul li {
  margin: 5px 0;
}

.mission {
  background: url("https://i.imgur.com/U89buQ9.jpeg") center/cover no-repeat;
  color: white;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 3rem;
}

/* ======================
   CALL BACK BUTTON
   ====================== */
.callback-btn {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #1d9bf0;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.callback-btn:hover {
  background-color: #1480c9;
}

/* ======================
   TEAM SECTION
   ====================== */
.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img {
  width: 200px;
  height: 220px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.7);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member h4 {
  margin-top: 12px;
  font-size: 1.1em;
  color: #fff;
}

.team-member p {
  margin: 5px 0 0;
  color: #ccc;
  font-size: 0.95em;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media screen and (max-width: 992px) {
  nav ul {
    gap: 0.5rem; /* reduce spacing to fit phone number inline */
  }
  .logo {
    font-size: 0.8rem;
  }
  .logo span {
    font-size: 0.6rem;
  }
  nav a {
    font-size: 0.8rem;
  }
  .cta {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 768px) {
  .team-member {
    width: 45%;
  }
}

@media screen and (max-width: 480px) {
  .team-member {
    width: 100%;
  }
}
