/* ============== BANNER ============== */
.product-banner {
    width: 100%;
    height: 322px;
    background-position: center;
    background-repeat: no-repeat;
    object-fit: cover;
    position: relative;
}

.product-banner::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 1;
    z-index: 1;
}

.product-banner .banner-theam {
    position: relative;
    z-index: 2;
}



/* ============== about text ==============  */
.about-text {
    background-color: var(--sky-white);
}

.about-text .text-box {
    background-color: var(--light-white);
    border-radius: 20px;
    box-shadow: 0px 0px 8px -3px var(--dark);
}

.about-text .text-box p {
    color: var(--light-dark);
    font-weight: var(--fw-normal);
    font-size: var(--mediuum-size);
}

.about-text .team-box {
    background-color: var(--light-white);
    border-radius: 8px;
    box-shadow: 0px 0px 8px -3px var(--dark);
    height: 100px;
}

.about-text .team-box-text h4 {
    color: var(--dark);
    font-weight: var(--fw-medium);
    font-size: var(--xl-size);
    /* margin-bottom: 0; */
}


.about-text .team-box-text p {
    color: var(--light-dark);
    font-weight: var(--fw-normal);
    font-size: var(--common-size);
    margin-bottom: 0;
}

.about-text .right-box {
    background-color: var(--light-white);
    border-radius: 8px;
    box-shadow: 0px 0px 8px -3px var(--dark);
    height: 80px;
}

.about-text .right-box-text h4 {
    color: var(--dark);
    font-weight: var(--fw-medium);
    font-size: var(--xl-size);
    margin-bottom: 0;
}

.about-text .right-box .about-icon {
    width: 50px;
    height: 50px;
}


/* about video  */

.about-video {
    background-image: url("../img/about-video.png");
    height: 491px;
    width: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.about-video::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 491px;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 0;
}

.about-video h1 {
    color: var(--light-white);
    font-size: 60px;
    z-index: 1;
    text-align: center;
}



/* ============== video img  ============== */
/* Section Styling */
.about-video {
    width: 100%;
    height: 491px;
    overflow: hidden;
    position: relative;
}

/* Video Background */
.about-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Overlay Content */
.video-text {
    position: relative;
    z-index: 2;
    color: var(--light-white);
}

.video-text .video-button {
    background-color: var(--light-white);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-text .video-button i {
    color: var(--dark);
    font-size: 20px;
}

/* Optional: Dark overlay for better text contrast */
.about-video::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.5;
    z-index: 1;
}

.policy-section {
    background-color: var(--sky-white);
}

.policy-box {
    background-color: var(--light-white);
    border-radius: 25px;
    border: 1px solid var(--light-dark);
}

.policy-box p {
    font-size: var(--mediuum-size);
    font-weight: var(--fw-normal);
    color: #222222;
}

.policy-box p span {
    font-weight: var(--fw-semi-bold);
}

.policy-box .end p {
    font-size: var( --mediuum-size);
    font-weight: 900;
    color: #222222;
}
