        .about-section {
            text-align: center;
            padding: 73px 20px;
        }

        .about-section h2 {
            font-weight: 900;
            font-size: 3.5rem;
        }

        .about-section p {
            color: #555;
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.8;
        }

        .btn-pdf {
            background-color: #015AAA;
            color: #fff;
            border-radius: 8px;
            padding: 10px 20px;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-pdf:hover {
            background-color: var(--sec);
            color: var(--main);
        }

        .btn-pdf i {
            font-size: 1.2rem;
        }

        .stats-section {
            text-align: center;
        }

        .counter {
            font-size: 2rem;
            font-weight: bold;
            color: #015AAA;
            /* أزرق مشابه للصورة */
            position: relative;
        }

        .counter::after {
            content: "+";
            position: absolute;
            /* right: -15px; */
            /* لضبط علامة + */
            top: 0;
        }

        .stats-section p {
            margin-top: 5px;
            color: #015AAA;
            font-weight: 500;
        }


        .custom-tabs {
            background-color: #E9F3FF;
            border-radius: 50px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .custom-tabs .nav-link {
            color: #015AAA;
            padding: 10px 20px;
            border-radius: 50px;
            position: relative;
            transition: color 0.3s ease;
            font-size: 18px;
        }

        .custom-tabs .nav-link.active {
            background-color: transparent;
            color: #0056a6;
            font-weight: bold;
        }

        .custom-tabs .nav-link.active::before {
            content: "*";
            position: absolute;
            right: 0px;
            color: #0056a6;
            font-size: 1.8rem;
            top: 50%;
            transform: translateY(-50%);
        }

        .custom-tabs .nav-link:hover {
            color: #003f7d;
        }

        /* حاوية الصورة */
        .image-wrapper {
            position: relative;
            display: inline-block;
        }

        .rounded-image {
            width: 100%;
            max-width: 500px;
            height: 400px;
            object-fit: cover;
            border-radius: 48px;
            z-index: 2;
            position: relative;
        }

        /* الركن الأزرق خلف الصورة */
        .blue-corner {
            position: absolute;
            bottom: -33px;
            left: -38px;
            width: 61%;
            height: 46%;
            background-color: #0056a6;
            border-radius: 40px;
            z-index: 1;
        }

        /* العنوان مع الأيقونة */
        .title-with-icon {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .title-with-icon h5 {
            color: #015AAA;
        }

        .title-with-icon .icon {
            display: inline-block;
            width: 12px;
            height: 12px;
            background-color: #0056a6;
            border-radius: 50%;
        }

        .about-text {
            color: #333;
            line-height: 1.8;
            text-align: justify;
        }


        @media (max-width: 900px) {

            /* .custom-tabs .nav-link {
                color: #015AAA;
                padding: 10px 20px;
                border-radius: 50px;
                position: relative;
                transition: color 0.3s ease;
                font-size: 13px;
            } */
            .partners-section h2 {
                font-size: 2rem;
                color: #222;
            }

            .about-section h2 {
                font-weight: 900;
                font-size: 2.5rem;
            }
        }

        .custom-tabs .nav-link.active:lang(en)::before {
            content: "*";
            position: absolute;
            left: 0px;
            color: #0056a6;
            font-size: 1.8rem;
            top: 50%;
            transform: translateY(-50%);
        }
