
.header__logo img {
    height: 100%;
    object-fit: cover;
}
.service-info-box i {
    font-size: 1.2rem;
    color: #0d6efd;
    min-width: 24px;
    text-align: center;
}
.nav-list__item {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
.nav-list__item:nth-child(1) { animation-delay: 0.2s; }
.nav-list__item:nth-child(2) { animation-delay: 0.4s; }
.nav-list__item:nth-child(3) { animation-delay: 0.6s; }
.nav-list__item:nth-child(4) { animation-delay: 0.8s; }
.nav-list__item:nth-child(5) { animation-delay: 1s; }
.nav-list__item:nth-child(6) { animation-delay: 1.2s; }

/* Zoom + Fade In بتسلسل عند التحميل */
@keyframes fadeInUp {
    0% {opacity: 0;transform: translateY(20px) scale(0.9);}
    100% {opacity: 1;transform: translateY(0) scale(1);}
}

/* نبض خفيف + لون عند المرور */
@keyframes iconPulse {
    0% { transform: scale(1); color: #ffffff; }
    50% { transform: scale(1.15); color: #0dcaf0; }
    100% { transform: scale(1); color: #ffc107; }
}

/* Slide للنص */
@keyframes slideText {
    0% { transform: translateX(0); }
    50% { transform: translateX(4px); }
    100% { transform: translateX(0); }
}


.nav-list__icon svg {
    transition: transform 0.3s ease, color 0.3s ease;
}

.nav-list__item:hover .nav-list__icon svg {
    animation: iconPulse 0.6s ease-in-out;
    color: #ffc107 !important;
}
.nav-list__item:hover .nav-list__text {
    animation: slideText 0.5s ease-in-out;
    display: inline-block;
}

.mega-menu__watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.06;
    z-index: 0;
    pointer-events: none; /* يمنع التفاعل معها */
}

.mega-menu__watermark img {
    max-width: 100%;
    height: auto;
}

.contact_icon {
    /* background-color: #42db87; */
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 15px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translatey(0px);
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 var(--main-color);
    -webkit-animation: pulsing 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulsing 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulsing 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulsing 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
    font-weight: normal;
    font-family: sans-serif;
    text-decoration: none !important;
    transition: all 800ms ease-in-out;
}

@keyframes pulsing {
    to {
        box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
    }
}


/* style home page  */

/* ---------- الحاوية الرئيسية ---------- */
#app {
    --bg: linear-gradient(180deg, var(--main-color) 0.03%, rgba(8, 147, 203, 0.95) 11.34%, rgba(8, 147, 203, 0.30) 31.75%, rgba(163, 208, 119, 0.44) 77.32%, rgba(163, 208, 119, 0.65) 86.6%, #a3d077 100%);
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
}

/* ---------- القسم العلوي: الفيديو أو الهيدر ---------- */
.section--slider {
    flex: 1 1 auto;
    overflow: hidden;
    position: relative;
    /* flex: 0 0 70%; 60% من الشاشة للفيديو */
}

/* ---------- قسم الشهادات ---------- */
#certificateSection {
    flex: 0 0 18%;
    flex-shrink: 0;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    background-color: transparent !important;
}
.certificateSwiper {
    width: 100%;
    height: 100%;
}

.certificateSwiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certificate-img {
    width: 100px;
    height: 80px;
    object-fit: contain;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    /* display: block; */
    /* margin-bottom: 5px; */
}
.text-certificate {
    font-size: 12px;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}
/* ---------- الفوتر ---------- */
.section--certificate-footer {
    flex: 0 0 15%;
    background-color: #0e94c0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}
footer, x-footer {
    flex-shrink: 0;
}
.apps-img {
    height: 30px;
}
@media (max-width: 768px) {
    .certificate-img {
        width: 60px;
        height: 45px;
    }

    .text-certificate {
        font-size: 10px;
    }

    .apps-img {
        height: 22px;
    }
}
@media (max-width: 992px) {
    footer .footer__backgroundlayer .footer__content-holder {
        gap: 5px;
    }
}
/* end style home page  */
