/* About Us Section */
.about-us {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #f9f9f9;
  text-align: center;
  position: relative;
}

.about-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 50px;
}

.about-text {
  flex: 1;
  padding-right: 50px;
  opacity: 0;
  animation: fadeIn 1.5s forwards;
}

.about-text h1 {
  font-size: 3rem;
  color: #1C3F60;
  font-weight: bold;
  margin-bottom: 20px;

  font-family: "Jersey 15", serif;
  font-weight: 550;
  font-style: normal;
  letter-spacing: 8px;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(to right, #2d2b2b, #857b75);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-text .btn {
  background-color: #FF5733;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.about-text .btn:hover {
  background-color: #FF6A47;
}

/* Parallax Effect on Image Pieces */
.about-image {
  flex: 1;
  position: relative;
  width: 100%;
  z-index: 1;
}

.image-piece {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: transform 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.image-piece:hover {
  transform: scale(1.05);
}

.top-left {
  clip-path: polygon(0% 0%, 80% 0%, 60% 80%, 0% 100%);
  left: 0;
  top: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipO4xt9gc1lZ8PGbHIo8FqF5lHMD3dc8zEKSJiN_=s1360-w1360-h1020');
  /* Ensure the correct image path */
}

.top-right {
  clip-path: polygon(20% 0%, 100% 0%, 100% 80%, 40% 100%);
  right: 0;
  top: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipO4xt9gc1lZ8PGbHIo8FqF5lHMD3dc8zEKSJiN_=s1360-w1360-h1020');
  /* Ensure the correct image path */
}

.bottom-left {
  clip-path: polygon(0% 60%, 60% 80%, 60% 100%, 0% 100%);
  left: 0;
  bottom: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipO4xt9gc1lZ8PGbHIo8FqF5lHMD3dc8zEKSJiN_=s1360-w1360-h1020');
  /* Ensure the correct image path */
}

.bottom-right {
  clip-path: polygon(40% 80%, 100% 60%, 100% 100%, 60% 100%);
  right: 0;
  bottom: 0;
  background-image: url('https://lh3.googleusercontent.com/p/AF1QipO4xt9gc1lZ8PGbHIo8FqF5lHMD3dc8zEKSJiN_=s1360-w1360-h1020');
  /* Ensure the correct image path */
}

/* Fade-in Animation for the Content */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* About Introduction (Mission, Vision, Values) */
.about-introduction {
  display: flex;
  justify-content: space-between;
  padding: 60px 80px;
  background-color: #ffffff;
  width: 100%;
  max-width: 1200px;
  margin-top: 50px;
}

.about-introduction div {
  flex: 1;
  margin: 0 20px;
  text-align: center;
}

.about-introduction h2 {
  font-size: 2rem;
  color: #1C3F60;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-introduction p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
}

.about-introduction i {
  font-size: 3rem;
  color: #FF5733;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
    padding: 40px;
  }

  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
    opacity: 1;
    animation: none;
  }

  .about-image {
    width: 80%;
    margin-bottom: 30px;
  }

  .about-introduction {
    flex-direction: column;
    padding: 30px;
  }

  .about-introduction div {
    margin: 20px 0;
  }

  .about-introduction i {
    font-size: 2.5rem;
  }
}
