/* ================= MANAGEMENT SECTION ================= */

.management-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.management-section h1 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3.5rem;
  color: #2c3e50;
}

/* Flex row layout */
.management-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease;
}

.management-row.reverse {
  flex-direction: row-reverse;
}

.message-box {
  flex: 1;
  min-width: 300px;
}

.message-box h2 {
  font-size: 1.8rem;
  color: #34495e;
  margin-bottom: 10px;
}

.designation {
  font-weight: bold;
  color: #888;
  margin-bottom: 15px;
}

.message {
  font-size: 2rem;
  line-height: 1.6;
  color: #555;
}

.photo-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.photo-box img {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* ================= FEATURES IMAGE SECTION ================= */

.features-image-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  padding: 30px;
  margin: 20px auto;
  max-width: 1200px;
  gap: 30px;
}

.text-content {
  flex: 1 1 55%;
}

.text-content h3 {
  font-size: 24px;
  color: #053b6e;
  margin-bottom: 20px;
}

.text-content ul {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.text-content ul li {
  margin-bottom: 10px;
  transition: all 0.2s ease;
}

.text-content ul li:hover {
  color: #c90606;
  transform: translateX(5px);
}

.image-content {
  flex: 1 1 40%;
}

.image-content img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .management-row,
  .management-row.reverse {
    flex-direction: column;
  }

  .management-section h1 {
    font-size: 2rem;
  }

  .photo-box img {
    width: 100%;
  }

  .features-image-section {
    flex-direction: column;
    padding: 20px;
  }

  .text-content,
  .image-content {
    flex: 1 1 100%;
  }

  .text-content h3 {
    text-align: center;
  }

  .image-content img {
    margin-top: 20px;
  }
}