  /* style.css */
        @import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap');
        :root {
            --primary-blue: #1e88e5;
            --dark-blue: #00334e;
            --text-white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --primary-dark: #2E3948;
            --text-muted:#2E3948;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Cairo', sans-serif;
        }
        html{
            overflow-x: hidden;
        }
        body {
            background-color: #f4f4f4;
            color: var(--text-white);
            overflow-x: hidden;
            direction: rtl;
        }

        /* --- Navigation --- */
        header {
            position: absolute;
            top: 0;
            width: 100%;
            z-index: 100;
            background: white;
            padding: 15px 5%;
            
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        header .header-wrraper{
            display: flex;
            justify-content: flex-start;
            align-items: center;
            width: 1320px;
            margin: 0 auto;
        }
        header .nav-right {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        header .logo {
            height: 60px;
        }

        header .nav-links {
            display: flex;
            list-style: none;
            gap: 20px;
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 0.9rem;
        }

        header .nav-links li { cursor: pointer; }
        header .nav-links li span { font-size: 0.7rem; margin-right: 5px; }

        header .nav-left {
            display: flex;
            align-items: center;
            gap: 15px;
            color: var(--dark-blue);
        }
            /* header simulation */
        header .site-header {
          background: #ffffff;
          box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
          position: sticky;
          top: 0;
          z-index: 1000;
          border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        header .nav-container {
          max-width: 1400px;
          margin: 0 auto;
          padding: 0 32px;
          display: flex;
          align-items: center;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 16px;
        }

        /* logo area (just for demo) */
        header .logo-area {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 12px 0;
        }

        header .logo-icon {
          width: 40px;
          height: 40px;
          background: #0a3b5c;
          border-radius: 12px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-weight: bold;
          font-size: 20px;
        }

        header .logo-text {
          font-weight: 700;
          font-size: 1.35rem;
          letter-spacing: -0.3px;
          background: linear-gradient(135deg, #0a3b5c, #1b6b87);
          -webkit-background-clip: text;
          background-clip: text;
          color: transparent;
        }

        /* ========= MAIN MENU STYLES (mega menu / dropdown) ========= */
        header .middle_menu {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          gap: 8px;
          list-style: none;
          margin: 0;
          padding: 0;
        }

        /* top level items */
        header .middle_menu > li {
          position: relative;
          list-style: none;
        }

        header .middle_menu > li > a {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 10px 16px;
          font-weight: 550;
          font-size: 0.95rem;
          color: #1a2c3e;
          text-decoration: none;
          border-radius: 40px;
          transition: all 0.25s ease;
          background: transparent;
        }

        header .middle_menu > li > a:hover {
          background: #f0f4f9;
          color: #0f5c7a;
        }

        /* dropdown arrow icon */
        header .menu-item__dropdown_icon {
          width: 10px;
          height: 10px;
          transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
          fill: currentColor;
        }

        header .middle_menu > li.menu-item-has-children.open > a .menu-item__dropdown_icon {
          transform: rotate(180deg);
        }

        /* sub-menu panel (mega style) */
        header .sub-menu {
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          min-width: 280px;
          background: #ffffff;
          border-radius: 24px;
          box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.05);
          padding: 12px 0;
          opacity: 0;
          visibility: hidden;
          transform: translateY(-12px);
          transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
          z-index: 1050;
          list-style: none;
          border: 1px solid rgba(0, 0, 0, 0.05);
          backdrop-filter: blur(0px);
        }

        /* for mega menu we allow larger width */
        .middle_menu > li.mega-sub .sub-menu {
          width: 520px;
          left: 0;
        }

        /* show submenu */
        header .middle_menu > li:hover > .sub-menu,
        header .middle_menu > li.open > .sub-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }

        /* sub-menu items */
        header .sub-menu li {
          list-style: none;
          margin: 0;
          padding: 0;
        }

        header .sub-menu li a {
          display: flex;
          align-items: center;
          justify-content: space-between;
          gap: 12px;
          padding: 12px 20px;
          text-decoration: none;
          color: #1f3b4c;
          font-size: 0.9rem;
          font-weight: 500;
          transition: all 0.2s ease;
          border-left: 3px solid transparent;
        }

        header .sub-menu li a:hover {
          background: #f9fafc;
          border-left-color: #1b8c9e;
          color: #0d4b63;
        }

        /* special styling for menu-item__bottom (contains image + arrow) */
        header .menu-item__bottom {
          display: flex;
          align-items: center;
          gap: 12px;
          margin-left: auto;
        }

        header .menu-item__image {
          display: inline-flex;
          align-items: center;
          justify-content: center;
        }

        header .menu-item__image img {
          max-height: 26px;
          width: auto;
          object-fit: contain;
        }

        header .menu-item__arrow {
          display: flex;
          align-items: center;
          opacity: 0;
          transform: translateX(-6px);
          transition: opacity 0.2s, transform 0.2s;
        }

        header .sub-menu li a:hover .menu-item__arrow {
          opacity: 1;
          transform: translateX(0);
        }

        header .menu-item__arrow svg {
          width: 12px;
          height: 12px;
          fill: none;
          stroke: currentColor;
          stroke-width: 1.5;
          transform: rotate(-90deg);
        }

        /* specific for "View All" style */
        header .sub-menu li:last-child a {
          border-top: 1px solid #edf2f7;
          margin-top: 6px;
          font-weight: 600;
          color: #0f5c7a;
        }

        /* right alignment for large screens? keep consistent */
        /* adjust first submenu larger if needed */
        header .menu-item-has-children:first-child .sub-menu {
          min-width: 320px;
        }

        /* Mobile responsive */
        @media (max-width: 992px) {
          header .nav-container {
            flex-direction: column;
            align-items: stretch;
            padding: 0 20px;
          }

          header .middle_menu {
            flex-direction: column;
            width: 100%;
            gap: 6px;
            padding: 16px 0;
          }

          header .middle_menu > li {
            width: 100%;
          }

          header .middle_menu > li > a {
            justify-content: space-between;
            background: #ffffff;
            border-radius: 60px;
            border: 1px solid #eef2f8;
            padding: 12px 18px;
          }

          header .sub-menu {
            position: static;
            box-shadow: none;
            opacity: 1;
            visibility: visible;
            transform: none;
            display: none;
            margin-top: 8px;
            margin-left: 16px;
            border-radius: 20px;
            background: #f9fbfe;
            border: 1px solid #e6edf4;
            width: calc(100% - 16px);
          }

          header .middle_menu > li.open > .sub-menu {
            display: block;
          }

          header .middle_menu > li:hover > .sub-menu {
            display: none;
          }

          header .middle_menu > li.open > .sub-menu {
            display: block;
          }

          header .middle_menu > li > a .menu-item__dropdown_icon {
            transform: rotate(0deg);
          }

          header .middle_menu > li.open > a .menu-item__dropdown_icon {
            transform: rotate(180deg);
          }

          header .middle_menu > li.mega-sub .sub-menu {
            width: 100%;
          }
        }

        /* hover only on desktop */
        @media (min-width: 993px) {
          header .middle_menu > li:hover .sub-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
          }
        }

        .icon-circle {
            width: 35px;
            height: 35px;
            background: var(--dark-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }

        .lang-switch {
            font-weight: bold;
            font-size: 0.8rem;
            cursor: pointer;
        }

        /* --- Hero Section --- */
        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            background: no-repeat center center/cover;
            display: flex;
            align-items: center;
        }

        .hero-container {
            display: flex;
            width: 100%;
            max-width: 1320px;

            justify-content: space-between;
            align-items: center;
            margin: 60px auto;
        }

        /* --- Right Side Content --- */
        .hero-content {
            flex: 1;
            max-width: 600px;
            text-align: right;
        }

        .shrm-badge {
            background: rgba(255,255,255,0.15);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 5px 15px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-size: 0.8rem;
            margin-bottom: 20px;
            backdrop-filter: blur(5px);
        }

        .shrm-logo {
            background: white;
            color: var(--dark-blue);
            padding: 2px 5px;
            font-weight: bold;
            border-radius: 3px;
            font-size: 0.6rem;
        }

        .hero-subtitle {
            font-size: 1rem;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero-desc {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.8;
            line-height: 1.6;
        }

        .info-pills {
            display: flex;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .pill {
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--glass-border);
            padding: 8px 15px;
            border-radius: 50px;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            gap: 8px;
            backdrop-filter: blur(10px);
        }

        .cta-group {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .btn-register {
            background-color: var(--primary-blue);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 15px;
            transition: transform 0.2s;
        }
        .cta-note {
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* --- Left Side Floating Card --- */
        .date-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 40px;
            width: 320px;
            text-align: right;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .card-label {
            font-size: 0.9rem;
            margin-bottom: 15px;
            opacity: 0.8;
        }

        .big-date {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 5px;
        }

        .month-year {
            font-size: 1.5rem;
            margin-bottom: 30px;
            border-bottom: 1px solid var(--glass-border);
            padding-bottom: 20px;
        }

        .card-details {
            list-style: none;
        }

        .card-details li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }

        .icon-small {
            opacity: 0.7;
            width: 18px;
            text-align: center;
        }

        /* Mobile Adjustments */
        @media (max-width: 992px) {
            .hero-container { flex-direction: column-reverse; text-align: center; gap: 40px; }
            .hero-content { text-align: center; }
            .info-pills { justify-content: center; }
            .cta-group { flex-direction: column; }
            .date-card { width: 100%; max-width: 400px; }
            .hero { height: auto; padding: 150px 5% 50px; }
            header { padding: 10px 20px; }
            .nav-links { display: none; }
        }

        /* --- Info Bar Section --- */
        .info-bar {
            border-top: 1px solid #E2E7ED;
            border-bottom: 1px solid #E2E7ED;
            margin-bottom: 50px;
        }
        .info-bar-container {
            max-width: 1320px;
            margin: 0 auto;
            color: #2E3948;
        }

        .info-bar-info-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            text-align: center;
        }

        .info-bar-info-item {
            text-align: right;
            border-left: 1px solid #E2E7ED;
            padding: 20px;
        }

        .info-bar-info-item:last-child {
            border-left: none;
        }

        .info-bar-info-label {
            font-size: 0.85rem;
            color: var(--muted-text);
            margin-bottom: 8px;
            display: block;
        }

        .info-bar-info-value {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--dark-text);
        }

        /* --- Main Content --- */
        .info-bar-overview-section {
            text-align: right;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .info-bar-overview-label {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: block;
        }

        .info-bar-main-heading {
            font-size: 2.4rem;
            font-weight: 800;
            line-height: 1.3;
            margin-bottom: 30px;
        }

        .info-bar-sub-heading {
            font-size: 1.3rem;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .info-bar-description {
            font-size: 1rem;
            color: var(--muted-text);
            line-height: 1.8;
        }

        /* --- Program Cards --- */
        .info-bar-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin:50px auto 100px;
            max-width: 900px;

        }

        .info-bar-card {
            border: 1px solid #E2E7ED;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: right;
        }

        .info-bar-card-header {
            color: var(--primary-blue);
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 15px;
            display: block;
            direction: ltr;

        }

        .info-bar-card-title {
            font-size: 1.25rem;
            font-weight: 800;
            line-height: 1.4;
            text-align: right;
        }

        /* --- Mobile Responsive --- */
        @media (max-width: 992px) {
            .info-bar-info-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }
            .info-bar-info-item { border-left: none; }
            .info-bar-cards-grid { grid-template-columns: 1fr; }
            .info-bar-main-heading { font-size: 1.8rem; }
        }

        /* Info Card Section */
        .info-card-section-container {
            display: flex;
            gap: 25px;
            max-width: 1340px;
            width: 100%;
            margin: 0 auto;
        }

        .info-card-info-card {
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 15px;
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start; /* Standard RTL start is right */
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s ease;
        }

        .info-card-logo-wrapper {
            width: 100%;
            display: flex;
            justify-content: flex-start; /* Top right in RTL */
            margin-bottom: 30px;
            height: 60px;
        }

        .info-card-logo-wrapper img {
            max-height: 100%;
            object-fit: contain;
        }

        .info-card-label {
            color: #0088cc;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .info-card-title {
            color: #2d3436;
            font-size: 22px;
            font-weight: 700;
            margin: 0 0 15px 0;
            line-height: 1.4;
        }

        .info-card-description {
            color: #636e72;
            font-size: 15px;
            line-height: 1.8;
            margin: 0;
            text-align: justify;
            text-align-last: right;
        }

        /* Responsive Design for Info Cards */
        @media (max-width: 850px) {
            .info-card-section-container {
                flex-direction: column;
            }
        }

        /* Benefits Grid Section */
        :root {
            --primary-blue: #0088cc;
            --dark-text: #2d3436;
            --light-text: #636e72;
            --border-color: #eef1f4;
            --bg-color: #fcfcfc;
        }

        .header-section {
            width: 100%;
            max-width: 1340px;
            text-align: right;
            margin: 40px auto;
        }

        .header-section span {
            color: var(--primary-blue);
            font-weight: 700;
            font-size: 14px;
            display: block;
            margin-bottom: 8px;
        }

        .header-section h1 {
            color: var(--dark-text);
            font-size: 32px;
            font-weight: 700;
            margin: 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            width: 100%;
            max-width: 1340px;
            background-color: #fff;
            border: 1.5px solid var(--border-color);
            border-radius: 15px;
            margin:0 auto;
            overflow: hidden; /* Clips children to rounded corners */
        }

        .benefit-item {
            padding: 40px 30px;
            text-align: right;
            border: 0.5px solid var(--border-color);
            display: start;
            flex-direction: column;
            align-items: center;
            transition: background-color 0.3s ease;
        }

        .benefit-item:hover {
            background-color: #f9fbfd;
        }

        .icon-container {
            color: var(--primary-blue);
            margin-bottom: 20px;
        }

        .benefit-item h3 {
            font-size: 18px;
            color: var(--dark-text);
            margin: 0 0 12px 0;
            font-weight: 700;
        }

        .benefit-item p {
            font-size: 14px;
            color: var(--light-text);
            line-height: 1.6;
            margin: 0;
            max-width: 250px;
        }

        /* Responsive adjustments for benefits grid */
        @media (max-width: 992px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .header-section h1 {
                font-size: 24px;
            }
        }

        /* Programs Section Styles */
        .program-container {
            max-width: 1340px;
            padding: 100px 0;
            margin: 0 auto;
            display: flex;
            gap: 40px;
        }

        /* شريط الإحصائيات الجانبي */
        .sidebar-stats {
            display: flex;
            justify-content: space-between;
            gap: 50px;
            padding: 20px;
            border-left: 1px solid #eee;
        }
        .stat-item {
            position: relative;
            flex: 1;
            text-align: center;
            display: flex;
            align-items: center;
            flex-direction: column;
        }

        .stat-item:first-child {
            text-align: right;
            align-items: start;
        }

        .stat-item:last-child {
            text-align: left;
            align-items: end;
        }

        .stat-item::after{
            position: absolute;
            top: 5px;
            left: 20px;
            height: 36px;
            width: 1px;
            content: "";
            background: #E2E7ED;
        }
        .stat-item:last-child::after{
            content: none;
        }
        .stat-item i {
            font-size: 26px;
            color: #187FD3;
            margin-bottom: 10px;
            display: block;
        }

        .stat-number {
            font-weight: bold;
            font-size: 22px;
            color: var(--text-muted);
            direction: ltr;
            text-align: right;
        }

        .stat-label {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* المحتوى الرئيسي */
        .main-content {
            flex-grow: 1;
            color: ;
        }

        .shrm-logo {
            text-align: left;
            margin-bottom: 10px;
        }

        .page-header {
            text-align: right;
            margin-bottom: 40px;
        }
        .page-header span{
            color: #187FD3;
            font-size: 11px;
            font-weight: 700;
            line-height: 19px;
        }
        .page-header h1 {
            font-size: 32px;
            color: var(--primary-dark);
            margin-bottom: 15px;
        }

        .page-header p {
            color: var(--text-muted);
            font-size: 15px;
            max-width: 900px;
            line-height: 1.8;
        }

        /* شبكة البطاقات */
        .program-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 25px;
        }

        .program-cards-grid .card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            padding: 0;
            flex-direction: column;
            transition: transform 0.3s ease;
        }

        .program-cards-grid .card:hover {
            transform: translateY(-5px);
        }

        .program-cards-grid .card-header {
            background: linear-gradient(120deg, #003A55 0%, #1A3D68 100%);
            color: #fff;
            padding: 30px 25px;
            position: relative;
            min-height: 290px;
        }
        .program-cards-grid .card-header .number{
            font-size: 48px;
            color: rgba(255, 255, 255, 0.14);
            margin-top: -30px;
        }
        .program-cards-grid .badge {
            position: absolute;
            top: 30px;
            right: 25px;
            background: rgba(255,255,255,0.15);
            padding: 4px 15px;
            border-radius: 20px;
            font-size: 12px;
        }

        .program-cards-grid .card-header .content{
            margin-top: 50px;
        }
        .program-cards-grid .card-header h2 {
            margin: 15px 0 0 0;
            font-size: 20px;
            line-height: 1.5;
            font-weight: 700;
        }

        .program-cards-grid .card-header p {
            font-size: 13px;
            opacity: 0.9;
            margin-top: 15px;
            line-height: 1.6;
        }

        .program-cards-grid .card-body {
            padding: 25px;
            flex-grow: 1;
        }

        .program-cards-grid .section-title {
            color: #187FD3;
            font-weight: bold;
            font-size: 16px;
            margin-bottom: 15px;
            display: block;
        }

        .program-cards-grid .card-body ul {
            list-style: none;
            padding: 0;
            margin: 0 0 25px 0;
        }

        .program-cards-grid .card-body li {
            position: relative;
            font-size: 14px;
            margin-bottom: 10px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .program-cards-grid .card-body li::before {
            content: "—";
            position: absolute;
            left: 0;
            color: #187FD3;
            font-weight: bold;
        }

        /* قائمة مخطط البرنامج بأرقام */
        .program-cards-grid .outline-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .program-cards-grid .outline-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 10px;
            padding-right: 40px;
        }

        .program-cards-grid .outline-item::before{
            position: absolute;
            content: "";
            top: -12px;
            right: 1%;
            width: 98%;
            height: 1px;
            background: #E2E7ED;

        }
        .program-cards-grid .outline-item svg{
            width: 14px;
            height: 14px;
            color: #999999;
        }
        .program-cards-grid .outline-num {
            position: absolute;
            top: 50%;
            right: 0;
            color: #999999;
            min-width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            font-weight: bold;
            transform: translateY(-50%);
        }

        .program-cards-grid .card-footer {
            padding: 25px;
            border-top: 1px solid #f0f0f0;
            background-color: #fff;
        }

        .program-cards-grid .cert-info {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--text-muted);
            background: #F6F9FC;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #E2E7ED;
        }

        .program-cards-grid .cert-info i {
            color: #187FD3;
            font-size: 18px;
        }

        .program-cards-grid .btn-register {
            display: block;
            width: 100%;
            padding: 14px;
            background: linear-gradient(180deg, #187FD3 0%, #1569B8 100%);
            color: #fff;
            text-align: center;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 15px;
            transition: background-color 0.3s ease;
        }

        .program-cards-grid .btn-register:hover {
            background-color: #0077b3;
        }

        /* التجاوب مع الشاشات الصغيرة */
        @media (max-width: 992px) {
            .program-container {
                flex-direction: column-reverse;
            }
            .sidebar-stats {
                flex-direction: row;
                justify-content: space-around;
                border-left: none;
                border-top: 1px solid #eee;
            }
        }

        /* Stats Bar and Main Section Styles */
        /* شريط الإحصائيات العلوي */
        .stats-bar {
            width: 1340px;
            margin: 50px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
        }


        /* القسم الرئيسي */
        .main-section {
            background-color: #003A55;
            padding: 80px 0;
        }
        .main-section .container{
            width: 1340px;
            margin:0 auto;
            display: flex;
            justify-content: space-between;
            gap: 60px;
            color: #fff;
            flex-wrap: wrap;
        }
        /* عمود النص والمعلومات (يمين) */
        .info-column {
            flex: 1;
        }

        .info-column h2 {
            font-size: 36px;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .info-column p.description {
            font-size: 16px;
            color: #b0c4de;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .details-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
        }

        .detail-line {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #d1d9e6;
        }

        .group-text {
            font-size: 13px;
            color: #9ab3d5;
            border-top: 1px solid #FFFFFF1A;
            padding-top: 15px;
        }

        /* عمود النموذج */
        .form-column {
            flex: 1;
        }

        .form-card {
            background: #fff;
            color: #333;
            border-radius: 20px;
            padding: 40px 40px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .form-card h2 {
            margin-top: 0;
            font-size: 22px;
            margin-bottom: 30px;
        }
        .hidden-fields-container{
            display: none!important;
        }
        /* إزالة الـ p الافتراضى من CF7 */
        .wpcf7 p {
            margin: 0;
        }

        /* الصفوف */
        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-card label {
            font-size: 12px;
            font-weight: 700;
            display: block;
            line-height: 20px;
            margin-bottom: 10px;
        }

        /* الحقول */
        .form-card input[type="text"],
        .form-card input[type="email"],
        .form-card input[type="tel"],
        .form-card textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            font-family: inherit;
            background-color: #fafafa;
            outline: none;
            box-sizing: border-box;
            direction: rtl;
        }

        textarea {
            resize: vertical;
        }

        /* خيارات البرامج */
        .program-options {
            margin: 20px 0;
        }

        .program-options .wpcf7-form-control-wrap {
            display: block;
        }

        .program-options .wpcf7-list-item {
            display: block;
            margin: 0 0 10px;
        }

        .program-options .wpcf7-list-item label {
            border: 1px solid var(--border-color);
            border-radius: 10px;
            padding: 12px 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .program-options .wpcf7-list-item label:hover {
            border-color: #187FD3;
        }

        .program-options input[type="radio"] {
            width: 18px;
            height: 18px;
            margin: 0;
        }

        /* Stepper */
        .stepper {
            display: flex;
            align-items: center;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            width: fit-content;
            overflow: hidden;
        }

        .stepper button {
            background: #fff;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 18px;
        }

        .stepper input {
            width: 50px !important;
            text-align: center;
            border: none !important;
            border-left: 1px solid var(--border-color) !important;
            border-right: 1px solid var(--border-color) !important;
            border-radius: 0 !important;
            background: #fff;
            font-weight: bold;
            padding: 12px 5px;
        }

        /* زر الإرسال */
        .submit-btn,
        .wpcf7-submit {
            background-color: #187FD3;
            color: #fff;
            border: none;
            border-radius: 50px;
            padding: 15px;
            width: 100%;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
        }

        .submit-btn:hover,
        .wpcf7-submit:hover {
            opacity: .9;
        }

        /* رسالة الموافقة */
        .disclaimer {
            font-size: 12px;
            color: var(--text-grey);
            text-align: center;
            margin-top: 15px;
        }

        /* رسائل Contact Form 7 */
        .wpcf7-response-output {
            margin: 20px 0 0 !important;
            border-radius: 10px;
            padding: 12px !important;
            font-size: 14px;
        }

        /* رسائل الخطأ */
        .wpcf7-not-valid-tip {
            font-size: 12px;
            margin-top: 5px;
        }


        :root {
            --bg-color: #003A55; /* اللون الكحلي المطابق للصورة */
            --line-color: rgba(255, 255, 255, 0.15); /* لون الخطوط الفاصلة */
            --text-white: #ffffff;
            --text-dim: #a0b1b9;
        }
        footer{
            background-color: var(--bg-color);
            width: 100%;
        }
        .footer-wrapper {
            display: flex;
            width: 1340px;
            margin: 0 auto;
            color: var(--text-white);
            border-bottom: 1px solid #FFFFFF3D;
        }
        .footer-wrapper.footer-bottom{
            border-bottom: none;
        }
        .footer-wrapper .section {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 60px 80px;
        }

        /* الخط الفاصل الرأسي في المنتصف */
        .footer-wrapper .left-pane {
            border-left: 1px solid var(--line-color);
            flex:1;
            padding-right: 0;
        }

        /* القائمة الرئيسية (يسار) */
        .footer-wrapper .main-menu {
            display: flex;
            flex-direction: column;
        }
        .footer-wrapper li{
            list-style-type: none;
        }
        .footer-wrapper .main-menu a {
            font-size: 32px;
            color: white;
            text-decoration: none;
            font-weight: 400;
            position: relative;
        }

        .footer-wrapper .main-menu a span {
            font-size: 18px;
            margin-left: 5px;
            opacity: 0.6;
        }
        .footer-wrapper .main-menu a::after{
            transform: rotate(-90deg);
            position: absolute;
            content: "";
            left: -22px;
            top: 26px;
            background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1vcGFjaXR5PSIuMzIiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEgMTggMTggMW0wIDBIMW0xNyAwdjE3Ii8+PC9zdmc+);
            background-repeat: no-repeat;
            background-size: contain;
            display: block;
            flex-shrink: 0;
            width: 14px;
            height: 14px;
        }
        /* الفوتر الأيسر */
        .footer-wrapper .footer-left {
            margin-top: auto;
        }

        .footer-wrapper .social-contact-grid {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 40px;
        }

        .footer-wrapper .socials a, .footer-wrapper .contact-num a {
            position: relative;
            color: white;
            text-decoration: none;
            font-size: 13px;
            margin-bottom: 5px;
            opacity: 0.9;
            display: inline-flex;
            align-items: center;
        }
        .footer-wrapper .socials a::after{
            transform: rotate(-90deg);
            position: absolute;
            content: "";
            left: -18px;
            top: 8px;
            background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1vcGFjaXR5PSIuMzIiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEgMTggMTggMW0wIDBIMW0xNyAwdjE3Ii8+PC9zdmc+);
            background-repeat: no-repeat;
            background-size: contain;
            display: block;
            flex-shrink: 0;
            width: 10px;
            height: 10px;
        }
        .footer-wrapper .contact-num {
            text-align: right;
        }

        .footer-wrapper .contact-num p {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .footer-wrapper .policy-links {
            display: flex;
            gap: 25px;
            border-top: 1px solid var(--line-color);
            padding-top: 20px;
        }
        .footer-wrapper .policy-links ul{
            display: flex;
            align-items: flex-start;
            gap: 40px;
        }
        .footer-wrapper .policy-links a {
            position: relative;
            font-size: 12px;
            color: white;
            text-decoration: none;
            opacity: 0.8;
            display: flex;
            align-items: center;
        }
        .footer-wrapper .policy-links a::after{
            transform: rotate(-90deg);
            position: absolute;
            content: "";
            left: -22px;
            top: 7px;
            background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1vcGFjaXR5PSIuMzIiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEgMTggMTggMW0wIDBIMW0xNyAwdjE3Ii8+PC9zdmc+);
            background-repeat: no-repeat;
            background-size: contain;
            display: block;
            flex-shrink: 0;
            width: 12px;
            height: 12px;
        }
        /* الجزء الأيمن (الخدمات) */
        .footer-wrapper .right-pane {
            justify-content: flex-start;
            flex:2;
            padding-right: 0;
            padding-left: 0;
            padding-bottom: 0;
        }

        .footer-wrapper .label {
            font-size: 16px;
            padding-right: 50px;
            color: #fff;
            display: block;
            margin-bottom: 40px;
        }

        .footer-wrapper .services-list li {
            position: relative;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            gap: 10px;
            padding: 18px 0;
            color: white;
            border-top: 1px solid var(--line-color);
            font-size: 18px;
            padding-right: 50px;
        }
        .footer-wrapper .services-list a{
            position: relative;
            color: white;
            text-decoration: none;
        }

        .footer-wrapper .services-list a::after{
            transform: rotate(-90deg);
            position: absolute;
            content: "";
            left: -22px;
            top: 11px;
            background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOSIgaGVpZ2h0PSIxOSIgZmlsbD0ibm9uZSI+PHBhdGggc3Ryb2tlPSIjZmZmIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS1vcGFjaXR5PSIuMzIiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEgMTggMTggMW0wIDBIMW0xNyAwdjE3Ii8+PC9zdmc+);
            background-repeat: no-repeat;
            background-size: contain;
            display: block;
            flex-shrink: 0;
            width: 14px;
            height: 14px;
        }
        /* الفوتر الأيمن */
        .footer-wrapper .footer-right {
            margin-top: auto;
            text-align: right;
        }

        .footer-wrapper .logo-area {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .footer-wrapper .logo-text {
            font-size: 11px;
            line-height: 1.5;
            text-align: right;
            color: var(--text-white);
        }

        .footer-wrapper .reg-info {
            font-size: 11px;
            color: var(--text-dim);
            line-height: 1.6;
            text-align: left;
        }
        .footer-wrapper .burgermenu-copyright{
            display: flex;
            align-items: center;
            justify-content: flex-end;
        }
        .footer-wrapper .burgermenu-copyright{
            text-align: left;
        }
        .footer-wrapper .burgermenu-copyright img{
            height: 75px;
        }
        .footer-wrapper.footer-bottom .footer-right{
            margin-bottom: 50px;
        }
        /* للهواتف */
        @media (max-width: 800px) {
            .footer-wrapper { flex-direction: column; height: auto; }
            .footer-wrapper .left-pane { border-right: none; border-bottom: 1px solid var(--line-color); }
        }

        /* enhance first-level dropdown alignment on desktop */
        @media (min-width: 993px) {
            .middle_menu > li:first-child .sub-menu {
              right: -8px;
              left: unset;
            }
            .middle_menu > li .sub-menu {
              width: 540px;
              left: auto;
              right: auto;
            }
            .menu-item__image img {
              filter: drop-shadow(0 1px 1px rgba(0,0,0,0.05));
            }
            .sub-menu li a span:first-child {
              flex: 1;
              font-weight: 500;
            }
            .sub-menu li a .menu-item__bottom {
              flex-shrink: 0;
            }
        }
        /* elegant transitions */
        .sub-menu {
            border-radius: 20px;
            background: #ffffff;
            backdrop-filter: blur(0px);
        }
        .menu-item__arrow svg use, .menu-item__dropdown_icon use {
            stroke: currentColor;
        }
        a:hover .menu-item__arrow {
            transform: translateX(2px);
        }
          .middle_menu > li > a:active {
            transform: scale(0.98);
          }
          /* mobile menu style enhancement */
          @media (max-width: 992px) {
            .sub-menu {
              box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
              border: 1px solid #e2edf5;
              margin-top: 8px;
              margin-bottom: 8px;
            }
            .middle_menu {
              gap: 4px;
            }
            .middle_menu > li > a {
              background: #ffffff;
              border-radius: 50px;
              border: 1px solid #eaf0f6;
            }
          }
        /* موبايل */
        @media (max-width: 767px) {

            .form-card {
                padding: 25px;
            }

            .form-row {
                flex-direction: column;
                gap: 20px;
            }

        }

        /* التجاوب */
        @media (max-width: 900px) {
            .main-section { flex-direction: column; align-items: center; text-align: center; }
            .stat-item { border-left: none; border-bottom: 1px solid var(--border-color); padding: 15px; width: 100%; }
            .form-row { flex-direction: column; }
            .detail-line { justify-content: center; }
        }
        /* ============================================
   الموبايل مينو - CSS
   ============================================ */
    @media (max-width: 992px) {
    
        header.header--white {
            position: relative;
            background: #ffffff;
            padding: 10px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        header .header-wrraper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 0 20px;
            margin: 0 auto;
            position: relative;
        }
        
        /* زر الهامبرغر */
        header .mobile-menu-toggle {
            display: flex !important;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            margin: 0;
            z-index: 1001;
            flex-shrink: 0;
        }
        
        header .hamburger-icon {
            width: 26px;
            height: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        header .hamburger-icon span {
            display: block;
            width: 100%;
            height: 2.5px;
            background-color: #00334e;
            border-radius: 3px;
            transition: all 0.3s ease-in-out;
        }
        
        header .mobile-menu-toggle.open .hamburger-icon span:nth-child(1) {
            transform: translateY(8.5px) rotate(45deg);
        }
        
        header .mobile-menu-toggle.open .hamburger-icon span:nth-child(2) {
            opacity: 0;
        }
        
        header .mobile-menu-toggle.open .hamburger-icon span:nth-child(3) {
            transform: translateY(-8.5px) rotate(-45deg);
        }
        
        /* القائمة الرئيسية */
        header .header-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #ffffff;
            width: 100%;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            z-index: 1000;
        }
        
        header .header-menu.open {
            max-height: 500px;
            overflow-y: auto;
        }
        
        header .middle_menu {
            display: flex;
            flex-direction: column;
            list-style: none;
            margin: 0;
            padding: 15px 20px;
            gap: 8px;
        }
        
        header .middle_menu > li {
            width: 100%;
            list-style: none;
        }
        
        header .middle_menu > li > a {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 18px;
            background: #ffffff;
            border: 1px solid #eef2f8;
            border-radius: 50px;
            text-decoration: none;
            color: #1a2c3e;
            font-weight: 550;
            font-size: 0.95rem;
        }
        
        /* سهم القائمة الفرعية */
        header .menu-item__dropdown_icon {
            width: 10px;
            height: 10px;
            transition: transform 0.3s ease;
        }
        
        header .middle_menu > li.open > a .menu-item__dropdown_icon {
            transform: rotate(180deg);
        }
        
        /* القوائم الفرعية */
        header .sub-menu {
            display: none;
            list-style: none;
            margin-top: 8px;
            margin-right: 16px;
            padding: 8px 0;
            background: #f9fbfe;
            border: 1px solid #e6edf4;
            border-radius: 20px;
            width: calc(100% - 16px);
        }
        
        header .middle_menu > li.open > .sub-menu {
            display: block;
        }
        
        header .sub-menu li a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #1f3b4c;
            font-size: 0.85rem;
        }
        
        body.menu-open {
            overflow: hidden;
        }
        
        header .nav-right {
            display: flex;
            align-items: center;
            gap: 10px;
            flex: 1;
        }
    }
    @media (max-width: 768px) {
        html,body{
            overflow-x: hidden;
        }
        header .mobile-menu-toggle{
            position: absolute;
            left: 15px;
            width: 26px;
            height: 26px;
        }
        header .header-menu{
            top: calc(100% + 10px);
        }
        header .sub-menu{
            margin-right: 0;
            width: 100%;
        }
        .hero{
            padding: 50px 15px;
        }
        .hero-container{
            flex-direction: column;
        }
        .hero-content{
            text-align: right;
        }
        .hero-title{
            font-size: 32px;
        }
        .info-pills,
        .cta-group,
        .detail-line{
            justify-content: flex-start;
        }
        .cta-group{
            align-items: flex-start;
        }
        .info-bar-info-grid{
            grid-template-columns: repeat(2, 1fr);
        }
        .info-bar-info-item,
        .info-bar-container,
        .info-card-section-container,
        .info-card-info-card,
        .header-section,
        .benefits-grid,
        .benefits,
        .program-cards-grid .card-body{
            padding: 15px;
        }
        .program-cards-grid .card-body li{
            padding-left: 30px;
        }
        .program-container,
        .main-section{
            padding: 50px 15px;
        }
        .program-cards-grid{
            grid-template-columns: repeat(1, 1fr);
        }
        .info-bar-info-value{
            font-size: 15px;
        }
        .stats-bar{
            width: auto;
        }
        .stats-bar .stat-item,
        .main-section .info-column,
        .form-card h2,
        .form-card label{
            text-align: right;
        }
        .stats-bar .stat-item::after {
            top: 30px;
            left: 2px;
            height: 60px;
        }
        .main-section .container{
            width: auto;
        }
        .info-column h2{
            font-size: 32px;
        }
        .footer-wrapper{
            padding: 15px;
            width: auto;
        }
        .footer-wrapper .left-pane{
            padding: 0;
            border-left: none;
        }
        .footer-wrapper .label,
        .footer-wrapper .services-list li{
            padding-right: 0;
        }
        .footer-wrapper .policy-links{
            padding: 20px 0;
        }
        .footer-wrapper .burgermenu-copyright p{
            text-align: center;
        }
    }