/*intro header start*/

.intro-header .swiper {
    width: 100%;
    height: 100%;
}

.intro-header .swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-header .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-header .swiper-button-next:after, .intro-header .swiper-button-prev:after {
    content: '' !important;
}

.intro-header .swiper-button-next, .intro-header .swiper-button-prev {
    width: 35px;
    height: 35px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease;
}

.intro-header .swiper-button-next:hover, .intro-header .swiper-button-prev:hover {
    background-color: #001F33;
}

.intro-header .swiper-button-next:before, .intro-header .swiper-button-prev:before {
    content: '';
    width: 25px;
    height: 25px;
    mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 24 24" width="512" height="512"%3E%3Cpath d="M7,24a1,1,0,0,1-.71-.29,1,1,0,0,1,0-1.42l8.17-8.17a3,3,0,0,0,0-4.24L6.29,1.71A1,1,0,0,1,7.71.29l8.17,8.17a5,5,0,0,1,0,7.08L7.71,23.71A1,1,0,0,1,7,24Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center center;
    -webkit-mask: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" id="Outline" viewBox="0 0 24 24" width="512" height="512"%3E%3Cpath d="M7,24a1,1,0,0,1-.71-.29,1,1,0,0,1,0-1.42l8.17-8.17a3,3,0,0,0,0-4.24L6.29,1.71A1,1,0,0,1,7.71.29l8.17,8.17a5,5,0,0,1,0,7.08L7.71,23.71A1,1,0,0,1,7,24Z"%3E%3C/path%3E%3C/svg%3E') no-repeat center center;
    mask-size: contain;
    background-color: #C69B7B;
    -webkit-mask-size: contain;
    transition: background-color 0.3s ease;
}

.intro-header .swiper-button-next:hover:before,.intro-header .swiper-button-prev:hover:before {
    background-color: #fff;
}

.intro-header .swiper-button-next:before {
    transform: rotate(180deg);
}

.text-box-wrapper h2 {
    color: #00243B;
    font-size: 30px;
    font-weight: bold;
    line-height: 1.8em;
    text-align: start;
}

.text-box-wrapper .text {
    max-height: 400px;
    overflow-y: scroll;
}

.text-box-wrapper .text p {
    text-align: right;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8em;
    color: #3A3845;
}

.text-box-wrapper .text strong {
    text-align: right;
    font-size: 15px;
    line-height: 1.8em;
    color: #3A3845;
}

/*about us start*/

.about-us-wrapper span {
    margin-right: 16px;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: #333557;
    margin-bottom: 20px;
}

.about-us-wrapper span::before {
    content: '';
    position: absolute;
    right: -16px;
    top: 6px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #333557;
}

.about-us-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.8em;
    letter-spacing: 1px;
    color: #C69B7B;
}

.about-us-wrapper p {
    font-size: 15px;
    font-weight: 500;
    line-height: 2em;
    color: #13262F;
}

.about-us-wrapper .about-us-cta {
    background-color: #C69B7B;
    font-size: 16px;
    font-weight: 500;
    line-height: 2em;
    fill: #FCFCFC;
    color: #FCFCFC;
    border-radius: 0px 0px 0px 0px;
    padding: 10px 40px 10px 40px;
    transition: color 0.4s ease;
}

.about-us-wrapper .about-us-cta:hover {
    color: #3A3845;
}

.about-us-wrapper .video-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rectangle Base */
.about-us-wrapper .rectangle {
    position: absolute;
    border: 1px solid #02010114;
    transition: all 0.3s ease;
    z-index: 0;
}

/* Desktop layout */
@media (min-width: 992px) {
    .about-us-wrapper .rectangle-up {
        width: 200px;
        height: 200px;
        top: -40px;
        left: 16px;
    }

    .about-us-wrapper .rectangle-down {
        width: 150px;
        height: 150px;
        bottom: -40px;
        right: 156px;
    }

    .about-us-wrapper .video-wrap video {
        width: 100%;
        height: auto;
        z-index: 1;
    }
}


@media (min-width: 576px) and (max-width: 991px) {
    .about-us-wrapper .rectangle-up,
    .about-us-wrapper .rectangle-down {
        width: 120px;
        height: 120px;
        opacity: 0.6;
    }

    .about-us-wrapper .rectangle-up {
        top: -20px;
        left: -30px;
    }

    .about-us-wrapper .rectangle-down {
        bottom: -20px;
        right: -20px;
    }

    .about-us-wrapper .video-wrap {
        margin-top: 30px;
    }

    .about-us-wrapper .video-wrap video {
        width: 90%;
        /*border-radius: 10px;*/
    }
}


@media (max-width: 575px) {
    .about-us-wrapper .rectangle-up,
    .about-us-wrapper .rectangle-down {
        width: 80px;
        height: 80px;
        opacity: 0.4;
    }

    .about-us-wrapper .rectangle-up {
        top: -10px;
        left: 10px;
    }

    .about-us-wrapper .rectangle-down {
        bottom: -10px;
        right: 10px;
    }

    .about-us-wrapper .video-wrap {
        margin-top: 25px;
    }

    .about-us-wrapper .video-wrap video {
        width: 100%;
        /*border-radius: 8px;*/
    }
}

/* Video thumbnail container */
.video-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

/* Pulsing play button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    background: transparent;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulse 1.8s infinite;
}

.play-button::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 18px solid rgba(255, 255, 255, 0.8);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    transform: translateX(3px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
    }
    70% {
        box-shadow: 0 0 0 25px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Modal overlay */
.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.video-modal.active {
    display: flex;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    z-index: 1;
}

.video-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 90%;
}

.video-container video {
    width: 100%;
    height: auto;
}

/* Close button */
.close-btn {
    position: absolute;
    top: -30px;
    right: -30px;
    background: none;
    color: white;
    font-size: 40px;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s ease;
}

.close-btn:hover {
    color: #C69B7B;
}


/*full width video start*/
.full-width-video-wrapper {
    height: 500px;
    width: 100%;
}

.full-width-video-wrapper video {
    height: 500px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}