.hero-bottom-nav {
    background-color: var(--second-color);
    position: sticky;
    z-index: 200;
    text-transform: uppercase;
    top: 100%;
}

.about-content {
    padding-block: 50px;
}

.about-content:nth-child(odd) .row {
    flex-direction: row-reverse;
}

.breadcrumb-banner .section-title h2 {

    max-width: 100%;
}

/* =========================================
    Start Video Section
===========================================*/
.video-section {
    height: 82vh;
    /* Full viewport height */
    overflow: hidden;
}

.video-container,
.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire area */
    z-index: -1;
    /* Places the video behind other content */
}

.video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* Align content to the bottom */
    align-items: center;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    /* Optional: Add a slight dark overlay */
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    /* Semi-transparent background */
    padding: 10px;
    border-radius: 5px;
}

.video-controls button {
    background: none;
    border: none;
    color: var(--main-color);
    /* Adjust color as needed */
    font-size: 20px;
    cursor: pointer;
    padding: 0 5px;
}

#progress-bar {
    flex-grow: 1;
    /* Allows the progress bar to take up available space */
    height: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    /* Background for the progress bar */
    cursor: pointer;
}

#progress-bar-fill {
    height: 100%;
    background-color: var(--main-color);
    /* Color for the filled progress */
    width: 0%;
    /* Will be updated by JavaScript */
}

.video-controls input[type="range"] {
    width: 150px;
    /* Adjust as needed */
}

/* ===============================================
      End Video Section
  ===============================================*/

.why-choose-us {
    background-color: var(--second-color);
}

.why-choose-us h2 {
    font-size: 60px;
    color: var(--main-color);
}

.choose-us-wrapper {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    position: relative;
    gap: 10%;
}

.choose-us-item {
    flex: 1;
}


.choose-us-wrapper::before {
    height: 80%;
    position: absolute;
    content: "";
    right: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    width: 2px;
    background-color: var(--main-color);
    z-index: 22;
    opacity: 0.5;
}

.choose-us-item ul li,
.book-trust-item ul li {
    font-size: 20px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.choose-us-item ul li::before,
.book-trust-item ul li::before {
    position: absolute;
    top: 10px;
    left: -10px;
    content: "";
    border: 1px solid var(--main-color);
    border-radius: 50%;
    height: 10px;
    width: 10px;
}

.book-trust h2,
.meet-expert h2 {
    color: var(--main-color);
    font-size: 60px;
    font-weight: 500;
}

.expert-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.expert-wrapper::before {
    position: absolute;
    content: "";
    left: 50%;
    width: 1px;
    height: 100%;
    top: 0;
    right: 50%;
    background-color: var(--main-color);
}

.expert-wrapper a img {
    border-radius: 50%;
    height: 150px;
    width: 150px;
    object-fit: cover;
    margin-bottom: 10px; border-radius: 50%;
}

.expert-wrapper expert-link {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.expert-item {
    text-align: center;
    margin: 50px;
}

.expert-item h3 {
    font-size: 60px;
    color: var(--main-color);
    text-transform: uppercase;
    margin: auto;
}

.expert-item p {
    font-size: 20px;
    color: var(--main-color);
}

.expert-item img {
    border-radius: 50%;
}

.mobile-hero-nav {
    position: sticky;
    top: 100%;
}

#about-us ul{
     list-style: disc;
}

#about-us ul li {
    font-weight: 300;
    color: var(--para-color);
    font-size: 18px;
    list-style: disc;
    display: list-item;
}
