/* Company System Page Custom Styles - Following Template Design */

/* Tabs Section - Following tabs-1 style from template */
.tabs.tabs-1 {
  padding: 80px 0 60px;
  background: #ffffff;
}

/* Tabs Navigation */
.tabs.tabs-1 .nav-tabs {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.tabs.tabs-1 .nav-item {
  margin: 0;
}

.tabs.tabs-1 .nav-link {
  border: none;
  background: transparent;
  padding: 18px 35px;
  color: #2b2e32;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.tabs.tabs-1 .nav-link:hover {
  color: #063464;
}

.tabs.tabs-1 .nav-link.active {
  color: #063464;
  border-bottom-color: #92c13e;
  background: transparent;
}

/* Tab Content */
.tabs.tabs-1 .tab-content {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tabs.tabs-1 .tab-pane {
  padding: 20px 0;
}

/* Tab Entry - Following template style */
.tab-entry {
  padding-right: 30px;
}

.tab-entry .entry-bio {
  margin-bottom: 30px;
}

.tab-entry .entry-title {
  font-size: 28px;
  font-weight: 700;
  color: #063464;
  margin-bottom: 20px;
  line-height: 1.3;
}

.tab-entry .entry-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6b6b;
  margin-bottom: 0;
}

/* Advantages List - Following template advantages-list-2 style */
.advantages-list-holder {
  margin-top: 20px;
}

.advantages-list.advantages-list-2 {
  list-style: none;
  padding: 0;
  margin: 0;
}

.advantages-list.advantages-list-2 li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 0;
}

.advantages-list.advantages-list-2 li:last-child {
  margin-bottom: 0;
}

.advantages-list.advantages-list-2 li i {
  color: #92c13e;
  font-size: 16px;
  margin-right: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.advantages-list.advantages-list-2 li span {
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
  flex: 1;
}

.advantages-list.advantages-list-2 li strong {
  color: #2b2e32;
  font-weight: 600;
}

/* Tab Image */
.tab-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.tab-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.tab-img:hover img {
  transform: scale(1.05);
}

/* CTA Section - Following template cta-1 style */
.cta.cta-1 {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta.cta-1 .bg-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.cta.cta-1 .bg-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta.cta-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 52, 100, 0.85);
  z-index: 1;
}

.cta.cta-1 .container {
  position: relative;
  z-index: 2;
}

.cta.cta-1 .heading.heading-3 {
  color: #ffffff;
}

.cta.cta-1 .heading-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cta.cta-1 .heading-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.95;
  margin-bottom: 35px;
}

.cta.cta-1 .actions-holder {
  margin-top: 30px;
}

.cta.cta-1 .btn.btn--white {
  background: #ffffff;
  color: #063464;
  border-color: #ffffff;
  padding: 15px 40px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta.cta-1 .btn.btn--white:hover {
  background: #92c13e;
  border-color: #92c13e;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(146, 193, 62, 0.3);
}

/* Hero Section Customization */
.hero-1 .hero-subtitle {
  font-size: 16px;
  color: #92c13e;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-1 .hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-1 .hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.95;
  max-width: 800px;
  /* margin: 0 auto; */
}

/* Responsive Styles */
@media (max-width: 991px) {
  .tabs.tabs-1 {
    padding: 60px 0 40px;
  }

  .tabs.tabs-1 .nav-tabs {
    margin-bottom: 40px;
  }

  .tabs.tabs-1 .nav-link {
    padding: 15px 25px;
    font-size: 14px;
  }

  .tab-entry {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .tab-entry .entry-title {
    font-size: 24px;
  }

  .tab-entry .entry-desc {
    font-size: 15px;
  }

  .tab-img {
    margin-bottom: 30px;
  }

  .cta.cta-1 {
    padding: 80px 0;
  }

  .cta.cta-1 .heading-title {
    font-size: 28px;
  }

  .cta.cta-1 .heading-desc {
    font-size: 16px;
  }

  .hero-1 .hero-title {
    font-size: 42px;
  }

  .hero-1 .hero-desc {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .tabs.tabs-1 .nav-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .tabs.tabs-1 .nav-item {
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
  }

  .tabs.tabs-1 .nav-link {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    border-bottom: 3px solid transparent;
  }

  .tabs.tabs-1 .nav-link.active {
    border-bottom-color: #92c13e;
  }

  .tab-entry .entry-title {
    font-size: 22px;
  }

  .advantages-list.advantages-list-2 li {
    margin-bottom: 18px;
  }

  .advantages-list.advantages-list-2 li span {
    font-size: 14px;
  }

  .cta.cta-1 {
    padding: 60px 0;
  }

  .cta.cta-1 .heading-title {
    font-size: 24px;
  }

  .cta.cta-1 .heading-desc {
    font-size: 15px;
  }

  .cta.cta-1 .btn.btn--white {
    padding: 12px 30px;
    font-size: 14px;
  }

  .hero-1 .hero-title {
    font-size: 32px;
  }

  .hero-1 .hero-desc {
    font-size: 15px;
  }
}

/* Additional template alignment */
.tabs.tabs-1 .row {
  align-items: center;
}

/* Smooth transitions */
.tab-pane {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-pane.fade:not(.show) {
  opacity: 0;
  transform: translateY(10px);
}

.tab-pane.fade.show {
  opacity: 1;
  transform: translateY(0);
}
