/* Custom Styling */
.vision-section,
.mission-section {
  position: relative;
  overflow: hidden;
}

.vision-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-section {
  background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%);
}

.shape-decorator {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.vision-section .shape-decorator:nth-child(1) {
  background-color: #0d6efd;
  top: -150px;
  left: -150px;
}

.vision-section .shape-decorator:nth-child(2) {
  background-color: #20c997;
  bottom: -100px;
  right: 10%;
  width: 200px;
  height: 200px;
}

.mission-section .shape-decorator:nth-child(1) {
  background-color: #fd7e14;
  top: 10%;
  right: -150px;
}

.mission-section .shape-decorator:nth-child(2) {
  background-color: #6f42c1;
  bottom: -150px;
  left: 10%;
  width: 250px;
  height: 250px;
}

.section-content {
  position: relative;
  z-index: 1;
}

.vision-image img,
.mission-image img {
  transition: transform 0.5s ease;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vision-image img:hover,
.mission-image img:hover {
  transform: scale(1.02);
}

.vision-image {
  position: relative;
}

.vision-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  border-top: 3px solid #0d6efd;
  border-left: 3px solid #0d6efd;
  z-index: -1;
}

.mission-image {
  position: relative;
}

.mission-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-bottom: 3px solid #fd7e14;
  border-right: 3px solid #fd7e14;
  z-index: -1;
}

.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #212529;
}

.vision-content .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #6610f2);
  border-radius: 2px;
}

.mission-content .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #fd7e14, #ffc107);
  border-radius: 2px;
}

.vision-content p,
.mission-content p {
  color: #495057;
}

.key-point {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.key-point:hover {
  transform: translateY(-5px);
}

.key-point-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  color: white;
  font-size: 20px;
}

.innovation .key-point-icon {
  background: linear-gradient(135deg, #0d6efd, #6610f2);
}

.sustainability .key-point-icon {
  background: linear-gradient(135deg, #20c997, #0dcaf0);
}

.adaptability .key-point-icon {
  background: linear-gradient(135deg, #6f42c1, #0d6efd);
}

.integrity .key-point-icon {
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.excellence .key-point-icon {
  background: linear-gradient(135deg, #dc3545, #fd7e14);
}

.collaboration .key-point-icon {
  background: linear-gradient(135deg, #198754, #20c997);
}

.key-point h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #343a40;
}

.key-point p {
  color: #6c757d;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* CORE VALUES */
/* HERO SECTION */
.values-section {
  padding: 60px 5%;
  text-align: left;
}

.values-container {
  max-width: 1000px;
  margin: auto;
}

.values-content {
  max-width: 600px;
}

.values-heading {
  font-size: 36px;
  font-weight: 800;
  color: #222;
}

.values-tagline {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #14b8a6;
  background: rgba(20, 154, 153, 0.1);
  padding: 7px 15px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 15px;
}

.values-description {
  font-size: 18px;
  color: #555;
}

/* CORE VALUES */
.core-values {
  padding: 60px 5%;
  background: #f9f9f9;
}

.core-values-container {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.core-value {
  background: white;
  padding: 20px;
  border-left: 5px solid #14b8a6;
  border-radius: 5px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.core-value h3 {
  font-size: 22px;
  font-weight: bold;
  color: #14b8a6;
}

.core-value p {
  font-size: 16px;
  color: #555;
}

/* CORE VALUES IMAGE */
.core-values-image {
  text-align: center;
  padding: 40px 0;
}

.image-container figure img {
  width: 100%;
  /* max-width: 800px; */
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}
/* Sustainability Section */
.sustainability {
  position: relative;
  text-align: center;
  color: #fff;
}

.sustainability .carousel-item {
  height: 500px;
  background-size: cover;
  background-position: center;
}

/* Tabs */
.tab-menu-sustain {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  list-style: none;
  padding: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.tab-menu-sustain li {
  padding: 15px 20px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}

.tab-menu-sustain li.active {
  background: #149a99;
  font-weight: bold;
}
