:root {
    --beige-light: #F2E2C4;
    --orange-primary: #F26E22;
    --orange-dark: #F25922;
    --gray-soft: #F2F2F2;
    --dark-charcoal: #262626;
}

/* ================= TOPBAR PREMIUM ================= */
.topbar--premium{
    background: linear-gradient(180deg, #0f0f10 0%, #050505 100%);
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.9);
    font-size: 13px;
}

.topbar__row{
    min-height: 44px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
}

.topbar__left,
.topbar__center,
.topbar__right{
    display:flex;
    align-items:center;
    gap:14px;
}

.topbar__item{
    display:flex;
    align-items:center;
    gap:8px;
    color: rgba(255,255,255,.85);
    text-decoration:none;
    transition: .2s ease;
}
.topbar__item i{
    font-size: 13px;
    opacity:.9;
}
.topbar__item:hover{
    color:#fff;
    transform: translateY(-1px);
}

.topbar__dot{
    width:4px; height:4px;
    border-radius:50%;
    background: rgba(255,255,255,.35);
}

.topbar__social{
    width:32px; height:32px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    text-decoration:none;
    color:#fff;
    border: 2px solid var(--orange-primary) !important;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    transition: .2s ease;
}
/* Hover effect */
.topbar__social:hover{
    background: #F25922;
    color: #fff;
    transform: translateY(-1px);
}

.topbar__auth{ display:flex; gap:10px; }

