/* Reset and Body */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f7faff;
  color: #0f1724;
}

/* Header */
header {
  background: linear-gradient(135deg, #07a6c6, #00b3a6);
  padding: 8px 0;
  color: white;
}

.container.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

.logo img {
  height: 50px;
}

/* Nav */
.nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-list a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-list a:hover {
  color: #ffe082;
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15,23,36,0.95);
  border-radius: 6px;
  padding: 6px 0;
  min-width: 160px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  color: white;
  display: block;
  padding: 8px 12px;
}

.dropdown-menu li a:hover {
  background: #00b3a6;
}

/* Team Section */
.team-section {
  text-align: center;
  padding: 50px 20px;
  background: #ffffff;
}

.team-section h2 {
  font-size: 2em;
  color: #00b3a6;
}

.pink-line {
  width: 80px;
  height: 3px;
  background: #ff6f61;
  margin: 10px auto 20px;
  border: none;
}

.intro {
  max-width: 800px;
  margin: auto;
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.team-member {
  background: #f0f9fa;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  margin: 8px 0 5px;
  color: #0f1724;
}

.role {
  color: #00b3a6;
  font-weight: 600;
}

/* Footer */
.footer {
  background: #0f1724;
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-section h3 {
  color: #00b3a6;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section a {
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  color: #00b3a6;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #00b3a6;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 20px;
  padding-top: 10px;
  font-size: 0.9rem;
  color: #bbb;
}

.back {
  background-color: #07a6c6;       /* Nivera blue */
  color: white;
  border: none;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back:hover {
  background-color: #05889f;       /* Darker on hover */
  transform: translateY(-2px);
}

.back:active {
  transform: scale(0.97);
}

a {
  text-decoration: none;           /* Remove underline from link */
}

