section.videoBanner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
}

section.videoBanner video,
.videoOverlay {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* .videoOverlay {
    background: #000;
    opacity: 0.6;
} */

section.videoBanner .bannerContent h1 {
    font-size: 64px;
    font-weight: 600;
    z-index: 1;
}

section.videoBanner .bannerContent h2 {
    font-size: 20px;
    font-weight: 400;
}

section.videoBanner .colorBtn {
    padding: 6px;
    padding-left: 20px;
    border-radius: 8px;
}

section.videoBanner .colorBtn i {
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    color: #ca2e2a;
    margin-left: 10px;
}

section.videoBanner .container {
    position: relative;
    z-index: 5;
}

.micWrp {
    max-width: 250px;
    margin: 0 auto;
    background: #00000099;
    padding: 22px 25px;
    color: #fff;
    border-radius: 15px;
    border: solid 1px #514f4f;
    justify-content: space-between;
}

.micWrp span {
    font-size: 16px;
}

.micWrp button:not(.colorBtn) {
    background: none;
    outline: none;
    border: none;
    box-shadow: none;
    padding: 0;
}

.audio-animation-gif {
    width: 30px;
    border-radius: 50%;
}

section.videoBanner.position-fixed {
    width: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
    padding: 0;
}

.vapiLoader {
    max-width: 420px;
    margin: 12px auto 0;
    background: #00000099;
    color: #fff;
    border: solid 1px #514f4f;
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Only for the fixed overlay banner (call screen) */
section.videoBanner.position-fixed {
  display: flex;
  align-items: flex-end;      /* move content to bottom */
  padding-bottom: 30px;       /* spacing from bottom */
}

/* Ensure container takes full width */
section.videoBanner.position-fixed .container {
  width: 100%;
}

/* Center micWrp horizontally at bottom */
section.videoBanner.position-fixed .micWrp,
section.videoBanner.position-fixed .vapiLoader {
  margin-left: auto;
  margin-right: auto;
}