/* Section-03 Starts Here */
.call-answering-section-03 {
  background: var(--light-section-color);
  padding: 40px 0;
}


.design2 {
  display: flex;
  gap: 40px;
  align-items: stretch;
  min-height: 500px;
}

.design2-sidebar {
  flex: 0 0 25%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
}

.design2-item {
  background: #fff;
  padding: 15px 24px;
  padding-right: 50px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-blue-color);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: visible;
  text-transform: capitalize;
}

.design2-item::after {
  content: "→";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  font-size: 20px;
  color: #20282d;
  opacity: 0;
  transition: all 0.3s ease;
}

.design2-item:hover {
  background: white;
  border-color: #e9ecef;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateX(4px);
}

.design2-item.active {
  background: #20282d;
  color: white;
  border-color: #20282d;
  transform: translateX(8px);
  box-shadow: 0 6px 16px rgba(32, 40, 45, 0.25);
}

.design2-item.active::before {
  transform: scaleY(1);
}

.design2-item.active::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  color: white;
}

.design2-content {
  flex: 1;
  /* background: var(--dark-blue-color); */
  border-radius: 12px;
  padding: 20px 25px;
  color: white;
  box-shadow: 0 20px 60px rgba(32, 40, 45, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-3-items p {
  font-size: 14px;
  line-height: 30px;
}

.design2-content-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.design2-content h2 {
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 16px;
  /* color: #fff; */
  border-bottom: 4px solid var(--dark-blue-color); /* blue underline */
  display: inline-block; /* so border fits text width */
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.design2-content p {
  margin-bottom: 0;
  text-align: justify;
}

.content-5 .uk-img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

/* Tablet Styles */
@media (max-width: 992px) {
  .design2 {
    gap: 30px;
    flex-direction: column;
  }

  .design2-content {
    padding: 40px;
  }

  .design2-content h2 {
    font-size: 32px;
  }

  .design2-content p {
    font-size: 16px;
  }

  .design2-sidebar
  {
    flex-direction: row;
    overflow-x: scroll;
    max-width: 100%;
    gap: 30px;
    padding-bottom: 25px;
  }

  .design2-item::after {
    content: "↓";   /* down arrow */
    bottom: 20px;   /* adjust as needed */
    transform: translateX(-50%);
    top: auto;
    bottom: 0;
    right: 10px;
  }
.design2-item
{
        flex: 0 0 50%;
    max-width: 100%;
    font-size: 18px;
}

}

/* Mobile Styles */
@media (max-width: 768px) {
  .design2 {
    flex-direction: column;
    gap: 20px;
    min-height: auto;
  }

  .design2-sidebar {
    width: 100%;
  }

  .design2-item
  {
    padding-right: 24px;
            align-items: center;
        display: flex;
        padding-bottom: 30px;
        font-size: 16px;
  }


  .design2-content {
    width: 100%;
    padding: 30px 25px;
    min-height: 300px;
  }

  .design2-content h2 {
    font-size: 28px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    line-height: 40px;
  }

  .design2-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .design2-item::after
  {
    left: 50%;
  }
  .v3 .stats-container
  {
    flex-direction: column;
  }
  .v3 .stat-item
  {
    padding: 0 40px !important;
  }
}

@media (max-width: 500px) {
.design2-item
{
  flex: 0 0 70%;
}
.design2-content h2
{
  font-size: 24px;
}
}

/* Section-03 Ends Here */

/* Section 04 Starts Here */

.package-flex {
  display: flex;
  justify-content: center;
}
/* Section-04 Ends Here */
/* Section 05 */

.variation {
  padding: 0 40px;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
}

/* Variation 3 - Minimal Split */

.v3 .stats-container {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
}

.v3 .stat-item {
  flex: 1;
  padding: 40px;
  position: relative;
}

.v3 .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background: var(--dark-blue-color);
  opacity: 0.2;
}

.v3 .icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 40px;
  display: block;
}

.v3 .number {
  font-size: 64px;
  font-weight: 900;
  color: var(--dark-blue-color);
  margin-bottom: 15px;
  line-height: 1;
}

.v3 .label {
  font-size: 16px;
  color: var(--dark-blue-color);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .variation {
    padding: 40px 20px;
  }

  .v3 .stats-container {
    gap: 50px;
  }

  .v3 .stat-item:not(:last-child)::after {
    display: none;
  }
}

/* Package CSS Starts Here */
.package-global-wrapper .vo-pricing-wrapper-one .pricing-header-start
{
  padding-bottom: 25px;
}
.package-global-wrapper .vo-pricing-wrapper-one .pricing-header-start .package-title
{
  font-size: 28px;
  margin-bottom: 5px;
}
 .vo-packages-table .vo-pricing-wrapper-one .pre-title-2 i {
    color: var(--light-green-color);
    margin-right: 5px;
}

.vo-packages-table .vo-pricing-wrapper-one .pre-title-2 {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    align-items: baseline;
}
/* Pacakge CSS Ends Here */


/* Form CSS */

.form-checkbox-content {
  display: flex;
  align-items: baseline;
}
.form-checkbox-content input {
  width: 4%;
  margin-right: 4px;
}

.global-hero-brand-title
{
  font-size: 55px;
}

/* Media Query */

@media (max-width: 1499px) {
    .global-hero-brand-title {
        font-size: 45px;
    }
}

@media (max-width: 992px) {
  
}

@media (max-width: 768px) {
    .ba-vo-form-header h1 {
        font-size: 24px;
    }
    .global-hero-brand-title {
    font-size: 35px;
}
}
