        /* General styles for the menu items */
        .site-nav a,
        .site-nav .sub-menu li a {
            font-family: 'Cairo', sans-serif;
        }
        
        /* Sub-menu direction for RTL */
        .site-main-menu .menu-item-has-children .sub-menu {
            right: 0;
            left: auto;
            text-align: right;
        }
        .fun-fact-style-two {
    background-color: rgba(255, 255, 255, 0.4); 
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    height: auto; 
    width: 100%; 
}

.fun-fact-style-two:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.banner-btn {
            transition: all 0.3s ease;
        }
        .banner-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .brand-logo {
            height: 120px;
            padding: 15px;
            border-radius: 10px;
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .brand-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
        }
        .feature-card {
            background-color: rgba(255, 255, 255, 0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* إضافة ظل خفيف */
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .feature-card:hover .saaspik-icon-box-icon img {
            transform: scale(1.1);
        }
        .saaspik-icon-box-icon img {
            transition: transform 0.3s ease;
        }
        .pix-btn.color-two {
            background-color: #328d85;
            color: #ffffff;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .pix-btn.color-two:hover {
            background-color: #29726b;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .pix-btn.btn-outline-two {
            background-color: #ffffff;
            color: #328d85;
            border: 2px solid #328d85;
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .pix-btn.btn-outline-two:hover {
            background-color: #328d85;
            color: #ffffff;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            transform: translateY(-2px);
        }

        .editor-content, .genera-informes-content {
            text-align: right;
        }

        .editor-content .description a, .genera-informes-content a {
            margin-top: 20px;
        }
.hover-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.hover-link img {
    display: block;
}

.hover-text {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(50, 141, 133, 0.8); /* خلفية شبه شفافة */
    color: #fff;
    font-family: cairo, sans-serif;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-link:hover .hover-text {
    opacity: 1;
}
