
.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: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.photo-box {
  flex: 1;
  min-width: 600px;
  text-align: center;
}

.photo-box img {
  width: 200%;
  height: 400px;
  max-width: 600px;
  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);}
}

/* Responsive */
@media (max-width: 768px) {
  .management-row,
  .management-row.reverse {
    flex-direction: column;
  }

  .photo-box img {
    max-width: 120%;
  }

  .management-section h1 {
    font-size: 2rem;
  }
}
 .solid-3d-text {
    font-size: 60px;
    font-weight: 900;
    color: #ffffff;
    background-color: #fdfeff; /* Optional: background for contrast */
    text-align: center;
    padding: 40px;
    font-family: 'Poppins', sans-serif;

    /* 3D shadow effect */
    text-shadow: 
      2px 2px 0 #000,
      4px 4px 0 #222,
      6px 6px 0 #444;

    /* Optional: extra boldness */
    letter-spacing: 1px;
  }






   .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);
  }

  @media (max-width: 768px) {
    .features-image-section {
      flex-direction: column;
      padding: 20px;
    }

    .text-content, .image-content {
      flex: 1 1.5 100%;
    }

    .text-content h3 {
      text-align: center;
    }

    .image-content img {
      margin-top: 20px;
    }
  }




  