/* ---------------------------------- */
/* HERO SECTION */
/* ---------------------------------- */
.about-hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeIn 1s ease-in-out;
}

.about-hero h1,
.about-hero p {
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease-out;
}

.about-hero a.btn {
  font-weight: 600;
  margin-top: 15px;
  animation: fadeInUp 1.3s ease forwards;
}

/* ---------------------------------- */
/* SECTION GENERAL */
/* ---------------------------------- */
section {
  padding: 4rem 0;
  animation: fadeIn 0.8s ease-in-out;
}

.section-title {
  color: #0056b3;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  text-align: center;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ---------------------------------- */
/* VALUES SECTION */
/* ---------------------------------- */
.values-list {
  list-style: none;
  padding-left: 0;
}

.values-list li::before {
  content: "✔";
  color: #28a745;
  margin-right: 0.6rem;
}

.values-list li {
  padding: 5px 0;
  transition: transform 0.3s ease;
}

.values-list li:hover {
  transform: translateX(6px);
}

/* ---------------------------------- */
/* SECTION BOX CONTAINERS */
/* ---------------------------------- */
.section-box {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 20px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
}

.section-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

/* ---------------------------------- */
/* TEAM SECTION */
/* ---------------------------------- */
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #007bff;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 123, 255, 0.2);
}

.team-card {
  padding: 2rem;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 123, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 123, 255, 0.2);
}

.team-card:hover .team-img {
  transform: scale(1.08);
}

/* ---------------------------------- */
/* STICKY FOOTER (Works on short pages too) */
/* ---------------------------------- */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.sticky-footer {
  position: relative;
  bottom: 0;
  width: 100%;
  background: #0056b3;
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
  z-index: 100;
}

/* ---------------------------------- */
/* ANIMATIONS */
/* ---------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
