/* About Us */

.intro-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 50px;
  background-color: #f5f5f5;
  overflow: hidden;
}

.intro-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h1 {
  font-size: 48px;
  color: #171994;
}

.intro-text h1 span {
  color: #3a868f;
}

.intro-text p {
  margin-top: 20px;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

.intro-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  color: white;
  background: #171994;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.intro-cta:hover {
  color: #171994;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(#171994, #3a868f) border-box;
  transform: translateY(-3px);
}

.intro-image {
  flex: 1 1 500px;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
}

.hidden-left { opacity: 0; transform: translateX(-50px); animation: slideInLeft 0.8s forwards; }
.hidden-right { opacity: 0; transform: translateX(50px); animation: slideInRight 0.8s forwards; }

@keyframes slideInLeft { to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }

@media (max-width: 900px) {
  .intro-content { flex-direction: column; text-align: center; }
  .intro-text h1 { font-size: 36px; }
}

/* End */

/* VMV [Vision, Mission, Values] */

.vmv-tabbed-section {
  padding: 50px 50px;
  background-color: #ffffff;
  text-align: center;
}

.vmv-tab-title {
  font-size: 40px;
  color: #171994;
  margin-bottom: 60px;
}

.vmv-tab-title span {
  color: #3a868f;
}

.vmv-tabs input[type="radio"] {
  display: none;
}

.vmv-tab-labels {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.vmv-tab-labels label {
  padding: 12px 30px;
  background-color: #f5f5f5;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  color: #171994;
  transition: background 0.3s, transform 0.3s;
}

.vmv-tab-labels label:hover {
  transform: translateY(-3px);
}

.vmv-tab-content {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  color: #333;
  line-height: 1.6;
  animation: fadeIn 0.5s ease-in-out;
}

#tab1:checked ~ .vmv-tab-labels label[for="tab1"] {
  background-color: #171994;
  color: white;
}
#tab2:checked ~ .vmv-tab-labels label[for="tab2"] {
  background-color: #171994;
  color: white;
}
#tab3:checked ~ .vmv-tab-labels label[for="tab3"] {
  background-color: #171994;
  color: white;
}

#tab1:checked ~ #content1 { display: block; }
#tab2:checked ~ #content2 { display: block; }
#tab3:checked ~ #content3 { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .vmv-tab-title { font-size: 32px; }
  .vmv-tab-labels { gap: 15px; flex-direction: column; }
}

/* End */

/* Timeline */

.timeline-carousel {
  padding: 30px 40px;
  background-color: #f5f5f5;
  text-align: center;
}

.carousel-title {
  font-size: 40px;
  color: #173054;
  margin-bottom: 50px;
}

.carousel-wrapper {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 15px;
}

.carousel-item {
  flex: 0 0 250px;
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.carousel-item:hover {
  transform: translateY(-5px);
}

.timeline-icon {
  font-size: 40px;
  color: #171994;
  margin-bottom: 15px;
}

.carousel-item.future .timeline-icon {
  color: red;
}

.carousel-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #3a868f;
}

.carousel-item p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.carousel-wrapper::-webkit-scrollbar {
  height: 8px;
}
.carousel-wrapper::-webkit-scrollbar-thumb {
  background-color: #171994;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .carousel-item { flex: 0 0 80%; }
}

/* End */