/* --- AVP Dashboard Styles --- */
:root {
  --avp-green: #00d084; /* The bright green text/border */
  --avp-light-green: #e8fff5; /* The background tint */
  --avp-dark: #1a202c;
  --avp-gray: #7f7f7f;
  --avp-border: #e2e8f0;
}
.v3-new-pricing-hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.avp-dashboard-wrapper {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--avp-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* --- Left Sidebar --- */
.avp-sidebar {
  /* width: 280px; */
  width: 295px;
  background-color: #ffffff;
  border-right: 1px solid var(--avp-border);
  display: flex;
  flex-direction: column;
}

.sidebar-item {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s;
  border-left: 4px solid transparent;
}

.sidebar-item:hover {
  background-color: #f8fafc;
}

.sidebar-item.active {
  background-color: var(--avp-light-green);
  border-left-color: var(--avp-green);
}

.sidebar-item .icon-box {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--avp-border);
  border-radius: 8px;
  margin-right: 15px;
  color: var(--avp-green);
  background: white;
}

.sidebar-item.active .icon-box {
  border-color: var(--avp-green);
}

.sidebar-icon {
  width: 20px;
  /* height: 20px; */
}
.content-icon {
  width: 14px;
  /* height: 20px; */
}

.item-text h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--avp-dark);
}

.item-text span {
  font-size: 0.75rem;
  color: var(--avp-gray);
}

/* --- Right Content Area --- */
.avp-content {
  flex: 1;
  padding: 40px;
  /* height:700px ; */
  min-height: 700px;
  /* border: 1px solid; */
}

.badge-header {
  color: var(--avp-green);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-title {
  font-weight: 800;
  color: var(--avp-dark);
  margin-bottom: 5px;
}

.subtitle {
  color: var(--avp-gray) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  margin-bottom: 20px;
}

.description {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1.6;
  color: #000000 !important;
  margin-bottom: 30px;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--avp-dark);
}

/* Feature Cards */
.feature-card {
  display: flex;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid var(--avp-green);
  background-color: var(--avp-light-green);
  border-radius: 8px;
  height: 100%;
}

.feature-card .f-icon {
  color: #3b82f6; /* Blue checkmark as per screenshot */
  font-size: 1.2rem;
  margin-right: 12px;
  margin-top: -2px;
}

.feature-card .f-text h6 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--avp-dark);
}

.feature-card .f-text p {
  font-size: 0.8rem;
  margin: 0;
  color: #475569;
  line-height: 1.4;
}

/* Footer & Buttons */
.badge-platform {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--avp-green);
  border-radius: 6px;
  font-size: 0.8rem;
  margin-right: 10px;
  color: var(--avp-dark);
}

.browser-platform {
  border-color: #29d47b;
  border-radius: 16px;
  margin: 2px;
}

.btn-avp-primary {
  background-color: var(--avp-green);
  color: white;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  margin-right: 15px;
}

.btn-avp-primary:hover {
  background-color: #00b371;
  color: white;
}

.btn-avp-outline {
  background-color: transparent;
  color: var(--avp-dark);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid var(--avp-dark);
}

.btn-avp-outline:hover {
  background-color: var(--avp-dark);
  color: white;
}

/* --- Tab Switching Logic --- */
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.tab-pane.active {
  display: block;
}

/* Smooth fade-in effect when clicking tabs */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.browser-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.os-icon {
  width: 16px;
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px; /* Keeps the icon perfectly centered with the text baseline */
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .avp-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    border-right: none;
    border-bottom: 1px solid var(--avp-border);
  }
  .sidebar-item {
    min-width: 220px;
    border-left: none;
    border-bottom: 4px solid transparent;
  }
  .sidebar-item.active {
    border-bottom-color: var(--avp-green);
  }
  .avp-content {
    padding: 20px;
  }

  .buttons {
    display: flex;
    /* justify-content: center; */
    flex-wrap: wrap;
    gap: 10px;
  }

  .custom_bg {
    /* * FIGMA OVERRIDE: 
   * The height here and the negative margin-top on .contact-formbox-custom 
   * are hardcoded specifically to match the Figma mockup for this exact page.
   * REMOVE this height if you want to reuse this background globally/fluidly.
   */
    /* height: 600px !important; */
    height: auto !important;
  }
  .contact-formbox-custom {
    /* REMOVE FOR GLOBAL USE: Paired with the 840px height above to match Figma */
    margin-top: -100px !important;
  }
}
.custom_bg {
  background-image: url("../images/v3/circuit_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-blend-mode: multiply;

  /* * FIGMA OVERRIDE: 
   * The height here and the negative margin-top on .contact-formbox-custom 
   * are hardcoded specifically to match the Figma mockup for this exact page.
   * REMOVE this height if you want to reuse this background globally/fluidly.
   */
  height: 840px;
}
.contact-formbox-custom {
  /* REMOVE FOR GLOBAL USE: Paired with the 840px height above to match Figma */
  margin-top: -550px;
  margin-bottom: 80px;
}
