/* CEO Page Special Styling */

.ceo-hero {
  position: relative;
  text-align: center;
  color: white;
}

.ceo-hero h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeDown 1.5s ease-in-out;
}

.ceo-hero p {
  font-size: 1.2rem;
  animation: fadeUp 2s ease-in-out;
}

.ceo-hero img {
  border: 5px solid #fff;
  animation: zoomIn 1.5s ease-in-out;
}

/* CEO Message Card */
.ceo-message-card {
  background: #ffffff;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ceo-message-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
}

.ceo-message-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Team Section */
.team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
}

.team-card img {
  border: 4px solid #f0f0f0;
  transition: transform 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.1);
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-card h5 {
  font-weight: 600;
  margin-top: 10px;
}

.team-card p {
  color: #777;
  font-size: 0.95rem;
}

/* Footer Fix at Bottom */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

footer {
  margin-top: auto;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
