        @import url('https://fonts.googleapis.com/css2?family=Amiri:wght@400;700&family=Tajawal:wght@400;500;700&family=Playfair+Display:wght@400;700&display=swap');

        :root {
            --primary-color: #1a365d;
            --secondary-color: #c59d5f;
            --dark-color: #2d3748;
            --light-color: #f7fafc;
        }

        body {
            font-family: 'Tajawal', sans-serif;
        }

        .font-english {
            font-family: 'Playfair Display', serif;
        }

        .font-arabic {
            font-family: 'Amiri', serif;
        }

        .bg-primary {
            background-color: var(--primary-color);
        }

        .bg-secondary {
            background-color: var(--secondary-color);
        }

        .text-primary {
            color: var(--primary-color);
        }

        .text-secondary {
            color: var(--secondary-color);
        }

        .border-secondary {
            border-color: var(--secondary-color);
        }

        .nav-link {
            position: relative;
        }

        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .nav-link:hover:after {
            width: 100%;
        }

        .active-nav:after {
            width: 100%;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .news-card:hover {
            transform: translateY(-5px);
        }

        .file-card:hover {
            background-color: #f8f9fa;
        }

        /* Language specific styles */
        html[lang="en"] {
            direction: ltr;
        }

        html[lang="ar"] {
            direction: rtl;
        }

        html[lang="ur"] {
            direction: rtl;
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }

        /* Animation */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .animate-fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .delay-100 {
            animation-delay: 0.1s;
        }

        .delay-200 {
            animation-delay: 0.2s;
        }

        .delay-300 {
            animation-delay: 0.3s;
        }

        .delay-400 {
            animation-delay: 0.4s;

        }

        .delay-500 {
            animation-delay: 0.5s;
        }

        .icon {
            width: 2.9rem;
            height: 2.9rem;
            border-radius: 100px;
        }

        .text-section {
            max-width: 800px;
            margin: 20px auto;
            background: #fff;
            padding: 20px 30px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            line-height: 2;
            font-family: 'Tajawal', sans-serif;
        }

        .text-wrapper {
            overflow: hidden;
            max-height: 3.6em;
            transition: max-height 0.4s ease;
        }

        .text-wrapper.expanded {
            max-height: 1000px;
        }

        .toggle-button {
            margin-top: 10px;
            background-color: #003366;
            color: white;
            border: none;
            padding: 8px 18px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 15px;
        }

        .footerD {
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 10rem;
            padding-right: 10rem;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-direction: row-reverse;
        }

        .CDT {
            background: var(--secondary-color);
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            border-radius: 5px;
            padding: 5px;
            text-align: left;
            padding-left: 25px;
        }

        .CDT a {
            transition: 0.5s;
            color: rgb(80, 80, 80);
        }

        .CDT a:hover {
            color: #2ecc71;
            transition: 0.5s;
        }
.QL{
    margin-left:700px ;
}
        .QL ul li a:hover {
            color: var(--secondary-color);
        }