/* Header Section */
.header-section {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-background {

    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-background iframe {
    height: 56.25vw;
    width: 100%;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.header-content {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    text-align: center;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background-color: #fff;
}

.section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    color: var(--text-light);
    margin-bottom: 3rem;
}

.vision-mission-cards {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
}

.vm-card {
    background-color: rgba(0, 158, 194, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    flex: 1;
    border: 1px solid var(--primary-color);
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.vm-card-icon i {
    color: white;
    font-size: 24px;
}

.vm-card-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.vm-card-text {
    color: var(--text-light);
    line-height: 1.6;
}

.vision-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 500px;
}

.vision-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

.vision-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    background-color: rgb(249 250 251);
}

.services-section .services-icon {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.services-section .services-card {
    border-radius: var(--main-radius);
    box-shadow: 15px 15px 47px 0px #cdcdcd26;
}

.services-section .services-card .secondary-btn {
    cursor: pointer;
}

.services-section .services-control {
    position: absolute;
    width: 99%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
@media (min-width: 1600px) {
    .services-section .services-control {
        width: 85%;
    }
}
.services-section .services-control .swiper-button {
    box-shadow: 15px 15px 35px 0px #00000026;
}

.services-modal-icon {
    width: 64px;
    height: 64px;
}

.dialog-services {
    border-radius: var(--main-radius);
}

.fancybox__nav button {
    display: none;
}

.arabic-version .fancybox-arrows i {
    scale: 1 !important;
}


.video-overlay {
    pointer-events: none !important;
}
#muteToggle {
    position: absolute;
    z-index: 999999 !important;
    pointer-events: auto !important;
}
