
/* Our culture */
.culture {
  width: 80%;
  max-width: 900px;
  text-align: left;
  padding: 0px 20px 20px;
  margin: 0 auto; /* Center the element */
}
.culture-subtitle {
  font-size: 28px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}
.culture-section {
  display: flex;
  align-items: stretch; /* Changed from center to stretch to make heights equal */
  margin: 30px 0;
}
.gradient-letter1 {
  font-size: 120px;
  font-weight: 900;
  margin-right: 0px;
  color: #209ad6;
  transition: transform 0.3s ease;
  line-height: 1;
  min-width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* Remove any height constraints to let it match the box height */
}
.gradient-letterg{
  color: #88c870;
}
.gradient-letter1:hover {
  transform: scale(1.05);
}
.culture-content {
  background-color: rgba(214, 214, 214, 0.589);
  color: white;
  padding: 20px 25px;
  width: calc(100% - 120px);
  position: relative;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 5% 100%, 0 50%);
  padding-left: 60px; /* Add extra padding on the left to account for the arrow shape */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Remove any height constraints to let it adjust naturally */
}
.culture-content h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.5px;
  color: black;
}
.culture-content p {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #000000; /* Added to ensure paragraph text is visible on light background */
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .culture {
      width: 90%;
  }
  .culture-section {
      flex-direction: column;
      align-items: flex-start;
  }
  .gradient-letter1 {
      margin-bottom: 10px;
      min-height: 100px;
      width: 100px;
  }
  .culture-content {
      width: 100%;
      clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 100%);
      padding: 25px 20px 20px 20px;
      margin-top: 10px;
  }
  .ceo-photo img{
    margin-left: 0px;
  }
}

.about-layout1 img {
  display: block;
  margin: 0 auto;
  width: 800px; /* or your desired width */
  height: auto;
}
