  @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap');


    :root {
            --primary: #5046e5;
            --primary-dark: #3e35c4;
            --primary-light: #483ed5;
            --white: #ffffff;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }

    body {
        background: #f8fafc; /* خلفية الصفحة بيضاء */
        min-height: 100vh;
		 margin: 0;
         padding: 0;
    }

    .header {
        height: 70px; /* ارتفاع الهيدر */
        padding: 0 2rem; /* تعديل الحشو ليكون مناسبًا للارتفاع الجديد */
        position: fixed;
        width: 100%;
        top: 0;
		padding-top: 0px;
        z-index: 1000;
        background: linear-gradient(135deg, var(--primary), var(--primary-light)); /* الحفاظ على لون الهيدر */
        transition: var(--transition);
    }

        .header.scrolled {
            background: rgba(80, 70, 229, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container img {
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        width: 100%;
        height: auto;
        max-width: 200px; /* اضبط هذه القيمة حسب احتياجك */
    }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 38px;
            height: 38px;
            background: var(--white);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            transform: rotate(-10deg);
        }

        .logo-section:hover .logo-icon {
            transform: rotate(0deg);
        }

            @font-face {
                font-family: 'VEXA';
                src: url('./fonts/VEXA.woff2') format('woff2'),
                     url('./fonts/VEXA.woff') format('woff'),
                     url('./fonts/VEXA.ttf') format('truetype');
                font-display: swap;
                font-weight: 400;
            }
        
        .logo-text {
            color: var(--white);
            font-size: 1.6rem;
            font-weight: 400;
            text-decoration: none;
            font-family: 'VEXA', sans-serif;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2.5rem;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--white);
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 0.6rem 1.2rem;
            border-radius: 8px;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .nav-link svg {
            transition: var(--transition);
        }

        .nav-item:hover .nav-link svg {
            transform: rotate(180deg);
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: calc(100% + 0.5rem);
            right: 0;
            background: var(--white);
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
            padding: 0.75rem;
            opacity: 0;
            transform: translateY(10px);
            transition: var(--transition);
        }

        .nav-item:hover .dropdown-content {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .dropdown-link {
            color: #333;
            text-decoration: none;
            padding: 0.75rem 1rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            border-radius: 8px;
            transition: var(--transition);
            font-weight: 500;
        }

        .dropdown-link:hover {
            background: rgba(26, 115, 232, 0.1);
            color: var(--primary);
            transform: translateX(-5px);
        }

        .dropdown-link svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
        }

        .promo-badge {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-left: 1rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .promo-badge svg {
            width: 16px;
            height: 16px;
            fill: #ffd700;
        }

        .action-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
            display: <?php echo isset($_SESSION['user_id']) ? 'none' : 'flex'; ?>;
        }

        .login-btn {
            background: var(--white);
            color: var(--primary);
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .get-started-btn {
            background: rgba(255, 255, 255, 0.15);
            color: var(--white);
            padding: 0.6rem 1.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1rem;
        }

        .get-started-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .mobile-menu {
            display: none;
        }

        @media (max-width: 1200px) {
            .nav-menu {
                gap: 1.5rem;
            }
            
            .nav-link {
                padding: 0.5rem 1rem;
            }

            .promo-badge {
                display: none;
            }
        }

        @media (max-width: 968px) {
				.nav-menu {
                display: none;
                position: fixed;
                top: 160px;
                right: 0;
                left: 0;
                background: var(--primary);
                padding: 1.5rem;
                flex-direction: column;
                align-items: stretch;
                gap: 1rem;
                opacity: 0;
                transform: translateY(-10px);
                transition: var(--transition);
            }

            .action-buttons {
                display: none;
                position: fixed;
                top: 70px;
                right: 0;
                left: 0;
                background: var(--primary);
                padding: 1rem 1.5rem;
                flex-direction: column;
                gap: 0.5rem;
                z-index: 2;
            }

            .nav-menu.active, .action-buttons.active {
                display: flex;
                opacity: 1;
                transform: translateY(0);
            }

            .dropdown-content {
                position: static;
                background: rgba(255, 255, 255, 0.1);
                box-shadow: none;
                margin: 0.5rem 0;
                padding: 0.5rem;
                display: none;
                opacity: 1;
                transform: none;
            }

            .nav-item.active .dropdown-content {
                display: block;
            }

            .login-btn, .get-started-btn {
                width: 100%;
                justify-content: center;
            }

            .nav-menu.active, .action-buttons.active {
                display: flex;
                opacity: 1;
                transform: translateY(0);
            }

            .nav-item {
                width: 100%;
            }

            .nav-link {
                width: 100%;
                justify-content: space-between;
            }

            .dropdown-content {
                position: static;
                background: rgba(255, 255, 255, 0.1);
                box-shadow: none;
                margin: 0.5rem 0;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                transform: none;
                transition: max-height 0.3s ease;
            }

            .nav-item.active .dropdown-content {
                max-height: 500px;
            }

            .dropdown-link {
                color: var(--white);
            }

            .dropdown-link:hover {
                background: rgba(255, 255, 255, 0.15);
                color: var(--white);
            }

            .mobile-menu {
                display: flex;
                flex-direction: column;
                gap: 6px;
                background: none;
                border: none;
                padding: 0.5rem;
                cursor: pointer;
                z-index: 100;
            }

            .mobile-menu div {
                width: 28px;
                height: 2px;
                background: var(--white);
                transition: var(--transition);
                border-radius: 2px;
            }

            .mobile-menu.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-6px, 6px);
            }

            .mobile-menu.active div:nth-child(2) {
                opacity: 0;
                transform: translateX(10px);
            }

            .mobile-menu.active div:nth-child(3) {
                transform: rotate(45deg) translate(-6px, -6px);
            }

            .login-btn, .get-started-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .nav-item {
            animation: fadeIn 0.5s ease forwards;
        }

        .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .nav-item:nth-child(4) { animation-delay: 0.4s; }
        .nav-item:nth-child(5) { animation-delay: 0.5s; }
        .nav-item:nth-child(6) { animation-delay: 0.6s; }
		
.slider-container {

            height: 500px;
            margin: 0;
            padding: 0;
            overflow: hidden;
            background-color: #483ed5;
            position: relative;
        }

        .slide {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            height: 100%;
            width: 100%;
        }

        .slide.active {
            display: flex;
            opacity: 1;
            justify-content: right;
            padding-right: 280px;
            padding-top: 160px;
            align-items: center;
        }

        .slide-content {
            text-align: right;
            padding: 20px;
            max-width: 600px;
            width: 100%;
            position: relative;
            z-index: 2; /* تعيين z-index أعلى من الطبقة الشفافة */
        }

        .slide-badge {
            background: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            display: inline-block;
            margin-bottom: 20px;
        }

        .slide-title {
            font-size: 48px;
            color: #ffffff;
            margin-bottom: 10px;
            font-weight: bold;
            line-height: 1.2;
        }

        .slide-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .slide-button {
            background: #fff;
            color: #5046e5;
            padding: 12px 24px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-left: 20px;
            transition: all 0.3s ease;
        }

        .slide-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }

        .slide-price {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
        }

        /* تنسيقات الأجهزة المحمولة */
        @media (max-width: 968px) {
            .slider-container {
                height: 400px;
            }

            .slide.active {
                padding-right: 0;
                padding-top: 80px;
                justify-content: center;
            }

            .slide-content {
                text-align: center;
                padding: 20px;
            }

            .slide-title {
                font-size: 32px;
            }

            .slide-description {
                font-size: 16px;
                margin-bottom: 20px;
            }

            .slide-button {
                margin: 0 auto 15px auto;
                display: block;
                text-align: center;
				width: 160px;     /* عرض الزر */
				height: 40px;     /* ارتفاع الزر */

				
            }

            .slide-price {
                display: block;
                text-align: center;
            }
        }

        /* تنسيقات الهواتف الصغيرة */
        @media (max-width: 480px) {
            .slider-container {
                height: 350px;
            }

            .slide-title {
                font-size: 28px;
            }

            .slide-description {
                font-size: 14px;
            }

            .slide-badge {
                font-size: 12px;
                padding: 6px 12px;
            }

            .slide-button {
                padding: 10px 20px;
                font-size: 14px;
                text-align: center;
				width: 160px;     /* عرض الزر */
				height: 40px;     /* ارتفاع الزر */
            }
        }
		        /* إضافة النقاط المتحركة للخلفية */
        .slider-container::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 30px 30px;
            animation: fadeInOut 3s infinite;
        }
		  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .xcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }

        .xheader {
            text-align: center;
            margin-bottom: 4rem;
            animation: fadeInDown 0.8s ease-out;
        }

        .xheader h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1e293b;
            font-weight: 700;
        }

        .xheader p {
            color: #64748b;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .xxplans-xcontainer {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            padding: 1rem;
        }

        .xplan-card {
            background: white;
            border-radius: 14px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: fadeInUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .xplan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #483ed5;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
        }

        .xplan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .xplan-card:hover::before {
            opacity: 1;
        }

        .xplan-card > * {
            position: relative;
            z-index: 2;
        }

        .xplan-card:hover .icon  {
            filter: brightness(0) invert(1); /* هذا سيجعل الأيقونة بيضاء */
            transform: scale(1.1);
        }
		
		.icon {
			width: 54px;
			height: 54px;
			transition: all 0.3s ease;
			
			
		}


        .icon-xcontainer {
            text-align: center;
            margin-bottom: 2rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
			
			
        }
		.xplan-card:hover .icon-xcontainer {
		color:#fff;
		}

        .icon svg {
            width: 48px;
            height: 48px;
            transition: all 0.4s ease;
			
        }

        .xplan-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            transition: color 0.4s ease;
        }

        .xplan-card:hover .xplan-title,
        .xplan-card:hover .xplan-description,
        .xplan-card:hover .xplan-price {
            color: white;
        }

        .xplan-description {
            margin-bottom: 1.5rem;
            color: #64748b;
            transition: color 0.4s ease;
			line-height: 1.5; /* مسافة بين الأسطر */
        }

        .xplan-price {
            font-weight: 200;
            font-size: 15px;
            margin-bottom: 2rem;
            transition: color 0.4s ease;
		    font-weight: bold;
        }

        .view-xxplans-btn {
            display: block;
            width: 100%;
            padding: 1rem;
            border: none;
            border-radius: 0px;
            background: #483ed5;
            color: white;
            font-weight: 500;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .xplan-card:hover .view-xxplans-btn {
            background: white;
            color: #483ed5;
            transform: scale(1.05);
        }

        .view-xxplans-btn:hover {
            transform: scale(1.05);
        }

        .xplan-card:hover .view-xxplans-btn:hover {
            transform: scale(1.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .xplan-card:nth-child(1) { animation-delay: 0.1s; }
        .xplan-card:nth-child(2) { animation-delay: 0.2s; }
        .xplan-card:nth-child(3) { animation-delay: 0.3s; }
        .xplan-card:nth-child(4) { animation-delay: 0.4s; }

        @media (max-width: 1200px) {
            .xxplans-xcontainer {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .xcontainer {
                padding: 1.5rem 0rem;
            }

            .xheader h1 {
                font-size: 2rem;
            }

            .xxplans-xcontainer {
                grid-template-columns: 1fr;
            }
        }


        .faq-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            gap: 4rem;
            align-items: flex-start;
        }

		@media screen and (max-width: 768px) {
			.faq-image-section {
				display: none;
			}
			
			            .faq-container {
                flex-direction: column-reverse;
                gap: 2rem;
				padding: 1rem;
            }


            .faq-header h1 {
                font-size: 1.5rem;
            }

            .faq-header p {
                font-size: 0.9rem;
            }

            .faq-question {
                padding: 1rem;
                font-size: 0.95rem;
            }

            .faq-answer {
                font-size: 0.9rem;
            }

            .faq-image-section {
                position: relative;
                width: 100%;
            }

            .faq-image-section img {
                max-width: 100%;
                height: auto;
            }

            .faq-tags {
                margin-bottom: 1rem;
            }
        }

        @media (max-width: 480px) {
            .faq-container {
                gap: 1.5rem;
            }

            .faq-header h1 {
                font-size: 1.3rem;
            }

            .faq-question {
                padding: 0.875rem;
            }

            .faq-tag {
                font-size: 0.8rem;
                padding: 0.2rem 0.8rem;
            }
        }

        .faq-section {
            flex: 1;
        }

        .faq-image-section {
            flex: 1;
            position: sticky;
            top: 2rem;
        }

        .faq-header {
            margin-bottom: 2rem;
        }

        .faq-header h1 {
            color: #000000;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .faq-header p {
            color: #666;
            line-height: 1.6;
        }

        .faq-item {
            background: white;
            border-radius: 8px;
            margin-bottom: 1rem;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 500;
            color: #333;
        }

        .faq-question:hover {
            background-color: #f8f9fa;
        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #666;
            line-height: 1.6;
        }

        .faq-item.active .faq-answer {
            padding: 1rem 1.5rem;
            max-height: 500px;
        }

        .faq-toggle-icon {
            width: 24px;
            height: 24px;
            position: relative;
        }

        .faq-toggle-icon::before,
        .faq-toggle-icon::after {
            content: '';
            position: absolute;
            background-color: #666;
            transition: all 0.3s ease;
        }

        .faq-toggle-icon::before {
            width: 2px;
            height: 16px;
            top: 4px;
            left: 11px;
        }

        .faq-toggle-icon::after {
            width: 16px;
            height: 2px;
            top: 11px;
            left: 4px;
        }

        .faq-item.active .faq-toggle-icon::before {
            transform: rotate(90deg);
            opacity: 0;
        }

        .faq-image-section img {
            padding-top: 40px;
            width: 65%;
            height: auto;
        }

        .faq-tag {
            display: inline-block;
            padding: 0.25rem 1rem;
            border-radius: 16px;
            background-color: #5046e5;
            color: #fff;
            margin: 0.25rem;
            font-size: 0.9rem;
        }
			
        .page-container {
            max-width: 1600px;
            margin: 40px auto;
            padding: 0 20px;
        }

        .hero-be {
            background-color: #483ed5;
            border-radius: 24px;
            padding: 48px;
            position: relative;
            overflow: hidden;
            min-height: 350px;
            display: flex;
            align-items: center;
            max-width: 1600px;
            margin: 0 auto;
			
        }

        .hero-be-content {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
		
        }

        .hero-be-text {
            flex: 1;
            color: white;
            text-align: right;
        }

        .hero-be-text h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            font-weight: 700;
        }

        .hero-be-text p {
            font-size: 1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            opacity: 0.9;
        }

        .hero-be-illustration {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .hero-be-image {
            width: 80%;
            max-width: 300px;
            height: auto;
            animation: float 3s ease-in-out infinite;
			float: left;
			margin-right: 280px;
			margin-left: 0;
        }
		    .hero-header-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            animation: float 3s ease-in-out infinite;
			float: left;
			margin-right: 320px;
			margin-left: 0;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
            100% {
                transform: translateY(0px);
            }
        }

        .hero-be-button {
            display: inline-block;
            background-color: #fff;
            color: #000;
            padding: 10px 24px;
            border-radius: 0px;
            text-decoration: none;
            font-weight: 500;
            transition: transform 0.2s;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            font-size: 0.9rem;
        }

        .hero-be-button:hover {
            transform: translateY(-2px);
        }

        .hero-be::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.1) 1px, transparent 0);
            background-size: 30px 30px;
            animation: fadeInOut 3s infinite;
            pointer-events: none;
            top: 0;
            left: 0;
        }
		
		@media (max-width: 1600px) {
    .hero-header-image {
        display: none; /* إخفاء العنصر */
    }
}

        @media (max-width: 768px) {
            .hero-be {
                padding: 32px;
            }

            .hero-be-content {
                flex-direction: column;
                text-align: center;
                gap: 24px;
            }

            .hero-be-text {
                text-align: center;
                order: 2;
            }

            .hero-be-illustration {
                order: 1;
                margin-bottom: 20px;
            }

            .hero-be-image {
                max-width: 350px;
                margin: 0 auto;
				
            }
			 .hero-header-image {
                max-width: 350px;
                margin: 0 auto;
				display: none;
            }
        }

        @media (max-width: 480px) {
            .page-container {
                padding: 0 10px;
                margin: 20px auto;
            }

            .hero-be {
                padding: 24px;
            }

            .hero-be-text h2 {
                font-size: 1.5rem;
            }

            .hero-be-text p {
                font-size: 0.9rem;
            }

            .hero-be-image {
                max-width: 150px;
				
            }
			 .hero-header-image {
                max-width: 150px;
				display: none;
            }
        }
		       /* إعادة تعيين الستايل الافتراضي */
        .bk-footer * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        /* تنسيق Footer */
        .bk-footer {
            background-color: #111111;
            color: #ffffff;
            padding: 3rem 0;
        }

        .bk-footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .bk-footer-content {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
        }

        /* تنسيق الأقسام */
        .bk-footer-section {
            margin-bottom: 1.5rem;
        }

        .bk-footer-section h3 {
            color: #ffffff;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .bk-footer-section p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* تنسيق القوائم */
        .bk-footer-links {
            list-style: none;
        }

        .bk-footer-links li {
            margin-bottom: 0.5rem;
        }

        .bk-footer-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .bk-footer-links a:hover {
            color: #ffffff;
        }

        /* تنسيق معلومات الاتصال */
        .bk-contact-info div {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
            color: #cccccc;
        }

        .bk-contact-info i {
            margin-left: 0.5rem;
            width: 20px;
        }

        /* تنسيق وسائل التواصل الاجتماعي */
        .bk-social-links {
            display: flex;
            gap: 1rem;
        }

        .bk-social-links a {
            color: #cccccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .bk-social-links a:hover {
            color: #ffffff;
        }

        /* تنسيق حقوق النشر */
        .bk-footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #333;
            color: #888;
        }

        /* التجاوب مع الشاشات */
        @media (min-width: 768px) {
            .bk-footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
		.gapgap {
    display: flex;
    flex-direction: column;
    gap: 80px;  /* مسافة بين العناصر */
}