.topbar__btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    text-decoration:none;
    color:var(--beige-light);
    background:var(--orange-primary);
    border:1px solid rgba(255,255,255,.18);
    font-weight:700;
    transition:.2s ease;
}
.topbar__btn i{ color:#111; }
.topbar__btn:hover{
    transform: translateY(-1px);
    filter: brightness(.96);
}

.topbar__btn--ghost{
    background: transparent;
    color: #fff;
    border:2px solid var(--orange-primary);
}
.topbar__btn--ghost:hover{
    background: rgba(255,255,255,.08);
}

/* Mobile tweaks */
@media (max-width: 991.98px){
  .topbar__center{ display:none; } /* نخفي السوشال بالموبايل عشان ما يزحم */
    .topbar__row{ gap:10px; }
    .topbar__btn{ padding:7px 10px; font-size:12px; }
}
@media (max-width: 575.98px){

    /* نفس السطر: يسار معلومات / يمين أزرار */
    .topbar__row{
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 8px 0;
        min-height: auto;
    }

    /* الإيميل والرقم فوق بعض */
    .topbar__left{
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        min-width: 0;
    }

    .topbar__dot{ display: none; }

    .topbar__item{
        font-size: 12px;
        gap: 8px;
        line-height: 1.2;
        white-space: nowrap;
    }

    /* الأزرار جنب بعض يمين */
    .topbar__right{
        justify-content: flex-end;
        flex: 0 0 auto;
    }

    .topbar__auth{
        display: flex;
        gap: 8px;
      flex-wrap: nowrap; /* مهم: ما ينزلوا تحت بعض */
    }

    .topbar__btn{
        padding: 7px 12px;
        font-size: 12px;
        white-space: nowrap;
    }

    /* نخفي السوشال بالموبايل عشان ما تزحم */
    .topbar__center{ display:none !important; }
}

/* 
================================
            header
================================


/* Header background */
.main-header{
    background:#fff;
}

  /* Logo size (THIS fixes huge header issue) */
.main-nav__logo{
    height: 70px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

  /* Nav links base */
.main-nav__link{
    font-size: 18px !important;
    font-weight: 600;
    color: #17142B !important;
    padding: 10px 12px !important;
}

  /* Dropdown items (optional) */
.dropdown-menu .dropdown-item{
    font-size: 15px;
}

/* Spacing between menu items */
.main-nav__list{
    gap: 16px;
}

  /* ---------- Responsive: 997px to 1286px ---------- */
@media (min-width: 997px) and (max-width: 1286px){
    .main-nav__link{ font-size: 14px; padding: 8px 10px !important; }
    .main-nav__list{ gap: 10px; }
    .main-nav__logo{ height: 60px; max-width: 200px; }
}

  /* ---------- Mobile ---------- */
@media (max-width: 991.98px){
    .main-nav__logo{ height: 55px; max-width: 190px; }
    .main-nav__list{ gap: 8px; }
}

  /* Toggler button (hamburger) */
.navbar-toggler{
    background: transparent !important;
    border: 2px solid #F26E22 !important;
    box-shadow: none !important;
    padding: 6px 10px;
    border-radius: 10px;
}

  /* Bars inside toggler */
.navbar-toggler .bar{
    display:block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background:#F26E22;
    transition: all .3s ease-in-out;
}

/* Default size */
.navbar-nav .nav-link,
.navbar-nav .dropdown-toggle,
.navbar-nav .dropdown-item,
.navbar-collapse .text-muted {
    font-size: 16px;
}

/* عندما يكون عرض الشاشة بين 997px و1286px يتم تصغير الخط */
@media (min-width: 997px) and (max-width: 1286px) {
    .navbar-nav .nav-link,
    .navbar-nav .dropdown-toggle,
    .navbar-nav .dropdown-item,
    .navbar-collapse .text-muted {
        font-size: 14px !important;
    }

    .navbar-brand img {
        width: 140px !important; /* تصغير إضافي بسيط للشعار */
    }

    /* تقليل الهوامش بين عناصر القائمة بشكل واضح */
    .navbar-nav {
        gap: 8px !important;
    }

    /* تقليل المسافة بين الروابط في الجزء الأيمن (login/register) */
    .navbar-collapse .d-flex.gap-3,
    .navbar-collapse .d-flex.gap-2 {
        gap: 4px !important;
    }

    /* تقليل padding الخاص بالروابط ليعطي مساحة إضافية */
    .navbar-nav .nav-link {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

.navbar-toggler {
    background-color: transparent !important; 
    border: 2px solid #F26E22 !important; 
    box-shadow: none !important; 
}

/* نثبت شكل الزر الهامبرجر */
.navbar-toggler .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #F26E22; /* لون الخطوط */
    transition: all 0.3s ease-in-out;
}

/* لما يفتح المنيو ما يتغير شكل الزر */
.navbar-toggler.collapsed .bar,
.navbar-toggler .bar {
    background-color: #F26E22; /* خليها ثابتة نفس اللون */
}

/* مخصص لشكل الزر */
.styled-toggler {
    border: 2px solid #F26E22;
    border-radius: 12px;
    padding: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text-orange {
    color: #F26E22;
}


@media (max-width: 991.98px){
    .mobile-social{
      display:flex;
      justify-content:center;
      gap:12px;
    }
  
    .mobile-social .social-btn{
      width:30px;
      height:30px;
      border:2px solid #F26E22;
      border-radius:12px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#F26E22;
      text-decoration:none;
    }
  
    .mobile-social .social-btn i{
        font-size:18px;
    }
}  
.commitment-card {
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.commitment-card i {
    transition: color 0.3s;
}

.commitment-card:hover i {
    color: #d35400;
}


/* Header background */
.main-header {
    background-color: white;
}

/* Logo box */
.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--orange-primary);
}

/* Colored text spans */
.text-beige {
    color: var(--beige-light);
}
.text-golden {
    color: var(--golden-accent);
}

/* Active nav item */
.text-gold {
    color: var(--golden-accent) !important;
}

/* Button style */
.join-btn {
    background-color: var(--orange-dark);
    color: var(--white-color);
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
}

.join-btn:hover {
    opacity: 0.9;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.top-header-actions a:hover {
    opacity: 0.85;
    text-decoration: underline;
}

.styled-toggler {
    border: 2px solid var(--orange-dark);
    background-color: transparent;
    border-radius: 10px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 40px;
}

.styled-toggler .bar {
    display: block;
    width: 26px;
    height: 2px;
    background-color: var(--orange-dark);
}

/* ===== HERO SLIDER ===== */
.hero-slider .hero-slide{
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    overflow: hidden;
  }
  
  /* Background image via CSS variable */
  .hero-slider .hero-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: kenburns 7s ease-in-out forwards;
  }
  
  /* Dark overlay (luxury gradient) */
  .hero-slider .hero-slide::after{
    content:"";
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 30% 30%, rgba(0,0,0,.35), rgba(0,0,0,.75));
  }
  
  /* Content */
  .hero-slider .hero-content{
    position: relative;
    z-index: 2;
    max-width: 900px;
  }
  /* أطول سلايدر */
.hero-slider .hero-slide{
    min-height: 600px;   /* زيدها حسب ما بدك */
    padding: 90px 0;
  }
  
  /* على الموبايل */
  @media (max-width: 991.98px){
    .hero-slider .hero-slide{
      min-height: 420px;
      padding: 70px 0;
    }
  }
  
  /* Typewriter cursor */
  .typewrite::after{
    content: " |";
    opacity: 1;
    animation: blink .8s infinite;
    font-weight: 400;
  }
  
  @keyframes blink{
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
  }
  
  /* Typography */
  .hero-title{
    color:#fff;
    font-size: 44px;
    letter-spacing: .2px;
    animation: floatUp .7s ease both;
  }
  .hero-subtitle{
    color: rgba(255,255,255,.88);
    font-size: 20px;
    animation: floatUp .9s ease both;
  }
  .hero-quote{
    color: rgba(255,255,255,.80);
    font-size: 15px;
    animation: floatUp 1.1s ease both;
  }
  
  /* Controls better look */
  .hero-slider .carousel-control-prev-icon,
  .hero-slider .carousel-control-next-icon{
    filter: drop-shadow(0 6px 16px rgba(0,0,0,.55));
  }
  
  /* Indicators */
  .hero-slider .carousel-indicators [data-bs-target]{
    width: 10px;
    height: 10px;
    border-radius: 999px;
  }
  
  /* Animations */
  @keyframes kenburns{
    from{ transform: scale(1.05); }
    to{ transform: scale(1.15); }
  }
  @keyframes floatUp{
    from{ opacity:0; transform: translateY(12px); }
    to{ opacity:1; transform: translateY(0); }
  }
  
  /* Responsive */
  @media (max-width: 991.98px){
    .hero-title{ font-size: 30px; }
    .hero-subtitle{ font-size: 16px; }
    .hero-slider .hero-slide{ min-height: 340px; padding: 55px 0; }
  }
  
/* لون النص العلوي */
.text-golden {
    color: var(--orange-primary);
}

/* زر الذهبي */
.btn-golden {
    background-color: var(--beige-light);
    color: var(--dark-charcoal);
    border: none;
}

.btn-golden:hover {
    background-color: var(--beige-light);
}

/* فيديو */
.video-wrapper {
    position: relative;
}

.what-sets-nex h2{
    color: var(--orange-dark);
}

.count{
    background-color: var(--orange-primary);
    position: absolute; 
    inset: 0;
}

.custom-form-header {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--orange-primary); /* نفس لون الخط بالصورة */
}




.btn-orange-outline {
    background-color: transparent;
    color: #F26E22;
    border: 2px solid #F26E22;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-weight: 600;
}

.btn-orange-outline:hover {
    background-color: #F26E22;
    color: #fff;
    border-color: #F26E22;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: #F25922;
    transform: translateX(-50%);
}
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
}
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}
.timeline-icon {
    flex-shrink: 0;
}
.timeline-content {
    border-radius: 20px;
}

