/* Tab Navigation */
.tab-navigation {
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: none;
  border-radius: 0;
  padding: 15px 20px;
  color: #666;
  font-size: 14px;
  font-weight: 500;
}

.nav-tabs .nav-link:hover {
  color: #f7941d;
}

.nav-tabs .nav-link.active {
  color: #f7941d;
  background-color: transparent;
  border-bottom: 3px solid #f7941d;
}

/* Tab Content */
.tab-content {
  background-color: #fff;
}

.section-title {
  color: #333;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

/* .section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f7941d;
} */

.about-image {
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.about-content p,
.vision-mission p,
.commitment p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.sub-title {
  color: #f7941d;
  font-size: 20px;
  font-weight: 600;
  /* margin-bottom: 15px;
  margin-top: 25px; */
}

.company-gallery {
  margin-top: 40px;
}

.gallery-item {
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Chairman Message */
.chairman-image {
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chairman-message p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #555;
}

.chairman-name {
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.chairman-title {
  color: #f7941d;
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .tab-navigation {
    overflow-x: auto;
  }

  .nav-tabs {
      flex-wrap: nowrap;
      width: max-content;
  }
}

@media (max-width: 576px) {
  .nav-tabs .nav-link {
      padding: 0.6rem 0.8rem;
      font-size: 0.75rem;
  }
}

/* Animation Classes */
/* .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
} */