    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            /* Professional Color System - Red Primary Theme */
            --primary-color: #FF4748;      /* Red - Primary (Energy & Power) */
            --primary-dark: #E63946;       /* Darker Red */
            --primary-light: #FF6B6C;      /* Lighter Red */
            
            --secondary-color: #063D5B;    /* Deep Blue - Secondary */
            --secondary-dark: #042835;     /* Darker Blue */
            --secondary-light: #0B5580;    /* Lighter Blue */
            
            --accent-color: #8AC43F;       /* Green - Accent */
            --accent-dark: #6BA82F;        /* Darker Green */
            --accent-light: #A3D965;       /* Lighter Green */
            
            /* Neutral Colors */
            --light-bg: #F8F9FA;
            --white: #FFFFFF;
            --text-dark: #2C3E50;
            --text-light: #7F8C8D;
            --border-color: #E0E0E0;
            
            /* Gradients */
            --gradient-1: linear-gradient(135deg, #FF4748 0%, #E63946 100%);
            --gradient-2: linear-gradient(135deg, #063D5B 0%, #042835 100%);
            --gradient-3: linear-gradient(135deg, #8AC43F 0%, #6BA82F 100%);
            --gradient-hero: linear-gradient(135deg, #063D5B 0%, #0B5580 50%, #063D5B 100%);
            
            /* Shadows */
            --shadow-sm: 0 2px 8px rgba(6, 61, 91, 0.08);
            --shadow-md: 0 4px 16px rgba(6, 61, 91, 0.12);
            --shadow-lg: 0 8px 32px rgba(6, 61, 91, 0.16);
            --shadow-primary: 0 4px 20px rgba(255, 71, 72, 0.30);
            --shadow-accent: 0 4px 20px rgba(138, 196, 63, 0.25);
            
            /* Transitions */
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
            font-family: 'Tajawal', sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        a {
            text-decoration: none !important;
        }

        nav-links{
            display: flex !important;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }



        .btn-gold {
            background: var(--gradient-1);
            color: var(--secondary-color);
            font-weight: 700;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            border: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
        }

        /* Page Header */
        .page-header {
            background: var(--white);
            padding: 8rem 0 4rem;
            text-align: center;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB800' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.3;
        }

        .page-header-content {
            position: relative;
            z-index: 2;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1rem;
            color: var(--primary-color)
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            align-items: center;
            font-size: 1rem;
            opacity: 0.9;
            color: var(--secondary-color);
        }

        .breadcrumb a {
            color: var(--secondary-color);
        }

        .breadcrumb a:hover {
            color: var(--primary-color);
        }

        /* Section */
        .section {
            padding: 5rem 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-1);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 1.5rem auto 0;
        }

        /* About Content */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1rem;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            padding: 1rem;
            background: var(--light-bg);
            border-radius: 10px;
            transition: var(--transition);
        }

        .feature-item:hover {
            background: var(--primary-color);
            color: var(--secondary-color);
            transform: translateX(-5px);
        }

        .feature-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
        }

        .feature-item:hover i {
            color: var(--secondary-color);
        }

        /* Vision Mission */
        .vm-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .vm-card {
            background: var(--white);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            opacity: 0.1;
            border-radius: 50%;
            transform: translate(30%, -30%);
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 2rem;
        }

        .vm-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .vm-card p {
            color: var(--text-light);
            line-height: 1.8;
        }

        /* Values */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .value-card {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 184, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-color);
        }

        .value-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .value-card p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Team */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .team-member {
            text-align: center;
            background: var(--white);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .team-avatar {
            width: 100px;
            height: 100px;
            background: var(--gradient-1);
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--secondary-color);
            font-weight: 900;
        }

        .team-member h4 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 0.5rem;
        }

        .team-member p {
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* Stats */
        .stats-section {
            position: relative;
            overflow: hidden;
            padding: 0;
            margin: 5rem 0;
        }

        .stats-grid {
            background: linear-gradient(135deg, #1A1A2E 0%, #0F3460 50%, #1A1A2E 100%);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
            animation: pulse-bg 8s ease-in-out infinite;
        }

        @keyframes pulse-bg {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .stats-grid::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFB800' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .stats-container {
            position: relative;
            z-index: 2;
        }

        .stats-inner {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
            padding: 2rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 184, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, transparent 100%);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover::before {
            opacity: 1;
        }

        .stat-item:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: rgba(255, 184, 0, 0.5);
            box-shadow: 
                0 20px 60px rgba(255, 184, 0, 0.2),
                0 0 40px rgba(255, 184, 0, 0.1) inset;
        }

        .stat-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
            animation: pulse-icon 3s ease-in-out infinite;
        }

        @keyframes pulse-icon {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 10px 30px rgba(255, 184, 0, 0.4);
            }
            50% {
                transform: scale(1.1);
                box-shadow: 0 15px 40px rgba(255, 184, 0, 0.6);
            }
        }

        .stat-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            animation: shine-icon 3s linear infinite;
        }

        @keyframes shine-icon {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .stat-icon i {
            font-size: 2.5rem;
            color: #1A1A2E;
            position: relative;
            z-index: 2;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #FFB800 0%, #FFF 50%, #FFB800 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
            margin-bottom: 0.5rem;
            animation: gradient-text 3s linear infinite;
            line-height: 1.2;
        }

        @keyframes gradient-text {
            0%, 100% { background-position: 0% center; }
            50% { background-position: 100% center; }
        }

        .stat-label {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            display: block;
            letter-spacing: 0.5px;
        }

        .stat-description {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.5rem;
            display: block;
        }

        /* Decorative Elements */
        .stats-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            pointer-events: none;
        }

        .stats-decoration-1 {
            top: -150px;
            left: -150px;
            background: linear-gradient(135deg, #FFB800 0%, #FF8C00 100%);
        }

        .stats-decoration-2 {
            bottom: -150px;
            right: -150px;
            background: linear-gradient(135deg, #0F3460 0%, #FFB800 100%);
        }

        /* Counter Animation */
        .stat-number[data-count] {
            opacity: 0;
            transform: translateY(20px);
        }

        .stat-number.counted {
            animation: countUp 1.5s ease-out forwards;
        }

        @keyframes countUp {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
    
            .page-header h1 {
                font-size: 2rem;
            }

            .about-content,
            .vm-grid {
                grid-template-columns: 1fr;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-inner {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }

            .stat-icon {
                width: 60px;
                height: 60px;
            }

            .stat-icon i {
                font-size: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .stat-label {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .stats-inner {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .stat-item {
                padding: 1.5rem;
            }
        }
    </style>