/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 04 2026 | 06:08:14 */
.jet-tabs__control {
  position: relative;
  z-index: 0;
}

.jet-tabs__control::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(215deg, #FFFFFF, #FFFFFF, #FFFFFF, #FF3E01);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.jet-tabs__control::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: #373243;
  z-index: 2;
}

.jet-tabs__control.active-tab::after,
.jet-tabs__control:hover::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: linear-gradient(to bottom, #595563, #221F29);
  z-index: 2;
}

.jet-tabs__control > * {
  position: relative;
  z-index: 3;
}

/* ✅ এটাই আসল fix */
.jet-tabs__control:hover::before,
.jet-tabs__control.active-tab::before {
  opacity: 1;
}