/* Custom Styles & Overrides */
        body {
            overflow-x: hidden;
            font-family: 'Cairo', sans-serif;
        }

        /* Smooth Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1; 
        }
        ::-webkit-scrollbar-thumb {
            background: #71469c; 
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #249b86; 
        }

        /* Swiper Pagination */
        .swiper-pagination-bullet {
            background: white;
            opacity: 0.5;
        }
        .swiper-pagination-bullet-active {
            background-color: #249b86 !important;
            width: 35px;
            border-radius: 10px;
            opacity: 1;
            transition: all 0.3s;
        }

        /* Text Effects */
        .text-gradient {
            background: linear-gradient(to right, #71469c, #249b86);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-text {
            text-shadow: 0 4px 30px rgba(0,0,0,0.3);
        }

        /* Glassmorphism */
        .glass-nav {
            background: rgba(15, 15, 26, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
        }

        /* Advanced Hover Effects */
        .hover-glow {
            transition: all 0.4s ease;
        }
        .hover-glow:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px -5px rgba(113, 70, 156, 0.3);
        }

        .hover-scale-img img {
            transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .hover-scale-img:hover img {
            transform: scale(1.15);
        }

        /* Floating Button Animation */
        .floating-btn {
            z-index: 9999;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .floating-btn:hover {
            transform: scale(1.15) rotate(5deg);
        }

        /* Ken Burns Effect for Hero */
        @keyframes kenburns {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }
        .ken-burns-img {
            animation: kenburns 20s infinite alternate;
        }

        /* SVG Separator Utility */
        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
            transform: rotate(180deg);
        }
        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(150% + 1.3px);
            height: 80px;
        }
        .custom-shape-divider-bottom .shape-fill {
            fill: #ffffff;
        }

        /* Smooth Text Rendering */
        .prose p {
            line-height: 1.8;
            margin-bottom: 1.5em;
            color: #4b5563;
        }
        .prose h3 {
            color: #0f0f1a;
            font-weight: 800;
            font-size: 1.5rem;
            margin-top: 2em;
            margin-bottom: 0.75em;
        }
        .prose ul {
            margin-bottom: 1.5em;
            list-style-type: none;
        }
        .prose li {
            position: relative;
            padding-inline-start: 1.5em;
            margin-bottom: 0.5em;
            color: #4b5563;
        }
        /* Custom Bullet using pseudo-element for RTL support */
        .prose li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6em;
            width: 6px;
            height: 6px;
            background-color: #249b86; /* Brand Teal */
            border-radius: 50%;
        }
        /* RTL Bullet adjustment */
        html[dir="rtl"] .prose li::before {
            left: auto;
            right: 0;
        }

        /* Line Clamp Utility */
        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Card Hover Effects */
        .blog-card {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .blog-card:hover .card-img {
            transform: scale(1.05);
        }

        .prose blockquote {
            border-left: 4px solid #71469c;
            padding-left: 1.5rem;
            font-style: italic;
            color: #1f2937;
            background: #f9fafb;
            padding: 1.5rem;
            border-radius: 0 1rem 1rem 0;
            margin-bottom: 2rem;
        }
        html[dir="rtl"] .prose blockquote {
            border-left: none;
            border-right: 4px solid #71469c;
            padding-left: 0;
            padding-right: 1.5rem;
            border-radius: 1rem 0 0 1rem;
        }

		.glass-panel {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
         }