/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 26 2025 | 04:23:43 */
.step-tabs {
  background: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 960px;
  margin: 0 auto;
}

.tab-nav {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
  list-style: none;
  padding: 0;
}

.tab-nav li {
  flex: 1;
  text-align: center;
  padding: 1rem 0;
  background: #f5f8fc;
  font-weight: bold;
  font-size: 1.25rem;
  color: #001f4d;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 4px 4px 0 0;
}

.tab-nav li.active {
  background: #ffffff;
  border-bottom: 4px solid #04b4be;
}

.tab-content {
  display: flex;
  flex-direction: column;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

.panel-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.panel-text {
  flex: 1;
  min-width: 260px;
}

.panel-img {
  flex: 1;
  min-width: 260px;
  text-align: right;
}

.panel-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.btn-primary {
  background-color: #00bfff;
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 1rem;
}

.btn-primary:hover {
  background-color: #009edc;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}


.panel-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: nowrap;
}

.panel-text {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.panel-img {
  flex: 1;
  min-width: 0;
  text-align: right;
}

.panel-img img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .panel-inner {
    flex-direction: column;
    text-align: center;
  }

  .panel-text, .panel-img {
    text-align: center;
  }
}