/* paginition */
.pagination {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.pagination li a, .pagination li span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    border: none;
    background: transparent;
    font-weight: 500;
}

.pagination li.active span {
    background-color: #1f2937; /* dark circle */
    color: #fff;
    font-weight: bold;
}

.pagination li a:hover {
    background-color: #e0e0e0;
}

.pagination .disabled span {
    color: #aaa;
}
.pagination ~ .text-sm.text-gray-700.leading-5 {
    display: none !important;
}

.custom-toggle-btn {
    color: #F26E22;
    border: 2px solid #F26E22;
    background-color: white;
    transition: 0.3s ease-in-out;
}

.custom-toggle-btn:hover {
    background-color: #F26E22;
    border: 2px solid #F26E22;
    color: white;
}


.key-metrics{
    background:#f2f2f2;
  }
  
  .key-metrics .km-title{
    font-weight:700;
    color:#3a3a3a;
    font-size:22px;
    margin:0;
  }
  
  .key-metrics .km-row{
    display:flex;
    gap:0;
    border-left:1px solid #dcdcdc; /* عشان يبين أول فاصل زي الصورة */
  }
  
  .key-metrics .km-item{
    flex:1;
    text-align:center;
    padding:10px 18px 18px;
    border-right:1px solid #dcdcdc; /* ✅ الفواصل العمودية */
  }
  
  .key-metrics .km-value{
    color:var(--orange-primary);
    font-weight:800;
    font-size:54px;
    line-height:1;
    letter-spacing:.5px;
  }
  
  .key-metrics .km-plus{
    font-weight:800;
    font-size:42px;
    vertical-align:baseline;
  }
  
  .key-metrics .km-label{
    margin-top:8px;
    font-size:12.5px;
    color:#7a7a7a;
  }
  
  .key-metrics .km-item--badge{
    position:relative;
  }
  
  .key-metrics .km-badge{
    position:absolute;
    right:14px;
    top:10px;
    width:42px;
    height:42px;
    border-radius:999px;
    border:2px solid var(--orange-primary);
    color:var(--orange-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    background:#f2f2f2;
  }
  
  .key-metrics .km-bottom-line{
    margin-top:18px;
    height:2px;
    background:#dcdcdc;
  }
  
  /* Responsive */
  @media (max-width: 768px){
    .key-metrics .km-row{
      flex-direction:column;
      border-left:0;
    }
    .key-metrics .km-item{
      border-right:0;
      border-left:0;
      border-top:1px solid #dcdcdc;
    }
    .key-metrics .km-item:first-child{
      border-top:0;
    }
    .key-metrics .km-badge{
      right:12px;
      top:12px;
    }
    .key-metrics .km-value{ font-size:44px; }
    .key-metrics .km-plus{ font-size:34px; }
  }
  
  /* ===== Foundational Pillars (match screenshot) ===== */
  .foundational-pillars{
    background:#f1f1f1;
  }
  
  .foundational-pillars .fp-title{
    font-weight:700;
    color:#4a4a4a;
    font-size:20px;
    margin-bottom:26px !important;
  }
  
  .foundational-pillars .pillar-card{
    background:transparent;          /* زي الصورة */
    border:1px solid #d6d6d6;        /* border رمادي */
    border-radius:0;                /* مربعات */
    padding:32px 22px;
    text-align:center;
    max-width:300px;                /* عرض الكرت قريب من الصورة */
    margin:0 auto;                  /* توسيط */
    box-shadow:none;
  }
  
  .foundational-pillars .pillar-icon{
    width:80px;
    height:auto;
    display:block;
    margin:0 auto 14px;
  }
  
  .foundational-pillars .pillar-title{
    font-weight:800;
    letter-spacing:1px;
    font-size:14px;
    color:#333;
    margin-bottom:10px;
    text-transform:uppercase;
  }
  
  .foundational-pillars .pillar-desc{
    font-size:12.5px;
    color:#7a7a7a;
    line-height:1.45;
    max-width:220px;
    margin:0 auto;
    font-style:italic;
    position:relative;
  }

      /* ===== Our Global Divisions ===== */
    .global-divisions{ background:#f2f2f2; }
    
    .global-divisions .gd-title{
      font-weight:700; color:#555; font-size:18px; margin:0;
    }
    .global-divisions .gd-card{ max-width:340px; margin:0 auto; }
    
    .global-divisions .gd-media{
      height:170px;
      border:1px solid #dcdcdc;
      position:relative;
      overflow:hidden;
      background:#2b2b2b;
    }
    
    /* ✅ هاي كانت ناقصتك */
    .global-divisions .gd-img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    
    .global-divisions .gd-overlay{
      position:absolute; left:0; right:0; bottom:0;
      height:58px;
      background:rgba(15,15,15,.65);
      display:flex; align-items:center; justify-content:center;
      padding:0 14px;
    }
    
    .global-divisions .gd-name{
      color:#fff;
      font-weight:600;
      font-size:14px;
      text-align:center;
      line-height:1.2;
    }

.global-divisions .gd-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

.global-divisions .gd-link:focus{
  outline:none;
}

.global-divisions .gd-link:hover .gd-media{
  transform: translateY(-2px);
  transition: .2s ease;
}

.global-divisions .gd-media{
  transition: .2s ease;
}


.sort-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    justify-content:flex-end;
  }
  
  .sort-pill{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid #e8e8e8;
    background:#fff;
    color:#17142B;
    font-weight:600;
    font-size:13px;
    text-decoration:none;
    box-shadow: 0 6px 18px rgba(0,0,0,.06);
    transition: all .2s ease;
  }
  
  .sort-pill:hover{
    transform: translateY(-1px);
    border-color:#F26E22;
    color:#F26E22;
  }
  
  .sort-pill.active{
    background: linear-gradient(135deg, #F26E22 0%, #FFB79B 100%);
    border-color: transparent;
    color:#fff;
  }
  
  .sort-pill.active i{
    color:#fff;
}

.flag-icon{
    width: 35px;
    height: 20px;
    object-fit: cover;
    border-radius: 3px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px; /* لو RTL احكيلي وبعكسها */
    box-shadow: 0 2px 6px rgba(0,0,0,.12);
  }
  

/* 
================================
            Admin
================================

*/

/* ✅ الهيدر */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
}

.header .left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .hamburger {
    font-size: 24px;
    border: none;
    background: none;
    cursor: pointer;
}

.header .right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.logout {
    background: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
}

/* ✅ السايدبار */
#sidebar {
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.sidebar {
    position: fixed;
    top: 70px;
    left: 0;
    width: 240px;
    height: calc(100vh - 70px);
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    padding: 20px;
    transition: transform 0.3s ease;
    z-index: 999;
}

.sidebar .logo {
    text-align: center;
}

.sidebar .logo img {
    max-width: 100px;
    display: block;
    margin: 0 auto 10px;
}

.sidebar nav a {
    display: block;
    padding: 10px;
    color: var(--orange-dark);
    text-decoration: none;
    border-radius: 5px;
}

.sidebar nav a:hover {
    background: #f1f1f1;
}

/* ✅ المحتوى */
.main-content {
    margin-top: 70px;
    margin-left: 240px;
    padding: 30px;
    transition: margin-left 0.3s ease;
}
/*body{*/
/*    font-family: 'Calibri', 'Segoe UI';*/
/*}*/


/* ✅ عند إغلاق السايدبار */
body.sidebar-collapsed .sidebar {
    transform: translateX(-100%);
}

body.sidebar-collapsed .main-content {
    margin-left: 0;
}

/* ✅ موبايل */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }

    body.sidebar-collapsed .sidebar {
        transform: translateX(0);
    }

    .main-content {
        margin-left: 0 !important;
    }
}

