
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background: #0a0a0a;
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            min-height: 100vh;
        }


        body::before {
            content: '';
            position: fixed;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(244, 229, 195, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
            animation: moveBackground 20s ease-in-out infinite;
            pointer-events: none;
            z-index: 0;
        }

        @keyframes moveBackground {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-5%, -5%); }
        }

        .container {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }


        .header {
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
        }

        #النمري {
            font-size: 30px;
        }

        .main-title {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 200;
            background: linear-gradient(135deg, #d4af37 0%, #f4e5c3 50%, #d4af37 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
            letter-spacing: 8px;
            position: relative;
            animation: fadeInDown 1s ease;
        }

        .main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #d4af37, transparent);
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #999;
            font-weight: 300;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s both;
        }


        .stats-bar {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin: 3rem 0 4rem;
            padding: 2.5rem 3rem;
            background: rgba(15, 15, 15, 0.5);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.15);
            animation: fadeInUp 1s ease 0.4s both;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: -2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: linear-gradient(180deg, transparent, rgba(212, 175, 55, 0.3), transparent);
        }

        .stat-number {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            font-weight: 300;
            color: #d4af37;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: #888;
            letter-spacing: 1px;
        }


        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .card {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
            border: 1px solid rgba(212, 175, 55, 0.219);
            border-radius: 20px;
            padding: 2.5rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            animation: fadeInUp 1s ease both;
        }

        .card:nth-child(1) { animation-delay: 0.6s; }
        .card:nth-child(2) { animation-delay: 0.7s; }
        .card:nth-child(3) { animation-delay: 0.8s; }
        .card:nth-child(4) { animation-delay: 0.9s; }


        .card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #d4af37d0, #be8c17e0, #c9aa61e1, #d4af37dc);
            border-radius: 20px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.5s ease;
            filter: blur(10px);
        }

        .card:hover::before {
            opacity: 0.6;
        }

        .card:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 25px 50px rgba(212, 175, 55, 0.2);
        }

        .card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
        }

        .card-icon {
            width: 60px;
            height: 60px;
            transition: transform 0.5s ease;
            filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
        }

        .card:hover .card-icon {
            transform: scale(1.1) rotate(-5deg);
        }

        .card-badge {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 229, 195, 0.1));
            color: #d4af37;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 500;
            border: 1px solid rgba(212, 175, 55, 0.3);
            letter-spacing: 1px;
        }

        .card-title {
            font-size: clamp(1.5rem, 2.5vw, 1.8rem);
            font-weight: 400;
            color: #d4af37;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .card:hover .card-title {
            color: #f4e5c3;
            letter-spacing: 1px;
        }

        .card-description {
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 300;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .visit-btn {
            background: linear-gradient(135deg, #d4af37de, #b8891ce1);
            color: #000;
            padding: 0.7rem 1.8rem;
            border: solid 1.8px #d4af37;
            border-radius: 25px;
            font-weight: 650;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .visit-btn:hover {
            background: #d4af376c;
            color: #d4d4d4;
            border: solid 1.8px #d4af37;
            transform: translateY(-2px);
        }

        .card-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #4ade80;
            font-size: 0.85rem;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #4ade80;
            border-radius: 50%;
            box-shadow: 0 0 10px #4ade80;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(0.95); }
        }


        .footer {
            text-align: center;
            padding: 3rem 2rem;
            background: rgba(15, 15, 15, 0.5);
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(212, 175, 55, 0.1);
            animation: fadeInUp 1s ease 1s both;
        }

        .footer-content {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            font-weight: 300;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-link {
            color: #888;
            text-decoration: none;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1px;
            background: #d4af37;
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: #d4af37;
        }

        .footer-link:hover::after {
            width: 100%;
        }


        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            background: linear-gradient(145deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%);
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 3rem;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.4s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            background: rgba(212, 175, 55, 0.2);
            border: 1px solid rgba(212, 175, 55, 0.3);
            color: #d4af37;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            transform: rotate(90deg);
        }

        .modal-close:hover {
            background: rgba(212, 175, 55, 0.3);
            color: #ccccccc0;
        }

        .modal-title {
            font-size: 2rem;
            color: #d4af37;
            margin-bottom: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        .modal-text {
            color: #aaa;
            line-height: 1.8;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }

        .modal-text h3 {
            color: #d4af37;
            font-size: 1.2rem;
            margin: 2rem 0 1rem;
            font-weight: 400;
        }

        .modal-text ul {
            margin-right: 1.5rem;
            margin-bottom: 1rem;
        }

        .modal-text li {
            margin-bottom: 0.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            color: #d4af37;
            font-size: 0.9rem;
            font-weight: 400;
        }

        .form-group input,
        .form-group textarea {
            background: rgba(10, 10, 10, 0.5);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 10px;
            padding: 0.8rem;
            color: #fff;
            font-family: inherit;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(212, 175, 55, 0.5);
            background: rgba(10, 10, 10, 0.7);
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, #d4af37, #c9a961);
            color: #000;
            padding: 1rem;
            border: none;
            border-radius: 10px;
            font-weight: 500;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .submit-btn:hover {
            background: linear-gradient(135deg, #f4e5c3, #d4af37);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
        }

        /* Scrollbar Styling */
        .modal-content::-webkit-scrollbar {
            width: 10px;
        }

        .modal-content::-webkit-scrollbar-track {
            background: transparent;
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb {
            background: transparent;
            border-radius: 10px;
        }

        .modal-content::-webkit-scrollbar-thumb:hover {
            background: transparent;
        }

        /* Global Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #0a0a0a00;
        }

        ::-webkit-scrollbar-thumb {
            background:transparent;
            border-radius: 10px;
            border: 2px solid #0a0a0a;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: transparent;
        }

        @media (max-width: 768px) {
            .container {
                padding: 2rem 1rem;
            }

            .stats-bar {
                flex-direction: column;
                gap: 2rem;
                padding: 2rem;
            }

            .stat-item:not(:last-child)::after {
                display: none;
            }

            .cards-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .card {
                padding: 2rem;
            }

            .card-footer {
                flex-direction: column;
                gap: 1rem;
                align-items: stretch;
            }

            .visit-btn {
                width: 100%;
            }

            .footer-links {
                flex-direction: column;
                gap: 1rem;
            }

            .modal-content {
                padding: 2rem;
                width: 95%;
            }

            .modal-title {
                font-size: 1.5rem;
            }
        }
