#section7 {
  min-height: 100vh;
  padding: 80px 20px;
}

.section-container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: white;
  font-weight: 700;
}

.section7-separator {
width: 300px;
height: 3px;
background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
position: relative;
margin: 0 auto 1.5rem auto;

}

.section7-separator::before {
content: '';
position: absolute;
top: -2px;
left: 0;
width: 10px;
height: 7px;
background-color: var(--accent-blue);
border-radius: 3px;
animation: slideLeft 3s infinite alternate;
}

/* Main Wrapper */
.methods-interactive-wrapper {
  display: flex;
  background: var(--secondary-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 198, 255, 0.12);
}

/* Tab Navigation */
.tabs-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 280px;
  background: var(--primary-bg);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.tab-indicator {
  position: absolute;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-color);
  border-radius: 0 4px 4px 0;
  transition: all 0.4s ease;
}

.tab-button {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 20px 30px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-light);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  border-left: 4px solid transparent;
  transition: all 0.4s ease;
}

.tab-button i {
  font-size: 1.1rem;
  color: var(--accent-blue);
}

.tab-button span {
  flex: 1;
  display: inline-block;
  word-break: break-word;
}

.tab-button:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.02);
}

.tab-button.active {
  color: var(--accent-color);
  background: var(--secondary-bg);
}

/* Content Area */
.tabs-content {
  flex: 1;
  padding: 40px;
  background: var(--secondary-bg);
  position: relative;
}

.tab-pane {
  position: absolute;
  inset: 40px;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98) translateY(15px);
  transition: all 0.4s ease;
}

.tab-pane.active {
  opacity: 1;
  visibility: visible;
  position: static;
  transform: scale(1) translateY(0);
}

.pane-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.pane-list {
  list-style: none;
  padding-left: 0;
}

.pane-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.pane-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--success-color);
}

/* ✅ Mobile Fix */
@media (max-width: 768px) {
  .methods-interactive-wrapper {
    flex-direction: column;
  }

  .tabs-nav {
    flex-direction: row;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
  }

  .tab-button {
    flex: 1 1 33.333%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-left: none;
    border-bottom: 4px solid transparent;
    padding: 14px 6px;
    font-size: 0.75rem;
    gap: 6px;
    min-width: 0; /* Allow flex shrinking */
  }

  .tab-button span {
    font-size: 0.78rem;
    text-align: center;
    word-break: normal;
    white-space: normal;
    max-width: 100%;
    line-height: 1.2;
  }

  .tab-indicator {
    top: auto;
    bottom: 0;
    height: 4px;
    width: 0;
    border-radius: 4px 4px 0 0;
  }

  .tabs-content,
  .tab-pane {
    inset: unset;
    padding: 25px 20px;
    min-height: 260px;
  }
}



        
/* ****************************************************************** */
/***************************** section 8 ******************************/
/* ****************************************************************** */