.contact-section {
    background: linear-gradient(to right, #F26E22 50%, #fff 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-box {
    background-color: #1a1a1a;
    color: #fff;
    border-radius: 25px;
    padding: 40px 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.contact-box h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact-form input,
.contact-form textarea {
color: #fff !important;
border: 1px solid #444;
border-radius: 8px;
padding: 12px 15px;
font-size: 1rem;
width: 100%;
transition: border-color 0.3s, box-shadow 0.3s;
outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
color: #aaa;
}

.contact-form input:focus,
.contact-form textarea:focus {
background-color: #2b2b2b !important;
color: #fff !important;
border-color: #F26E22;
box-shadow: 0 0 8px rgba(242, 110, 34, 0.3);
}


.btn-orange{
    background:#F26E22;
    border-color:#F26E22;
    color:#fff;
  }
  .btn-orange:hover{ filter: brightness(.95); color:#fff; }

  .icon-circle{
    width:44px;height:44px;border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background: rgba(242,110,34,.12);
    color:#F26E22;
    font-size:18px;
  }

  .form-control{
    border-radius:14px;
    border:1px solid #e9e9ee;
    box-shadow:none !important;
  }
  .form-control:focus{
    border-color:#F26E22;
    box-shadow: 0 0 0 .2rem rgba(242,110,34,.15) !important;
  }

  .info-card{
    background: linear-gradient(135deg, #17142B 0%, #2A2550 100%);
    overflow:hidden;
    position:relative;
  }
  .info-card::before{
    content:"";
    position:absolute;
    top:-80px; right:-80px;
    width:180px; height:180px;
    background: rgba(242,110,34,.18);
    border-radius:50%;
    filter: blur(0px);
  }
  .info-item{
    display:flex;
    gap:14px;
    padding:14px 0;
  }
  .info-ic{
    width:42px;height:42px;border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background: rgba(255,255,255,.08);
    color:#fff;
    flex: 0 0 auto;
  }
  .info-link{
    color:#fff;
    text-decoration:none;
    font-weight:600;
  }
  .info-link:hover{ color:#F26E22; }

  .social-row{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .social-btn{
    width:44px;height:44px;border-radius:14px;
    display:flex;align-items:center;justify-content:center;
    background: rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    transition: all .2s ease;
  }
  .social-btn:hover{
    background: rgba(242,110,34,.22);
    transform: translateY(-1px);
    color:#fff;
  }
  
.btn-orange {
    background-color: #F26E22;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: bold;
}

.btn-orange:hover {
    background-color: #c84f10;
}

.blog-section {
    background-color: #3c3e48; /* الرمادي الغامق */
}

.blog-section i {
    font-size: 1.2rem;
}

.category-btn {
    background-color: #F26E22;
    color: #fff;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.category-btn:hover {
    background-color: #d3581c; /* درجة أدكن */
    color: #fff;
}

/* 
==================================

        pagination Event

==================================

*/

.custom-pagination .page-item {
    margin: 0 4px;
}

.custom-pagination .page-link {
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    padding: 9px 0;
    color: #444;
    background-color: #f5f5f5;
    font-weight: bold;
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    background-color: #F26E22;
    color: white;
}

.custom-pagination .page-item.active .page-link {
    background-color: #F26E22;
    color: white;
    pointer-events: none;
}

.custom-pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: #eee;
    cursor: default;
}