@charset "utf-8";

:root {
  --primary_color: #C62128;
  --secondary_color: #231F20;
  --gray_color: #E9E9E9;
  --white: #ffffff;
  --black: #000000;
  --prograph_light: #AAAAAA;
  --prograph: #363636;
  --bg_light: #F2F2F2;
  --bg_gray: #E9E9E9;
}

/* الأبعاد الافتراضية للشاشات الكبيرة */
:root {
  --h1-size: 2.5rem;
  --h2-size: 2.75rem;
  --h3-size: 2.25rem;
  --h4-size: 2.0rem;
  --h5-size: 1.75rem;
  --h6-size: 1.5rem;
  --body-size: 1.25rem;
  --small-size: 0.875rem;
  --sub-size: 0.75rem;
}

/* تفعيل دعم الشاشات الصغيرة وتحديث المتغيرات تلقائياً */
@media (max-width: 1200px) {
  :root {
    --h1-size: 2.0rem;
    --h2-size: 1.625rem;
    --h3-size: 1.425rem;
    --h4-size: 1.275rem;
    --h5-size: 1.15rem;
    /* باقي المكونات ثابتة تلقائياً */
  }
}



/* Start recall fonts*/
@font-face {
    font-family: 'Somar-Bold';
    src: url('fonts/Somar-Bold.woff2') format('woff2'),
        url('fonts/Somar-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Somar-Medium';
    src: url('fonts/Somar-Medium.woff2') format('woff2'),
        url('fonts/Somar-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Somar-Regular';
    src: url('fonts/Somar-Regular.woff2') format('woff2'),
        url('fonts/Somar-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* End recall fonts*/


::-moz-selection {
  /* Code for Firefox */
  background: var(--primary_color);
  color: var(--white);
  opacity: 10%;
}

::selection {
  background: var(--primary_color);
  color: var(--white);
  opacity: 10%;
}
/*--- .lg-outer This class is most important in light gallary  ---*/
.lg-outer {
  direction: ltr;
}

.ltr {
  direction: ltr;
}
.rtl {
  direction: rtl;
}

.font_bold {
  font-family: "Somar-Bold" !important;
}

.font_regular {
  font-family: "Somar-Regular" !important;
}

.font_medium {
  font-family: "Somar-Medium" !important;
}



.prograph_color {
  color: var(--prograph);
}

.white_color {
  color: var(--white);
}

.black_color {
  color: var(--black);
}

.prograph_light_color {
  color: var(--prograph_light);
}

.primary_color {
  color: var(--primary_color) !important;
}

.secondary_color {
  color: var(--secondary_color) !important;
}
.gray_color {
  color: var(--gray_color) !important;
}

.bg_secondary_color {
  background-color: var(--secondary_color);
}

.bg_primary_color {
  background-color: var(--primary_color);
}

.bg_white {
  background-color: var(--white);
}

.bg_black {
  background-color: var(--black);
}
.bg_light {
  background-color: var(--bg_light);
}
.bg_gray {
  background-color: var(--bg_gray);
}



a,
h6,
p,
span,
div,
li {
  font-family: 'Somar-Regular' !important;
}
h1,
h2,
h3,
h4,
h5{
  font-family: 'Somar-Bold' !important;
}

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

a {
  text-decoration: none !important;
}

a:hover {
  color: var(--scoundary_color);
}

.center {
  display: block !important;
  margin: auto !important;
}

.left {
  float: left !important;
}

.right {
  float: right !important;
}

.justify {
  text-align: justify !important;
}

.sticky {
  position: fixed;
  background-color: var(--white);
  top: 0;
  left: 50%;
  transform: translateX(-50%); /* Centers the navbar */
  padding-top: 5px;
  
  /* Force a maximum width when sticky */
  width: 90%;             /* Adds a nice breathing room on smaller screens */
  max-width: 1200px;      /* Limits the width on large screens */
  border-radius: 0 0 10px 10px; /* Optional: adds nice rounded bottom corners */
  
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
  animation: navbarAnimation 0.5s ease-in-out; 
  z-index: 1030;
}

/* Adjusted animation to respect the centering transform */
@keyframes navbarAnimation {
  from {
      top: -60px;
      transform: translateX(-50%);
      opacity: 0;
  }
  to {
      top: 0; 
      transform: translateX(-50%);
      opacity: 1;
  }
}

/* to change the tooltips color and the background color */
.tooltip-inner {
  color: var(--white);
  font-size: 0.7rem;
}

.bs-tooltip-bottom .arrow::before,
.bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  border-bottom-color: var(--scoundary_color) !important;
}

.form-control:focus, .form-select:focus {
  border: none !important;
  box-shadow: 0 0 0 1px var(--primary_color);
}


.form-control::placeholder ,.form-select {
  color: var(--prograph_light);
}

body[dir="rtl"] [type=email], body[dir="rtl"] [type=number], body[dir="rtl"] [type=tel], body[dir="rtl"] [type=url] {
    direction: rtl;
}

.underline-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.underline-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: var(--secondary_color);
  transition: width 0.3s ease; 
}
body[dir="ltr"] .underline-link::after {
left: 3px;
}
body[dir="rtl"] .underline-link::after {
right: 3px;
}

.underline-link.active::after {

  width: 80%;
}

.underline-link:hover::after {
  width: 80%;
}

body[dir="ltr"] .d-rtl{display: none;}
body[dir="rtl"] .d-ltr{display: none;}

/*--------------------Start page style ---------------------------*/
header {
  position: relative;
  z-index: 100;
}
.border_gray{border-color: #D8D8D8 !important; border-width: 2px !important;}

.site_mode {
    position: relative;
    display: inline-block;
}

.site_mode_checkbox {
    display: none;
}

.site_mode_label {
    width: 58px;
    height: 28px;
    background: #f1f1f1;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    cursor: pointer;
    position: relative;
    transition: 0.3s;
}

/* icons */
.site_mode_icon {
    font-size: 13px;
    z-index: 2;
    display: flex;
    align-items: center;
}

.site_mode_icon:first-child {
    color: #000;
    opacity: 0;
}

.site_mode_icon:last-child {
    color: #444;
}

/* sliding circle */
.site_mode_label::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    right: 3px;
    top: 3px;
    transition: 0.35s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* dark mode active */
.site_mode_checkbox:checked+.site_mode_label {
    background: var(--bg_gray);
}

.site_mode_checkbox:checked+.site_mode_label::before {
    transform: translateX(-30px);
}

/* icon colors in dark mode */
.site_mode_checkbox:checked+.site_mode_label .site_mode_icon:first-child {
    opacity: 1 !important;
}

.site_mode_checkbox:checked+.site_mode_label .site_mode_icon:last-child {
    color: #141B34;
    opacity: 0;
}

.dark_mode {
    background: #0e0e0e;
    color: #fff !important;
}

.social_media_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #D8D8D8;
  border-radius: 50%;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link {
  position: relative;
  color: #000;
}

.navbar-nav .nav-link.active {
  font-family: 'Somar-Bold' !important;
  color: var(--primary_color) !important;
}
.navbar-nav .nav-link:hover {
  color: var(--primary_color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background-color: var(--primary_color);
  transition: 0.3s;
}

.navbar-nav .nav-link.active::after {
  width: 15%;
}
.contact_btn:hover{ background-color: var(--secondary_color); color: var(--white);}
.lang_btn:hover {
  color: var(--primary_color) !important;
}
#main_slide_carousel .carousel-item {position: relative;}
.slide_black_overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.59);
  height: 100%;
  width: 100%;
  inset: 0;
}
#main_slide_carousel .carousel-caption {bottom:19% ; transform: translateY(-19%);}
.fs_xxl {font-size: 4.5rem !important;}
.btn_primary_color,.btn_white_outline_color{min-width: 150px;}
.btn_primary_color{
  background-color: var(--primary_color);
    border: 1px solid var(--primary_color);
  color: var(--white);
}
.btn_primary_color:hover,.btn_white_outline_color:hover{
  background-color: var(--secondary_color);
    border: 1px solid var(--secondary_color);
  color: var(--white);
}
.btn_white_outline_color{
  color: var(--white);
  border: 1px solid var(--white);
}

.statistics_section{margin-top: -40px;}

.glass-effect {
  background: rgba(242, 242, 242, 0.08);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
}
.description_text {
  color: #4F4C4D;
}
.statistics_section .icon{
  width: 64px;
  height: 64px;
  background: linear-gradient(to bottom, #dfdddd, #F4F4F4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.DirectorMessage_section{
  background: linear-gradient(to bottom, #FFFFFF, #f1f0f0);
}
.badge-about {
    background-color: rgba(249, 233, 234, 0.80);
    color: var(--primary_color);
    border: 1px solid #D8D8D8;
}

.section-title {color: #363636;}

.text-body-custom {
    color: #363636;
    font-size: 1.1rem;
}

.btn-learn-more {
    background-color: #E9E9E9;
    color: #231F20;
    transition: background-color 0.3s ease;
    min-width: 220px;
}
.btn-learn-more:hover {
    background-color: var(--primary_color);
    color: var(--white);
}

.profile-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.decoration-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed #e2e2e2;
}

.ring-1 { width: 390px; height: 390px; border-color: #D8D8D8; }
.ring-2 { width: 440px; height: 440px; border-color: #D8D8D8B3; }
.ring-3 { width: 490px; height: 490px; border-color: #F2F2F2; }

.image-wrapper {
    position: relative;
    z-index: 1;
    background-color: #F2F2F2;
    border-radius: 50%;
    padding: 15px;
}

.profile-img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border: 12px solid #bebebe; 
    border-radius: 50%;
    background-color: #f4f4f4; 
}

.info-card {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fbf4f5;
    padding: 20px 25px;
    border-radius: 12px;
    width: 110%;
    min-width: 340px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    z-index: 2;
}

.info-card h5 {
    color: #363636;
    font-size: 1.25rem;
}

.info-card p {
    font-size: 1rem;
    color: #363636;
}

@media (max-width: 991px) {
    .profile-section {
        margin-top: 4rem;
    }
    .ring-3 { display: none; } 
}

.our_work_section{background-color: #0F0D0D; position: relative;}
.our_work_section .header-bg{background-color: #0F0D0D;}
.red_circle {
    position: absolute;
    top: -250px;
    left: -150px;
    width: 700px;
    height: 700px;
background-image: url(../images/redcercal\ bg.svg);
    background-size: cover;

border-radius: 50%;
    z-index: 0;
}
.logo_bg_section {
    position: absolute;
    top: -100px;
    left: -150px;
    width: 300px;
    height: 550px;
background-image: url(../images/our_work_logo_bg.svg);
    background-size: cover;
border-radius: 50%;
    z-index: 1000;
}
.badge_custom {
    background-color: rgba(249, 233, 234, 0.80);
    color: #C62128;
}
.text_secondary {
    color: #AAAAAA;
}
.statistics_section .owl-stage-outer{padding: 0 !important;}

/* work-tiles - stacked cards */
.scroll-cards-section .work-tiles {
    position: relative;
}

.scroll-cards-section .work-tile {
    will-change: transform;
    transition: none !important;
    position: relative;
}
/* 1. توحيد حجم الكروت وإلغاء الـ min-height العشوائي */
.scroll-cards-section .work-tile .card {
    margin-bottom: 0;
    height: 100% !important; /* يجبر الكارت الداخلي على ملء كامل ارتفاع الـ tile */
    min-height: auto !important;
    display: flex !important;
    flex-direction: column !important;
}

/* 2. ضبط الـ row الداخلي ليمتد بكامل الارتفاع */
.scroll-cards-section .work-tile .card > .row {
    height: 100% !important;
    min-height: 450px; /* يمكنك تعديل هذا الرقم (الحد الأدنى لارتفاع الكارت الكلي ليناسب التصميم) */
    align-items: stretch !important; /* يجبر العمود الأيمن والأيسر على التساوي في الطول */
}

/* 3. جعل الصورة تأخذ الطول الكامل للكارت وتتجاوب بشكل صحيح */
.scroll-cards-section .work-tile .card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* يضمن عدم تشويه الصورة واقتصاصها بذكاء */
    display: block;
}

/* 4. تحديث عمود النصوص ليتوسط عمودياً بالكامل */
.scroll-cards-section .work-tile .card .col-md-5 {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important; /* هذا السطر يقوم بتوسيط النص والزر في المنتصف عمودياً */
    height: 100% !important;
}

.scroll-cards-section {
    position: relative;
}
.pin-wrapper {
    position: relative;
}
.pin-wrapper .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: 100%;
}

/* sidebar nav styling */
.scroll-cards-section .custom-tabs .nav-link {
    color: #808080;
    background: transparent;
    font-family: 'Somar-Regular', sans-serif;
    transition: all 0.3s ease;
    position: relative;
}
.scroll-cards-section .custom-tabs .nav-link.active,
.scroll-cards-section .custom-tabs .nav-link:hover {
    color: #FFFFFF;
    background: transparent;
}
.scroll-cards-section .custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #F2F2F2;
}

.bg_light_gray {
    background-color: #FFFFFF;
    min-height: 305px;
}

.btn-light {
    background-color: #e9ecef;
    border: none;
}

.btn-light:hover {
    background-color: #231F20;
    color: var(--white) !important;
}

.map-wrapper {
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

.map-pin {
    position: absolute;
    width: 35px;
    height: 35px;
    background-color: #d12a2a;
    color: white;
    border-radius: 50% 50% 50% 0; 
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    border: 3px solid white;
}

.map-pin i {
    transform: rotate(45deg); 
    font-size: 1.2rem;
}

.map-pin:hover {
    transform: rotate(-45deg) scale(1.2);
    z-index: 10;
}

.popover {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
}
.popover-header {
    background-color: white;
    font-weight: bold;
    border-bottom: 1px solid #eee;
}
.arrow_icon
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    background-color: var(--primary_color);
    border-radius: 50%;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.arrow_icon i {
    font-size: 8px;
}

.header-content {
    background-color: #333333; 
    padding-bottom: 120px !important; 
}
.bg_dark_gray{
  background-color: #333333;
 }
 .border_gray{
  border-color: #5B5B5B !important;
  border-width: 1px !important;
}
.header-content .badge{
  background-color: #F9E9EA2B;
}
.stories-section .actions{margin-top: -20px !important;}
.owl-stage-outer{padding: 50px 0 50px 0;}
.mt-n5 {
    margin-top: -130px !important;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
}

.card-img-top {
    height: 250px;
    object-fit: cover;
}

.border-primary-custom {
    border: 2px solid #e9ecef !important;
}

.link-light {background-color: #D8D8D8; color:#231F20 ; display: flex; align-items: center; justify-content: center;}
.link-light:hover {background-color: var(--primary_color); color:var(--white) ;}
.link_icon {width: 17px; height: 17px; background-color: #C6212866; border-radius: 50%; display: flex; align-items: center; justify-content: center;}
.link-light:hover .link_icon {background-color: #ffffff;}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
}
.owl-theme .owl-dots .owl-dot:hover span  {
    background-color: #dc3545;
}

.owl-theme .owl-dots .owl-dot.active span{
    background-color: #dc3545;
    width: 25px;
    border-radius: 10px;
}

@media (max-width: 768px) {
  .header-content {
    padding-bottom: 40px !important;
}
    .mt-n5 {
        margin-top: -50px !important;
    }
}

.owl-nav {
    margin-top: 0 !important;
}

.owl-nav button.owl-prev, 
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 8px solid var(--white) !important; 
    border-radius: 50% !important; 
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 35px !important;
    transition: all 0.3s ease;
    outline: none !important;
}

.owl-nav button.owl-prev {
    left: -20px;
    background-color: #bdc3c7 !important; 
    color:  #5B5B5B !important;
}


.owl-nav button.owl-next {
    right: -20px; 
    background-color: #f06292 !important; 
    color: white !important;

}

.owl-nav button.owl-prev:hover, 
.owl-nav button.owl-next:hover {
    opacity: 0.8;
    background-color: #333 !important; 
     color: white !important;
}

.owl-nav button span {
    line-height: 1;
    margin-top: -4px;
}
.text-secondary {
    font-family: 'Somar-medium' !important;   color: #231F20 !important;
}
.leaflet-popup-close-button span{font-size: 30px !important;}
.news-icon{
background: linear-gradient(to bottom, #3A3537, #231F20);
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;}

.news-header {
    background-color: #1e1b1b;
}
.calender_icon{background-color: #F9E9EA; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;}

.news-icon {
    background-color: #3d1a1a;
    color: #ff4d4d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.bottom_link{position: absolute; bottom: 20px; width: 96% !important;}

.card {
    background-color: #ffffff;
    transition: transform 0.2s;
}
.main-card{background-color: #F2F2F2;    border:1px solid #D8D8D8 !important;
}
.side-card{background-color: #F2F2F2;    border:1px solid #D8D8D8 !important;
}
.card .btn-light{background-color: #E9E9E9;}
.card .btn-light:hover{background-color: var(--secondary_color);}

.card:hover {
    transform: translateY(-5px);
}

.card-img-top {
    object-fit: cover;
}

.main-card .card-img-top {
    height: 485px;
}

.side-card .card-img-top {
    height: 180px;
}

.pinned-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: white;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-read {
    background-color: #eeeeee;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
    border: none;
}

.btn-read:hover {
    background-color: #e0e0e0;
}

.extra-small {
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .main-card .card-img-top {
        height: 300px;
    }
}

.partner-logo {
    transition: all 0.3s ease-in-out;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partnership-section {
    padding-top: 100px;
    padding-bottom: 100px;
}
.partnership-section{background-color: #F2F2F2;}

.partner-badge {
    background-color: #F9E9EACC;
    color: var(--primary_color);
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #D8D8D8;
}

.text-danger-custom {
    color: var(--primary_color);
}

.description-text {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

.btn-explore-custom {
    background-color: var(--primary_color);
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.2);
}

.btn-explore-custom:hover {
    background-color: var(--prograph);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.3);
}

.footer-section {
  position: relative;
    background-color: #1a1a1a;
}
.footer-section_img {
    background-image: url(../images/fotter_bg.svg);
    background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  
  position: absolute;
inset: 0;  
opacity: 0.3;
z-index: 0;
}
.footer-section .container{position: relative; z-index: 1;}

.info-bar {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.icon-circle {
    width: 45px !important;
    height: 45px !important;
    background-color: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c62828;
    font-size: 1.2rem;
}

.footer-links li {
    margin-bottom: 0px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    text-decoration: none;
    filter: grayscale(100%);
        transition: transform 0.2s;

}
.social-icon:hover {
    filter: grayscale(0%);
        transform: translateY(-5px);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-icon {
    width: 60px;
    height: 60px;
    background: #ccc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #c62828;
}
.newsletter-icon img {
    width: 40px;
    height: 40px;
}
.form-control:focus {
    box-shadow: none;
}
.about-fotter .small{font-size: 1.1rem !important; line-height: 1.6rem !important;}
footer .btn-light:hover{background-color: var(--primary_color);}
.border-secondary{border-color:#5B5B5B; border-width: 2px;}
.footer_color_link{color: #F2F2F2;}
a .footer_color_link:hover{color: var(--primary_color) !important;}

/* -------------------------Start who-are-you page css------------------------------- */
        .hero-section {
            position: relative;
            background-image: url('../images/who-are-you-slide-img.jpg'); 
            background-size: cover;
            background-position: center;
            border-radius: 24px 24px 0px 0px; 
            overflow: hidden;
            min-height: 450px; 
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,1) 100%);
            z-index: 1;
        }

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

        .nav-link-custom {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: color 0.2s ease-in-out;
            white-space: nowrap;
        }

        .nav-link-custom:hover {
            color: #ffffff;
        }

        #about-section {
            background: linear-gradient(to bottom, #83838300 0%, #E9E9E9 100%);
            position: relative;
            overflow: hidden;
            padding: 60px 0;
        }

        .decorative-circle {
    position: absolute;
    top: 20%;
    right: -50px;
    width: 180px;
    height: 70%;
    z-index: -1; /* لجعلها تقع خلف الصورة الرئيسية */
    pointer-events: none;
    
    /* إضافة الصورة داخل الدائرة */
    background: url('../images/aboutbg.svg') no-repeat center/cover;
}

/* تأكد من إضافة position: relative للعنصر الأب (col-lg-5) لكي ينضبط مكان الدائرة */
.about-section .col-lg-5.text-center.text-lg-end {
    position: relative;
}

        .badge-overview {
            background-color: #fdf2f2;
            color: #e05e5e;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 50px;
            display: inline-block;
        }

        .about-text {
            color: #4a4a4a;
            text-align: justify;
        }

        .image-frame {
            background-color: #f5e6e6;
            padding: 16px;
            border-radius: 36px;
            display: inline-block;
            width: 100%;
            max-width: 540px;
        }

        .image-frame img {
            border-radius: 24px;
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
        }

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

        #direction-section {
            background-color: #fcfcfd;
            padding: 60px 0;
        }

        .direction-card {
            background-color: #f4f5f6;
            border: none;
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            transition: transform 0.2s ease-in-out;
        }

        .icon-circle-outer {
            width: 56px;
            height: 56px;
            background-color: #fbeaea; 
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-desc {
            color: #555555;
            line-height: 1.7;
        }

        #objectives-section {
            background-color: #E9E9E94D;
            padding: 60px 0;
        }

        .objective-icon{margin-bottom: 30px;}

.objective-card {
    border: none;
    border-radius: 16px;
    padding: 100px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 190px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.card-neutral {
    background-color: #eaeaea;
    color: #212529;
}

.card-neutral .objective-text {
    font-weight: 500;
    line-height: 1.5;
}

.card-neutral:hover {
    background-color: #c9252c;
    color: #ffffff !important;
    box-shadow: 0 12px 30px rgba(197, 33, 40, 0.35);
    
    transform: translateY(-10px); 
    
    z-index: 3;
}

.card-neutral:hover .objective-icon{
    filter: brightness(0) invert(1) !important;
}

.objective-card {
    border: none;
    border-radius: 16px;
    padding: 30px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 190px;
    
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.objective-card .objective-icon {
    transition: filter 0.3s ease;
}

        .team-section {
            background-color: #ffffff;
            padding: 80px 0;
            position: relative;
        }

        .top-pattern-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 480px;
            background-image: url(../images/fotter_bg.svg);
              background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            z-index: 1;
            pointer-events: none;
        }

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

        .profile-card {
            background: #ffffff;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 16px;
            padding: 20px;
            padding-top: 55px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            text-align: center;
            position: relative;
            margin-top: 45px;
            height: calc(100% - 45px);
        }

        .avatar-container {
            position: absolute;
            top: -45px;
            left: 23%;
            transform: translateX(-50%);
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            background-color: #eaeaea;
        }

        .avatar-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 8px;
        }

        .role-badge {
            background-color: #f1f3f5;
            color: #6c757d;
            font-size: 1rem;
            padding: 4px 12px;
            border-radius: 50px;
            display: inline-block;
            max-width: 100%;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

/* -------------------------End who-are-you page css------------------------------- */

/* -------------------------Start contact-us page css------------------------------- */
        .contact-header-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), 
                        url('../images/Contact\ us\ hero\ img.jpg') center/cover;
            height: 240px;
            display: flex;
            align-items: center;
            padding-left: 2rem;
        }

        .contact-body-wrapper {
            background-color: #FFFFFF;
            padding-bottom: 80px;
            position: relative;
        }


        .floating-contact-card {
            background: #ffffff1A;
            backdrop-filter: blur(5px);
            border: 1px solid #E9E9E9;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
            margin-top: -70px; 
            position: relative;
            z-index: 5;
        }

        .reason-pills input[type="radio"] {
            display: none;
        }

        .reason-pills label {
            display: inline-block;
            padding: 6px 16px;
            background-color: #f1f3f5;
            color: #495057;
            border-radius: 30px;
            cursor: pointer;
            margin-right: 8px;
            margin-bottom: 8px;
            transition: all 0.2s ease-in-out;
        }

        .reason-pills input[type="radio"]:checked + label {
            background-color: #1a1a1a;
            color: #ffffff;
        }

        .form-label-custom {
            font-weight: 600;
            color: #495057;
            margin-bottom: 6px;
        }

        .form-control-custom {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 10px 14px;
        }

        .form-control-custom:focus {
            border-color: #c9252c;
            box-shadow: 0 0 0 0.2rem rgba(201, 37, 44, 0.15);
        }

        .btn-submit-custom {
            background-color: #c9252c;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            padding: 12px;
            font-weight: 500;
            width: 100%;
            transition: background-color 0.2s;
        }

        .btn-submit-custom:hover {
            background-color: #b01e24;
            color: #ffffff;
        }

        .info-icon-box {
            width: 42px;
            height: 42px;
            background-color: #fdf2f2;
            color: #c9252c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
        }

        .social-link-icon {
            width: 34px;
            height: 34px;
            background-color: #fdf2f2;
            color: #c9252c;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            margin-right: 8px;
            transition: background-color 0.2s, color 0.2s;
        }

        .social-link-icon:hover {
            background-color: #c9252c;
        }
        .social-link-icon:hover img{
            filter: brightness(0) invert(1) !important;
        }
/* -------------------------End contact-us page css------------------------------- */

/* -------------------------Start FAQ page css------------------------------- */
        .faq-header-banner {
            background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), 
                        url(../images/FAQ\ hero\ img.svg) center/cover;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .faq-body-wrapper {
            background-color: #fafbfd;
            padding: 60px 0;
        }

        .search-container {
            max-width: 500px;
            margin: 0 auto 20px auto;
            position: relative;
        }

        .search-input-custom,.form-control {
            border: 1px solid #dee2e6;
            border-radius: 30px;
            padding: 12px 20px;
            padding-right: 45px;
            font-size: 1.25rem !important;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
        }
        .search-input-custom::placeholder,.form-control::placeholder {font-size: 1.25rem !important;}
        .search-input-custom:-ms-input-placeholder,.form-control:-ms-input-placeholder {font-size: 1.25rem !important;}
        .search-input-custom::-ms-input-placeholder,.form-control::-ms-input-placeholder {font-size: 1.25rem !important;}
        

        .search-input-custom:focus {
            border-color: #c9252c;
            box-shadow: 0 0 0 0.2rem rgba(201, 37, 44, 0.15);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: #adb5bd;
            font-size: 1.1rem;
        }

        .filter-pills {
            max-width: 600px;
            margin: 0 auto 45px auto;
        }
        .faq-body-wrapper .text-muted{font-size: 1.25rem !important;}
        .filter-pills .btn-pill {
            background-color: #F2F2F2;
            color: #6c757d;
            border: 1px solid #dee2e6;
            border-radius: 30px;
            font-size: 1rem;
            padding: 6px 14px;
            margin: 4px;
            font-weight: 500;
            transition: all 0.2s ease-in-out;
        }

        .filter-pills .btn-pill.active,
        .filter-pills .btn-pill:hover {
            background-color: #fdf2f2;
            color: #c9252c;
            border-color: #f5c2c2;
        }

        .faq-category-card {
            background-color: #f1f3f5;
            border: none;
            border-radius: 14px;
            padding: 24px;
            margin-bottom: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .category-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #212529;
            margin-bottom: 16px;
        }

        .accordion-custom .accordion-item {
            border: none;
            border-radius: 10px !important;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        }

        .accordion-custom .accordion-item:last-child {
            margin-bottom: 0;
        }

        .accordion-custom .accordion-button {
            font-size: 1.3rem;
            font-weight: 500;
            color: #495057;
            padding: 14px 20px;
            background-color: #ffffff;
            box-shadow: none;
        }

        .accordion-custom .accordion-button:not(.collapsed) {
            color: #c9252c;
            background-color: #ffffff;
        }

.accordion-custom .accordion-button::after {
    background-image: none;
    content: ""; 
    
    width: 20px;
    height: 20px;
    
    background-image: url(../images/accordion\ not\ active.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    
    margin-right: 0;
    margin-left: auto;
    display: block;
    
    transition: transform 0.3s ease-in-out, background-image 0.2s ease-in-out; 
    
    transform: rotate(0deg);
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    content: ""; 
    
    background-image: url(../images/accordion\ active.svg);
    
    transform: rotate(180deg);
}

        .accordion-custom .accordion-body {
            color: #6c757d;
            line-height: 1.6;
            padding: 0 20px 16px 20px;
            background-color: #ffffff;
        }
/* -------------------------End FAQ page css------------------------------- */

/* -------------------------End partnership page css------------------------------- */
        .hero-section {
            position: relative;
            background: url(../images/partnership\ hero\ img.jpg) no-repeat center center;
            background-size: content;
            color: white;
            overflow: hidden;
            z-index: 1;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(110deg, 
                rgba(193, 24, 24, 0.95) 0%, 
                rgba(158, 15, 15, 0.95) 45%, 
                rgba(158, 15, 15, 0.2) 65%, 
                rgba(0,0,0,0.1) 100%
            );
            z-index: -1;
        }

        @media (max-width: 991.98px) {
            .hero-section::before {
                background: rgba(158, 15, 15, 0.92);
            }
            .hero-section {
                padding: 50px 0;
            }
        }
        .hero-title {
            font-size: 2.8rem;
            font-weight: 700;
        }

        .btn-custom-light {
            background-color: #f8f9fa;
            color: var(--primary_color);
            font-weight: 600;
            border: 2px solid #f8f9fa;
            border-radius: 8px;
            padding: 10px 30px;
            transition: all 0.3s ease;
        }

        .btn-custom-light:hover {
            background-color: transparent;
            color: white;
            border-color: white;
        }

        .btn-custom-outline {
            background-color: transparent;
            color: white;
            font-weight: 600;
            border: 2px solid white;
            border-radius: 8px;
            padding: 10px 30px;
            transition: all 0.3s ease;
        }

        .btn-custom-outline:hover {
            background-color: white;
            color: var(--primary_color);
        }

        .image-overlay-container {
            position: relative;
            height: 100%;
            min-height: 350px;
        }

        .why-partner-section {
            background-color: #fffcfc;
            padding: 60px 0;
        }

        .section-title {
            font-weight: 700;
            color: #000;
        }

        .feature-card {
            background-color: #F9E9EA;
            border: none;
            border-radius: 16px;
            padding: 40px 20px;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .feature-icon-wrapper {
            width: 60px;
            height: 60px;
            color: white;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15;
        }

        .feature-card h4 {
            font-weight: 700;
            color: #111;
            margin-bottom: 15px;
        }

        .feature-card p {
            color: #555;
            line-height: 1.6;
        }

        .partnership-section {
            background-color: #E9E9E9;
            padding: 60px 0;
        }

        .section-title {
            font-weight: 700;
            color: #111;
        }

        .collab-badge {
            background-color: #fff1f1;
            color: #c91818;
            font-weight: 600;
            padding: 6px 16px;
            border-radius: 50px;
            border: 1px solid rgba(199, 24, 24, 0.15);
            display: inline-block;
        }

        .area-card {
    border: none;
    border-radius: 16px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    
    /* التعديل الجديد هنا لتفعيل نظام flex العمودي */
    display: flex;          
    flex-direction: column; 
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 48px;
    height: 48px;
    background-color: #F9E9EA;
    color: #c91818;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.card-header-layout {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 24px 24px 16px 24px;
}

.card-header-layout h3 {
    font-weight: 600;
    margin: 0;
    color: #2d2d2d;
}

.card-description-box {
    background-color: #F2F2F2;
    border-radius: 8px;
    padding: 16px;
    margin: 0 24px;
    color: #555555;
    line-height: 1.6;
    min-height: 110px; 
}

.card-footer-layout {
    padding: 20px 24px 24px 24px;
    
    /* التعديل الجديد هنا لدفع الفوتر والزر لأسفل الكارد تماماً */
    margin-top: auto; 
}

.btn-program {
    width: 100%;
    display: block;
    text-align: center;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-program-gray {
    background-color: #e9ecef;
    color: #333333;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-program-gray:hover {
    background-color: #212529;
    color: #ffffff;
}

        .how-we-partner-section {
            background-color: #ffffff;
            padding: 60px 0;
        }

        .section-title {
            font-weight: 700;
            color: #111111;
        }

        .partner-card {
            background-color: #E9E9E9;
            border: none;
            border-radius: 16px;
            padding: 30px;
            height: 100%;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .partner-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        }

        .icon-container {
            width: 44px;
            height: 44px;
            background-color: #F9E9EA;
            color: #c91818;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .partner-card h3 {
            font-weight: 600;
            color: #2d2d2d;
            margin: 0;
        }

        .partner-card p {
            color: #666666;
            line-height: 1.6;
            margin: 0;
        }

        .impact-section {
            background-color: #1e1b1b;
            color: #ffffff;
            padding: 60px 0;
        }

        .section-title {
            font-weight: 700;
            color: #ffffff;
        }

        .timeline-section {
            background-color: #ffffff;
            padding: 100px 0;
            overflow: hidden;
        }

        .section-title {
            font-weight: 700;
            color: #111111;
        }


        /* Timeline Main Wrapper */
        .timeline-container {
            position: relative;
            max-width: 900px;
            margin: 60px auto 0 auto;
        }

        /* The Background Central Track Line (Gray) */
        .timeline-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 100%;
            background-color: #e9ecef;
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 1;
        }

        /* The Foreground Dynamic Progress Line (Red) controlled by JS */
        .timeline-progress-line {
            position: absolute;
            left: 50%;
            top: 0;
            width: 4px;
            height: 0%; /* Altered dynamically via scroll script */
            background-color: #c91818;
            transform: translateX(-50%);
            border-radius: 2px;
            z-index: 2;
            transition: height 0.1s linear;
        }

        /* Individual Step Rows */
        .timeline-row {
            position: relative;
            z-index: 3;
            margin-bottom: 60px;
        }
        
        .timeline-row:last-child {
            margin-bottom: 0;
        }

        /* Layout columns text adjustments */
        .timeline-text-side {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .text-right-aligned {
            text-align: right;
            padding-right: 140px;
        }

        .text-left-aligned {
            text-align: left;
            padding-left: 140px;
        }

        .timeline-row h4 {
            font-weight: 600;
            color: #333333;
            margin: 0;
            transition: color 0.3s ease;
        }

        /* Center Column Asset Configurations */
        .timeline-start-side {
            display: flex;
            align-items: center;
            justify-content: start;
            position: relative;
        }
        .timeline-end-side {
            display: flex;
            align-items: center;
            justify-content: end;
            position: relative;
        }

        /* Numeric / Visual Pill Layouts */
        .badge-pill-layout {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .step-number-badge {
            width: 32px;
            height: 32px;
            background-color: #f4f4f4;
            color: #777777;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 700;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        /* Large Beveled Icon Nodes */
        .step-icon-circle {
            width: 60px;
            height: 60px;
            background-color: #f4f4f4;
            color: #999999;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            border: 4px solid #ffffff;
            box-shadow: 0 4px 10px rgba(0,0,0,0.06);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .step-icon-circle img {
            width: 30px !important;
            height: 30px !important;
        }

        /* --- ACTIVE STATES (Triggered by Scroll Javascript class attachments) --- */
        .timeline-row.active h4 {
            color: #111111;
        }

        .timeline-row.active .step-number-badge {
            background-color: #fff1f1;
            color: #c91818;
            border-color: rgba(199, 24, 24, 0.2);
        }

        .timeline-row.active .step-icon-circle {
            background-color: #c91818;
            color: #ffffff;
            box-shadow: 0 0 0 8px #fff1f1, 0 8px 25px rgba(199, 24, 24, 0.25);
            transform: scale(1.05);
        }
        .timeline-row.active .step-icon-circle img {
            filter: brightness(0) invert(1) !important;
        }

        /* Mobile Responsive View Adjustments */
        @media (max-width: 767.98px) {
            .timeline-container::before,
            .timeline-progress-line {
                left: 30px;
                transform: none;
            }
            
            .timeline-row {
                margin-bottom: 40px;
            }

            .timeline-end-side, .timeline-start-side {
                justify-content: flex-start;
                padding-left: 17px;
                margin-bottom: 15px;
                order: 1;
            }

            .timeline-text-side {
                padding-left: 85px !important;
                text-align: left !important;
                order: 2;
            }

            .step-icon-circle {
                width: 60px;
                height: 60px;
            }

            
            .badge-pill-layout {
                flex-direction: row-reverse;
                justify-content: flex-end;
                width: 100%;
            }
        }

        .cta-banner-section {
            /* Generates the exact repeating diagonal stripes pattern seen in your design */
            background-color: #c91818;
            background-image: linear-gradient(
                45deg, 
                rgba(255, 255, 255, 0.04) 25%, 
                transparent 25%, 
                transparent 50%, 
                rgba(255, 255, 255, 0.04) 50%, 
                rgba(255, 255, 255, 0.04) 75%, 
                transparent 75%, 
                transparent
            );
            background-size: 130px 130px;
            color: #ffffff;
            padding: 80px 0;
            position: relative;
        }

        .cta-title {
            font-size: 2.75rem;
            font-weight: 700;
            letter-spacing: -0.5px;
        }

        .cta-description {
            font-size: 1.75rem;
            opacity: 0.9;
            font-weight: 400;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Centered White Button Custom Layout */
        .btn-cta-submit {
            background-color: #ffffff;
            color: #c91818;
            font-size: 1.25rem;
            font-weight: 600;
            padding: 14px 36px;
            border: 2px solid #ffffff;
            border-radius: 8px;
            transition: all 0.25s ease-in-out;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            display: inline-block;
        }

        .btn-cta-submit:hover {
            background-color: transparent;
            color: #ffffff;
            border-color: #ffffff;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
/* -------------------------End partnership page css------------------------------- */

/* -------------------------Start submit_partnership_request page css------------------------------- */
/* Hero Banner Styling */
    .form-hero {
    position: relative;
    padding: 60px 0 60px 0;
    color: #ffffff;
    background-color: #000000; /* Serves as the background base color */
    overflow: hidden;
}

/* This layer handles only the image opacity independently */
.form-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url(../images/submit_partnership_request_hero_img.jpg) no-repeat center center;
    background-size: cover;
    opacity: 0.3; /* Precise 30% image opacity */
    z-index: 1;
}

/* Keeps your text content floating perfectly on top of the image layer */
.form-hero > .container {
    position: relative;
    z-index: 2;
}
        .breadcrumb-custom {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .breadcrumb-custom a {
            color: #ffffff;
            text-decoration: none;
        }
        /* Form Card Container */
        .form-container-card {
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-top: -30px;
            padding: 40px;
            border: 1px solid #f0f0f0;
        }
        /* Form Headings */
        .form-main-title {
            font-weight: 700;
            color: #212529;
            text-align: center;
        }
        .form-subtitle {
            font-size: 1.25rem;
            color: #6c757d;
            text-align: center;
            margin-bottom: 35px;
        }
        .section-divider-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #212529;
            margin-top: 25px;
            margin-bottom: 15px;
        }
        /* Form Elements customization */
        .form-label {
            font-size: 0.85rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 6px;
        }
        .text-danger-custom {
            color: #dc3545;
            margin-left: 2px;
        }
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #ced4da;
            padding: 10px 14px;
            font-size: 0.9rem;
            color: #212529;
        }
        .form-control::placeholder {
            color: #a0a0a0;
            font-size: 0.88rem;
        }
        .form-control:focus, .form-select:focus {
            border-color: #c82333;
            box-shadow: 0 0 0 0.25rem rgba(200, 35, 51, 0.25);
        }
        /* Privacy Banner */
        .privacy-note {
            background-color: #f4f4f4;
            border-radius: 8px;
            padding: 12px 16px;
            font-size: 0.8rem;
            color: #555555;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }
        /* Theme Red Buttons */
        .btn-theme-red {
            background-color: #c82333;
            border-color: #c82333;
            color: #ffffff;
            border-radius: 8px;
            padding: 12px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.2s ease-in-out;
        }
        .btn-theme-red:hover {
            background-color: #bd1c2b;
            border-color: #bd1c2b;
            color: #ffffff;
        }

        /* Success Modal Layout Customization */
        .modal-content-custom {
            border-radius: 16px;
            border: none;
            padding: 35px 25px;
        }
        .success-icon-circle {
            width: 70px;
            height: 70px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin: 0 auto 20px auto;
        }
        .modal-success-title {
            font-weight: 700;
            font-size: 1.25rem;
            color: #212529;
            margin-bottom: 15px;
            line-height: 1.4;
        }
        .modal-success-body {
            font-size: 0.9rem;
            color: #6c757d;
            margin-bottom: 25px;
        }
        .icon_container{background-color: #D9D9D9; width: 32px; height: 32px;}
/* -------------------------End submit_partnership_request page css------------------------------- */
/* -------------------------start digital-library page css------------------------------- */
/* Hero / Header Section */
        .library-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), 
                        url(../images/library-heroBG.jpg) no-repeat center center;
            background-size: cover;
            color: #ffffff;
            padding: 60px 0;
        }
        .library-details-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), 
                        url(../images/library-details-heroBG.jpg) no-repeat center center;
            background-size: cover;
            color: #ffffff;
            padding: 60px 0;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            color: #ffffff;
            content: ">";
        }

        /* Category Grid Section */
        .category-card {
            background-color: #E9E9E94D;
            border: none;
            border-radius: 12px;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            height: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        }

        .category-icon {
            width: 56px;
            height: 56px;
        }

        .card-title {
            font-weight: 700;
            color: #111111;
        }

        .card-text {
            color: #6c757d;
        }

        /* Card Custom Styling */
        .report-card {
            border: 1px solid #F2F2F2;
            border-radius: 16px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .line_gray_color{border-color: #F2F2F2 !important; opacity: 1;}
        /* Colored Backgrounds for Image Containers */
        .img-container {
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 200px;
            overflow: hidden;
        }


        .report-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 4px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }

        .report-card:hover .report-img {
            transform: scale(1.04);
        }

        /* Typography */
        .report-title {
            font-weight: 700;
            color: var(--text-dark);
            line-height: 1.4;
        }

        .report-desc {
            color: var(--text-muted);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            height: 2.4rem; /* Keeps description alignment uniform */
        }

        /* Badges */
        .custom-badge {
            background-color: #f1f3f5;
            color: #495057;
            font-weight: 500;
            padding: 4px 12px;
            border-radius: 50px;
            border: 1px solid #e9ecef;
        }

        /* Custom Action Buttons */
        .btn-view {
            background-color: var(--primary_color);
            color: #ffffff;
            border: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 48%;
            transition: background-color 0.2s ease;
        }

        .btn-view:hover {
            background-color: #b0100e;
            color: #ffffff;
        }

        .btn-download {
            background-color: var(--bg_gray);
            color: var(--text-dark);
            border: none;
            font-weight: 500;
            padding: 8px 16px;
            border-radius: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 48%;
            transition: background-color 0.2s ease;
        }

        .btn-download:hover {
            background-color: #dee2e6;
            color: var(--text-dark);
        }
/* -------------------------End digital-library page css------------------------------- */
/* -------------------------Start program page css------------------------------- */
        .program-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), 
                        url(../images/program-heroBG.jpg) no-repeat center center;
            background-size: cover;
            color: #ffffff;
            padding: 60px 0;
        }
        /* Top Statistics Bar */
        .stat-card {
            background: #ffffff;
            border: 1px solid #f3f4f6;
            border-radius: 12px;
            padding: 16px 24px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .stat-icon-wrapper {
            background-color: #fdf2f2;
            color: #cc1512;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
        }
        .stat-icon-wrapper img{
            width: 35px;
            height: 35px;
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #6b7280;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Program Cards */
        .program-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            height: 100%;
        }

        .program-card-header {
            background-color: #fdf2f2;
            height: 180px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .status-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #22c55e;
            color: white;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: capitalize;
        }

        .header-illustration {
            color: rgba(204, 21, 18, 0.4);
        }

        .program-title {
            font-weight: 700;
            color: #111827;
        }

        .program-desc {
            color: #6b7280;
            line-height: 1.5;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
        }

        /* Metadata Grid inside Cards */
        .meta-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .meta-icon-box {
            color: #cc1512;
            background-color: #fdf2f2;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .meta-label {
            color: #9ca3af;
            margin-bottom: 0px;
            line-height: 1;
        }

        .meta-value {
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 0px;
            line-height: 1.2;
        }

        /* Action Footer Button */
        .btn-details {
            background-color: #e5e7eb;
            color: #4b5563;
            border: none;
            font-size: 1.25rem;
            font-weight: 500;
            padding: 10px 0;
            border-radius: 8px;
            width: 100%;
            transition: all 0.2s ease;
        }

        .btn-details:hover {
            background-color: var(--primary_color);
            color: var(--white);
        }


        /* Custom Navigation Tabs styling */
        .custom-nav-tabs {
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            width: 100%;
            margin-bottom: 24px;
        }

        .custom-nav-link {
            flex: 1;
            text-align: center;
            padding: 14px 0;
            font-weight: 600;
            font-size: 0.95rem;
            color: #6b7280;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.2s ease;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
        }

        .custom-nav-link:hover {
            color: #111827;
        }

        /* Active line highlight switcher matches image color */
        .custom-nav-link.active {
            color: #cc1512;
            border-bottom: 2px solid #cc1512;
        }

        /* Section Layout Boxes */
        .tab-info-card {
            background-color: #f8f9fa;
            border: 1px solid #f1f3f5;
            border-radius: 16px;
            padding: 28px;
        }

        .info-title {
            font-weight: 700;
            color: #111827;
        }

        .info-subtitle {
            color: #6b7280;
        }

        /* Metrics Parameter Layout */
        .param-label {
            font-size: 0.8rem;
            color: #9ca3af;
            margin-bottom: 4px;
        }

        .param-value {
            font-size: 0.95rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0;
        }

        /* Top Navigation Tabs Header Layout */
        .custom-tab-header {
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            width: 100%;
            margin-bottom: 30px;
        }

        .custom-tab-btn {
            flex: 1;
            text-align: center;
            padding: 14px 0;
            font-weight: 600;
            font-size: 0.95rem;
            color: #6b7280;
            text-decoration: none;
            border-bottom: 2px solid transparent;
            background: none;
            border-top: none;
            border-left: none;
            border-right: none;
            transition: all 0.2s ease;
        }

        .custom-tab-btn.active {
            color: #cc1512;
            border-bottom: 2px solid #cc1512;
        }

        /* Project Cards */
        .project-card {
            border: none;
            border-radius: 16px;
            overflow: hidden;
            background-color: #ffffff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
            height: 100%;
        }

        /* Image Crop Container with Relative Badges */
        .project-img-wrapper {
            position: relative;
            height: 200px;
            overflow: hidden;
        }

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

        /* Status Badges */
        .badge-completed {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #22c55e;
            color: #ffffff;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
        }

        .badge-ongoing {
            position: absolute;
            top: 16px;
            left: 16px;
            background-color: #f59e0b;
            color: #ffffff;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
        }

        /* Card Typography */
        .project-title {
            font-weight: 700;
            color: #111827;
            line-height: 1.4;
        }

        .project-desc {
            color: #6b7280;
            line-height: 1.5;
            overflow: hidden;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        /* Project Metadata Row */
        .meta-container {
            display: flex;
            gap: 24px;
            padding-top: 14px;
        }

        .meta-block {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .meta-icon-wrapper {
            color: #cc1512;
            background-color: #fdf2f2;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .meta-label {
            color: #9ca3af;
            margin-bottom: 0px;
            line-height: 1;
        }

        .meta-value {
            font-weight: 600;
            color: #4b5563;
            margin-bottom: 0px;
            line-height: 1.2;
        }


        /* Top Feature Banner Image Container */
        .banner-container {
            width: 100%;
            height: 380px;
            border-radius: 24px;
            overflow: hidden;
            margin-bottom: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

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

        /* Clean Content Info Blocks */
        .content-card {
            background-color: #F2F2F2;
            border: 1px solid #f1f3f5;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02);
        }

        .card-heading {
            font-weight: 700;
            color: #111827;
        }

        .card-body-text {
            color: #4b5563;
            line-height: 1.6;
        }

        /* Project Details Grid Items */
        .detail-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Colored Dynamic Icon Boxes matching the design exactly */
        .icon-box {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .icon-box img{
            width: 20px;
            height: 20px;
        }

        /* Custom Hardcoded Colors based on image specs */
        .box-blue { background-color: #eff6ff; color: #1d4ed8; }
        .box-orange { background-color: #fff7ed; color: #ea580c; }
        .box-green { background-color: #f0fdf4; color: #16a34a; }
        .box-pink { background-color: #fff1f2; color: #e11d48; }

        .detail-label {
            color: #9ca3af;
            margin-bottom: 2px;
            line-height: 1;
        }

        .detail-value {
            font-weight: 600;
            color: #111827;
            margin-bottom: 0px;
            line-height: 1.2;
        }


/* -------------------------End program page css------------------------------- */

/* -------------------------Stat news page css------------------------------- */
/* --- Filter Header Elements --- */
.news-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.800), rgba(0, 0, 0, 0.800)), 
                        url(../images/news-heroBG.jpg) no-repeat center center;
            background-size: cover;
            color: #ffffff;
            padding: 60px 0;
        }
.filter-toolbar .form-control, 
.filter-toolbar .form-select {
    border: 1px solid #ebdcdc;
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    color: #8c8c8c;
    background-color: #ffffff;
    box-shadow: none;
}
.filter-toolbar .form-control:focus, 
.filter-toolbar .form-select[aria-expanded="true"] {
    border: 1px solid var(--primary_color) !important;
    outline: 2px solid #f45b683d !important;
}

.search-box {
    position: relative;
}

.search-box .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c8c8c;
    pointer-events: none;
}

/* Custom Dropdown Styling to mirror open state image */
.custom-dropdown button[aria-expanded="true"] {
    border-color: #f45b69 !important;
}

.custom-dropdown .dropdown-menu {
    border: 1px solid #ebdcdc;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 0.5rem 0;
}

.custom-dropdown .dropdown-item {
    color: #2b2b2b;
    padding: 0.5rem 1.5rem;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #fcf1f2;
}

/* --- Card Grid Design --- */
.article-card {
    border: 1px solid #ebdcdc !important;
    border-radius: 16px !important;
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.article-card .img-container {
    width: 100%;
    aspect-ratio: 16 / 16;
    overflow: hidden;
}

.article-card .card-img-top {
    border-radius: 10px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card .card-body {
    padding: 1.5rem;
}

.article-card .card-title {
    font-weight: 500;
    line-height: 1.45;
    color: #2b2b2b;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-date {
    color: #8c8c8c;
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.article-card .card-date .date-box-icon {
    background-color: rgba(229, 107, 111, 0.233) ; 
    border-radius: 50%;/* Red accent calendar icon color */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Read More Button */
.btn-read-more {
    background-color: #eaeaea;
    color: #2b2b2b;
    border: none;
    border-radius: 8px;
    font-weight: 400;
    padding: 0.55rem 0;
    transition: background-color 0.2s;
}

.btn-read-more:hover, .btn-read-more:focus {
    background-color: #dddddd;
    color: #2b2b2b;
}

/* --- Custom Layout Pagination --- */
.custom-pagination .page-item {
    margin: 0 3px;
}

.custom-pagination .page-link {
    border: none;
    color: #8c8c8c;
    padding: 0.4rem 0.75rem;
    background: transparent;
    border-radius: 6px !important;
}

.custom-pagination .page-item.active .page-link {
    background-color: #fde8eb;
    color: #f45b69;
    font-weight: 600;
}

.custom-pagination .page-link:hover:not(.dots) {
    background-color: #f5f5f5;
    color: #2b2b2b;
}

.custom-pagination .prev-next {
    display: flex;
    align-items: center;
    color: #8c8c8c;
}

.custom-pagination .page-item.disabled .page-link {
    background: transparent;
    opacity: 0.5;
}



/* --- Mobile Trigger Button Styling (image_863dc2.png) --- */
.btn-mobile-filter {
    background-color: #fff1f2; /* Soft light-red background block tint */
    border: none;
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: #c92a3a; /* Dark blood red slider lines */
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-mobile-filter:hover, .btn-mobile-filter:focus {
    background-color: #fde2e4;
    color: #c92a3a;
}

/* --- Mobile Sheet / Offcanvas Overrides (image_863e1f.png) --- */
.mobile-filter-drawer.offcanvas-bottom {
    height: auto;
    max-height: 85vh;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    border-top: none;
    padding: 0 1rem 1.5rem 1rem;
}

/* Drag indicator handle on top sheet */
.drawer-handle {
    width: 40px;
    height: 4px;
    background-color: #ccc;
    border-radius: 2px;
}

/* Clear all button style matching image */
.btn-clear-all {
    background-color: #eaeaea;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #333;
    padding: 0.4rem 0.8rem;
}

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333333;
}

.filter-divider {
    color: #ebdcdc;
    opacity: 0.6;
    margin: 1.25rem 0;
}

/* Custom Pill Buttons Selection Styles */
.btn-filter-pill {
    background-color: #f3f3f3;
    border: none;
    color: #555555;
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-weight: 400;
    transition: all 0.15s ease-in-out;
}

/* Checked state color swap (Turns Dark Charcoal Black) */
.btn-check:checked + .btn-filter-pill {
    background-color: #212121 !important;
    color: #ffffff !important;
}

/* Red Solid Bottom Action Button */
.btn-apply-filters {
    background-color: #c92a3a;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
}

.btn-apply-filters:hover, .btn-apply-filters:focus {
    background-color: #ad202e;
    color: #ffffff;
}

/* --- Hero Feature Image Configuration --- */
.featured-img-container {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.featured-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* --- Utility Circular Action Badges (Top Right) --- */
.utility-actions .btn-action-circle {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background-color: #fff1f2;
    color: #c92a3a;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.utility-actions .btn-action-circle:hover {
    background-color: #fde2e4;
    color: #ad202e;
    transform: scale(1.05);
}

/* --- Article Typography Structure --- */
.article-body-content p {
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 1.25rem;
    text-align: justify;
}

.section-title {
    font-weight: 700;
    color: #212121;
}

/* --- In Photos Image Box Matrix --- */
.gallery-img-box {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-img-box:hover img {
    transform: scale(1.03);
}

/* --- Metadata Tag Pill Links --- */
.badge-tag {
    display: inline-block;
    background-color: #f3f3f3;
    color: #666666;
    text-decoration: none;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    transition: background-color 0.15s ease;
}

.badge-tag:hover {
    background-color: #eaeaea;
    color: #212121;
}

.section-divider {
    border-top: 1px solid #ebdcdc;
    opacity: 0.5;
}

/* --- Action Icons Grid Overrides --- */
.utility-actions .btn-action-circle {
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 50%;
    background-color: #fff1f2;
    color: #c92a3a;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* --- Share Modal UI Design Configuration --- */
.modal-custom-share {
    max-width: 440px;
}

.share-header-icon-container {
    width: 54px;
    height: 54px;
    background-color: #fff1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c92a3a;
}

.share-input-group .form-control {
    padding: 0.6rem 1rem;
    border-color: #ebdcdc;
}
.share-input-group .form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.share-input-group .btn-danger {
    background-color: #c92a3a;
    border-color: #c92a3a;
}

/* Social Icon Badges Container Grid styling */
.social-share-row .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: #fff1f2;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-share-row .social-icon:hover {
    transform: scale(1.1);
}


/* Dynamic resizable transition tracking indicator class */
#resizable-content p {
    transition: font-size 0.15s ease-out;
}

/* -------------------------End news page css------------------------------- */

/* Card styling to match the image border and padding */
        .video-card {
            border: 1px solid #e9ecef;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 2px 4px rgba(0,0,0,0.02);
            height: 100%;
        }

        /* Image container with dark overlay effect */
        .video-thumbnail-wrapper {
            position: relative;
            display: block;
            cursor: pointer;
            overflow: hidden;
        }

        .video-thumbnail-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4); /* Dark dimming effect */
            z-index: 1;
            transition: background 0.3s ease;
        }

        .video-thumbnail-wrapper:hover::before {
            background: rgba(0, 0, 0, 0.5); /* Slightly darker on hover */
        }

        /* Centered custom play button */
        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px;
            height: 60px;
            background: #fff;
            color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: transform 0.2s ease;
        }

        .video-thumbnail-wrapper:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-title {
            color: #666;
            font-weight: 500;
        }
    

/* ربط العناصر بالمتغيرات المرنة */
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }
h6 { font-size: var(--h6-size); }
p, div, span, li, a, input, select, textarea, button, label, strong, b, em, i, blockquote ,.small, small { 
  font-size: var(--body-size); 
}
code, kbd, pre, samp, small { font-size: var(--small-size); }
sub, sup { font-size: var(--sub-size); }

.btn_animation {
  display: inline-block;
  /* Add padding or height so the button has physical dimensions */
  padding: 0.75rem 1.25rem; 
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn_animation:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.btn_animation:before {
  content: '';
  position: absolute;
  
  /* Place the starting point exactly at the bottom-center of the button */
  top: 100%;
  left: 50%;
  
  /* Make a massive square so the circle completely engulfs the button corners */
  width: 300px;
  height: 300px;
  
  /* Center the pseudo-element on its own axis, turn it into a circle, and shrink it */
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  
  /* Control the speed of the ripple */
  transition: transform 1s ease-in-out;
  z-index: -1;
}

/* Color Themes */
.primary_animation:after { background-color: var(--primary_color); }
.primary_animation:before { background-color: var(--secondary_color); }

.secondary_animation:after { background-color: var(--secondary_color); }
.secondary_animation:before { background-color: var(--primary_color); }

.transperant_animation:after { background-color: transparent; }
.transperant_animation:before { background-color: var(--primary_color); }

.btn_animation:hover:before {
  transform: translate(-50%, -50%);
  
}
#main_slide_carousel .carousel-caption h2{font-size: 2rem !important;}
.statistics_section .owl-carousel .owl-item .item > div {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important; 
  box-sizing: border-box !important;
}

.statistics_section .owl-carousel .owl-item .item {
  width: 100% !important;
  display: flex !important;
}
.statistics_section .owl-carousel .owl-item .item h4.description_text {
  margin-top: 1rem !important; 
  margin-bottom: 0 !important;
}
.statistics_section .item .description_text{font-size: 1.5rem !important;}
.stories-section #myTab button.btn-outline-light:focus,
.stories-section #myTab button.btn-outline-light.active,
.stories-section #myTab button.btn-outline-light[aria-selected="true"]
{
background-color: var(--primary_color); opacity: 1 !important; border-color: var(--primary_color); color: white;
}
.faq-body-wrapper .text-muted.mx-auto{font-size: 2rem !important;}


/* الحاوية الخارجية لجعل الشريط يظهر بشكل عائم أسفل الشاشة */
    .cookie-banner-wrapper {
        position: fixed;
        bottom: 24px;
        left: 0;
        width: 100%;
        z-index: 9999;
        font-family: system-ui, -apple-system, sans-serif;
        display: block; /* سيتم التحكم به عبر الـ JS لاحقاً ليكون مدمجاً بشكل ذكي */
    }

    /* تصميم الكارد الرئيسي الخلفية الرمادية الفاتحة والزوايا الدائرية */
    .cookie-card {
        background-color: #f2f2f2;
        border-radius: 16px;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* نصوص الإشعار */
    .cookie-text {
        color: #1a1a1a;
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .cookie-subtext {
        color: #1a1a1a;
        font-size: 1.25rem;
        font-weight: 500;
    }

    /* زر القبول الأحمر الداكن */
    .btn-cookie-accept {
        background-color: #c9222b;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-weight: 500;
        font-size: 1.25rem;
        transition: background-color 0.2s ease;
    }

    .btn-cookie-accept:hover {
        background-color: #a81c23;
        color: #ffffff;
    }

    /* زر الرفض الرمادي الفاتح مع الحدود */
    .btn-cookie-reject {
        background-color: #f2f2f2;
        color: #1a1a1a;
        border: 1px solid #d1d1d1;
        border-radius: 8px;
        font-weight: 500;
        font-size: 1.25rem;
        transition: background-color 0.2s ease;
    }

    .btn-cookie-reject:hover {
        background-color: #e6e6e6;
        color: #1a1a1a;
        border-color: #b5b5b5;
    }

    /* رابط إدارة التفضيلات المستطر */
    .cookie-link {
        color: #1a1a1a;
        font-size: 1.25rem;
        text-decoration: underline;
        font-weight: 500;
    }

    .cookie-link:hover {
        color: #000000;
    }

    /* محاذاة الرابط في الشاشات الكبيرة ليصبح على اليمين */
    @media (min-width: 768px) {
        .ms-auto-md {
            margin-left: auto !important;
        }
    }

    /* الكلاس الافتراضي في الوضع العادي (Light Mode) */
.default-card-bg {
  background-color: #ffffff; /* بيضاء في الوضع العادي */
  color: #1a1a1a;            /* لون نص غامق */
  padding-top: 5vh;
  padding-bottom: 5vh;
  box-sizing: border-box;
}

/*----------------------------------------------------------------*/
/*--                  The media query Started                   --*/
/*----------------------------------------------------------------*/
/*--------------------Start mobile device style ---------------------------*/
@media screen and (max-width: 480px) {
  body, html  { overflow-x: hidden;}
  .sticky {width: 100%; border-radius: 0;}

   .fs_xxl {font-size: 1.5rem !important;}
   #main_slide_carousel .carousel-caption h2{font-size: 1rem !important;}
   #main_slide_carousel .carousel-caption {bottom:13% ; transform: translateY(-13%);}
   #main_slide_carousel .carousel-item img{height: 413px;}
.btn_primary_color,.btn_white_outline_color{min-width: 100%;}
  .profile-section {
      min-height: 300px;
  }
  .our_work_section{background-color: #ffffff;}
  .bg_light_gray {
    background-color: #FFFFFF;
    border: 1px solid #F2F2F2;
    min-height: 305px;
}
.custom-tabs .nav-link.active::after {
    background-color: #464646;
}
.custom-tabs .nav-link.active {
    color: #464646 !important;
    }
    .our_work_section .title{color: #363636 !important;}
    .hero-section { min-height: 200px;}
    #about-section ,#direction-section ,#objectives-section { padding: 50px 0;}

    .statistics_section .owl-item{display: block !important;}
    
.custom-tabs .nav-link {
    color: #808080;
    transition: all 0.3s ease;
    border-bottom: 1px solid #D8D8D8 !important;
    position: relative;
}

.custom-tabs .nav-link.active {
    color: #F2F2F2 !important;
    background-color: transparent !important;
    font-weight: bold;
}

.custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #F2F2F2;
}
    .our_work_section{    margin-top: 0px !important;}
    #main_slide_carousel .carousel-caption h2{font-size: 1rem !important;}
.navbar-nav .nav-link.active::after {
    width: 5%;
}

.navbar-nav .nav-link::after {
    left: 15px;
}

    .custom-tabs .nav-link.active {
        color: var(--black) !important;
    }

  }


/*--------------------Start ipade and device style ---------------------------*/
@media (max-width: 991px) and (min-width: 480px) {
    body, html  { overflow-x: hidden;}
    .sticky {width: 100%; border-radius: 0;}
  
   .fs_xxl {font-size: 3rem !important;}
   #main_slide_carousel .carousel-caption {bottom:23% ; transform: translateY(-23%);}
  .profile-section {
      min-height: 300px;
  }

   .profile-img {
      width: 240px;
      height: 240px;
    }
    .ring-1 { width: 310px; height: 310px;}
    .ring-2 { width: 360px; height: 360px;}
    .ring-3 { width: 410px; height: 410px;}
    .bg_light_gray {
    background-color: #FFFFFF;
    min-height: 240px;
}

    .our_work_section img {
        height: 240px !important;
    }
      .our_work_section{background-color: #ffffff;}
  .bg_light_gray {
    background-color: #FFFFFF;
    border: 1px solid #F2F2F2;
}
.custom-tabs .nav-link.active::after {
    background-color: #464646;
}
.custom-tabs .nav-link.active {
    color: #464646 !important;
    }
    .our_work_section .title{color: #363636 !important;}
    .hero-section { min-height: 250px;}
    #about-section ,#direction-section ,#objectives-section { padding: 50px 0;}
    .our_work_section{    margin-top: 0px !important;}
.custom-tabs .nav-link {
    color: #808080;
    transition: all 0.3s ease;
    border-bottom: 1px solid #D8D8D8 !important;
    position: relative;
}

.custom-tabs .nav-link.active {
    color: #F2F2F2 !important;
    background-color: transparent !important;
    font-weight: bold;
}

.custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: #F2F2F2;
}
#main_slide_carousel .carousel-caption h2{font-size: 1.5rem !important;}
.navbar-nav .nav-link.active::after {
    width: 3%;
}

.navbar-nav .nav-link::after {
    left: 2%;
}
    .custom-tabs .nav-link.active {
        color: var(--black) !important;
    }
}

/*--------------------Start small device style ---------------------------*/
@media (max-width: 1300px) and (min-width: 991px) {
    body, html  { overflow-x: hidden;}

}
/*--------------------Start laptop device (not HD screen) style ---------------------------*/
@media (min-width: 1300px) and (max-width: 1899px) {
    body, html  { overflow-x: hidden;}
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1200px;
  }
    .navbar-nav .nav-link {font-size: 20px !important;}
  .contact_btn,.lang_btn h6{font-size: 17px !important;}
    .h4 {
        font-size: 2rem;
    }
}

/*--------------------Start Full HD device style ---------------------------*/
@media screen and (min-width: 1900px) {
      body, html  { overflow-x: hidden;}
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    max-width: 1400px !important;
  }
  .navbar-nav .nav-link {font-size: 25px !important;}
  .contact_btn,.lang_btn h6{font-size: 22px !important;}
  .statistics_section .item .description_text{font-size: 1.75rem !important;}
.red_circle {
    top: -250px;
    left: -320px;

}
.logo_bg_section {
    top: -100px;
    left: -320px;
}
    .h4 {
        font-size: 2rem;
    }

}



        .dashboard-container { display: flex; flex-direction: column; height: 100vh; width: 100%; }

        #map { flex: 1; background: #f4f4f4 !important; }


/* --- تنسيق الـ Popup (أسلوب الصورة) --- */
        .leaflet-popup-content-wrapper {
            border-radius: 12px;
            padding: 10px;
            width: 300px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .leaflet-popup-content { margin: 15px; }

        .popup-card-title {
            font-size: 22px;
            font-weight: bold;
            color: #333;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #eee;
        }

        .popup-info-row {
            margin: 10px 0;
            font-size: 15px;
            color: #444;
        }
        .popup-info-row .label { color: #666; margin-right: 5px; }
        .popup-info-row .value { font-weight: bold; color: #222; }

        .view-details-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .view-details-container:hover { transform: scale(1.02); }

        .view-details-text {
            color: #d63031;
            font-weight: bold;
            text-decoration: underline;
            margin-right: 10px;
        }

        .red-arrow-circle {
            background: #d63031;
            color: white;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* تسميات المحافظات */
        .gov-label {
            background: transparent !important;
            border: none !important;
            box-shadow: none !important;
            font-weight: bold;
            color: #2d3436;
            text-transform: uppercase;
            font-size: 28px;
            text-align: center;
            line-height: 0.8 !important; 
            margin: 0 !important;
            padding: 0 !important;

            text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
        }

        .back-btn {
            position: absolute; bottom: 30px; left: 30px; z-index: 1000;
            background: #d63031; color: white; border: none; padding: 12px 25px;
            border-radius: 5px; cursor: pointer; display: none; font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }















        /* ==========================================================================
   Dark Mode Styles (.dark_mode)
   ========================================================================== */

/* تحديث المتغيرات اللونية الأساسية عند تفعيل الوضع الليلي */
.dark_mode {
  --secondary_color: #ffffff; /* عكس اللون الثنائي ليصبح فاتحاً */
  --white: #121212;           /* عكس الأبيض ليصبح أسود داكن */
  --black: #ffffff;           /* عكس الأسود ليصبح أبيض */
  --prograph: #e0e0e0;        /* نصوص الفقرات تصبح فاتحة ومريحة للعين */
  --prograph_light: #888888;  /* النصوص الثانوية */
  --bg_light: #1e1e1e;        /* الخلفيات الفاتحة تصبح رمادي داكن */
  --bg_gray: #2d2d2d;         /* الخلفيات الرمادية */
}

/* تعديل العناصر العامة والنصوص */
body.dark_mode {
  background-color: #0e0e0e;
  color: #ffffff;
}

.dark_mode .prograph_color {
  color: var(--prograph) !important;
}

.dark_mode .white_color,.dark_mode .card-title {
  color: var(--black) !important;
}

.dark_mode .black_color {
  color: var(--black) !important;
}

.dark_mode .prograph_light_color {
  color: var(--prograph_light) !important;
}

.dark_mode .secondary_color {
  color: var(--secondary_color) !important;
}

.dark_mode .gray_color {
  color: var(--gray_color) !important;
}

/* تعديل كلاسات الخلفيات */
.dark_mode .bg_secondary_color {
  background-color: #ffffff; /* أو لون مخصص يتناسب مع تصميمك الداكن */
}

.dark_mode .bg_white {
  background-color: #121212 !important;
}

.dark_mode .bg_black {
  background-color: #ffffff !important;
}

.dark_mode .bg_light {
  background-color: var(--bg_light) !important;
}

.dark_mode .bg_gray {
  background-color: var(--bg_gray) !important;
}

.dark_mode .bg_light_gray {
  background-color: #1e1e1e !important;
}

/* القوائم وروابط التنقل (Navbar) */
.dark_mode .navbar-nav .nav-link, .dark_mode .contact_btn {
  color: #ffffff !important;
}

.dark_mode .navbar-nav .nav-link:hover {
  color: var(--primary_color) !important;
}

/* الكروت والعناصر العائمة (Cards) */
.dark_mode .card {
  background-color: #1e1e1e !important;
  color: #ffffff;
  border-color: #333333 !important;
}
.dark_mode .partnership-section {
  background-color: #1e1e1e !important;
}
.dark_mode .btn_white_outline_color{
  color: #fff !important;
  border-color: #fff;
}
.dark_mode .btn_primary_color{
  color: #fff !important;
}
.dark_mode .btn_white_outline_color:hover{
  color: #000 !important;
  border-color: #fff;
}
.dark_mode .btn_primary_color:hover{
  color: #000 !important;
}

.dark_mode .main-card,
.dark_mode .side-card {
  background-color: #1a1a1a !important;
  border: 1px solid #333333 !important;
}

.dark_mode .info-card {
  background-color: #251b1c !important; /* درجة داكنة متناسقة مع اللون الوردي الخفيف */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dark_mode .info-card h5,
.dark_mode .info-card p {
  color: #ffffff !important;
}

.dark_mode .direction-card, .dark_mode .Where_We_Work_section, .dark_mode footer .btn-light {
  background-color: #1e1e1e !important;
  color: #ffffff;
}


.dark_mode .card-desc {
  color: #cccccc !important;
}

.dark_mode .card-neutral {
  background-color: #2a2a2a !important;
  color: #ffffff !important;
}

.dark_mode .profile-card {
  background: #1e1e1e !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
}

.dark_mode .member-name {
  color: #ffffff !important;
}

.dark_mode .role-badge {
  background-color: #2d2d2d !important;
  color: #b0b0b0 !important;
}

/* الأزرار والتفاعلات (Buttons & Pills) */
.dark_mode .btn-light {
  background-color: #2d2d2d !important;
  color: #ffffff !important;
}

.dark_mode .btn-light:hover {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.dark_mode .btn-learn-more {
  background-color: #2d2d2d !important;
  color: #ffffff !important;
}

.dark_mode .reason-pills label {
  background-color: #2d2d2d !important;
  color: #e0e0e0 !important;
}

.dark_mode .reason-pills input[type="radio"]:checked + label {
  background-color: var(--primary_color) !important;
  color: #ffffff !important;
}

/* الحقول والنماذج (Forms) */
.dark_mode .form-control,
.dark_mode .form-select,
.dark_mode .form-control-custom {
  background-color: #1a1a1a !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}

/* الأقسام والحدود (Sections & Borders) */
.dark_mode .DirectorMessage_section {
  background: linear-gradient(to bottom, #121212, #1e1e1e) !important;
}

.dark_mode #about-section {
  background: linear-gradient(to bottom, #83838300 0%, #121212 100%) !important;
}

.dark_mode #direction-section,.dark_mode .contact-body-wrapper {
  background-color: #121212 !important;
}

.dark_mode #objectives-section {
  background-color: #1a1a1a !important;
}

.dark_mode .border_gray {
  border-color: #444444 !important;
}

.dark_mode .border-primary-custom {
  border-color: #333333 !important;
}

.dark_mode .ring {
  border-color: #333333 !important;
}

.dark_mode .image-wrapper {
  background-color: #1e1e1e !important;
}

.dark_mode .profile-img {
  border-color: #333333 !important;
  background-color: #1a1a1a !important;
}

.dark_mode .section-title,
.dark_mode .text-body-custom,
.dark_mode .description_text {
  color: #e0e0e0 !important;
}

/* الأيقونات وعناصر الخرائط */
.dark_mode .social_media_icon {
  background-color: #333333 !important;
  color: #ffffff !important;
}

.dark_mode .statistics_section .icon {
  background: linear-gradient(to bottom, #2d2d2d, #1a1a1a) !important;
}

.dark_mode .map-wrapper {
  background-color: #1a1a1a !important;
}

.dark_mode .popover {
  background-color: #1e1e1e !important;
  color: #ffffff !important;
}

.dark_mode .popover-header {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
  border-bottom-color: #333333 !important;
}

.dark_mode .floating-contact-card,
.dark_mode .video-card,
.dark_mode .impact-section,
.dark_mode #about-section
 {
  background: rgba(30, 30, 30, 0.75) !important;
  border-color: #333333 !important;
}

/* ==========================================================================
   تخطي كلاسات Bootstrap الثابتة في الوضع الداكن
   ========================================================================== */

/* 1. إجبار النصوص التي تحمل كلاسات بوتستراب على التحول */
.dark_mode .text-dark,
.dark_mode .text-black,
.dark_mode .text-body,
.dark_mode .video-title {
  color: #ffffff !important;
}



/* 2. إجبار الحدود (Borders) الخاصة ببوتستراب على التحول */
.dark_mode .border,
.dark_mode .border-top,
.dark_mode .border-bottom,
.dark_mode .border-start,
.dark_mode .border-end {
  border-color: #444444 !important; /* لون رمادي داكن للحدود يتناسب مع الخلفية السوداء */
}

/* إذا كنت تستخدم كلاسات حدود رمادية مخصصة من بوتستراب */
.dark_mode .border-light {
  border-color: #222222 !important;
}

.dark_mode .border-dark {
  border-color: #ffffff !important;
}

/* 3. إجبار الجداول (Tables) في بوتستراب */
.dark_mode .table {
  color: #ffffff !important;
  border-color: #444444 !important;
}
.dark_mode .table th, 
.dark_mode .table td {
  background-color: #121212 !important;
  color: #ffffff !important;
}

/* 4. الحقول والنماذج الخاصة ببوتستراب (Inputs) */
.dark_mode .form-control,
.dark_mode .form-select {
  background-color: #1a1a1a !important;
  border-color: #444444 !important;
  color: #ffffff !important;
}

.dark_mode .form-control::placeholder {
  color: #777777 !important;
}



.dark_mode .tooltip-inner {
  color: #fff;
}


.dark_mode .lang_btn img,
.dark_mode .social_media_icon img,
 .dark_mode .navbar-brand img,
 .dark_mode .btn-download img 
 {
    filter: brightness(0) invert(1) !important;
}

.dark_mode .floating-contact-card h2,
.dark_mode .contact-body-wrapper h3,
.dark_mode .contact-body-wrapper h4,
.dark_mode .floating-contact-card.about-fotter,
.dark_mode .form-label-custom,
.dark_mode .category-title,
.dark_mode .custom-nav-link,
.dark_mode .section-title,
.dark_mode .feature-card h4,
.dark_mode .area-card h3,
.dark_mode .partner-card h3,
.dark_mode .timeline-text-side h4,
.dark_mode .project-title,
.dark_mode .meta-label,
.dark_mode .btn-details:hover,
.dark_mode .stat-value,
.dark_mode .program-title,
.dark_mode .floating-contact-card .form-label,
.dark_mode .section-divider-title,
.dark_mode #about-section h2,
.dark_mode #direction-section h2,
.dark_mode #objectives-section h2,
.dark_mode .direction-card h3,
.dark_mode .partners-section h1
{color: #ffffff !important;}

.dark_mode .custom-nav-link.active
{color: var(--primary_color) !important;}

.dark_mode .text-muted,
.dark_mode .text-secondary,
.dark_mode .report-desc,
.dark_mode .card-text,
.dark_mode .main-article-wrapper p,
.dark_mode .feature-card p,
.dark_mode .partner-card p,
.dark_mode .project-desc,
.dark_mode .meta-value,
.dark_mode .stat-label,
.dark_mode .program-desc,
.dark_mode .form-subtitle,
.dark_mode .about-text p
{
  color: #aaaaaa !important;
}

.dark_mode .line_gray_color,
.dark_mode .custom-nav-tabs ,
.dark_mode .stat-card
{border-color: #444444 !important;}

.dark_mode .custom-badge,
.dark_mode .filter-pills .btn-pill,
.dark_mode .badge-tag,
.dark_mode .card-description-box,
.dark_mode .btn-program-gray:hover
{
    background-color: #444444 !important;
    border-color: #444444 !important;
    color: #fff;
}
.dark_mode .filter-pills .btn-pill.active
{
    background-color: var(--primary_color) !important;
    border-color: var(--primary_color) !important;
    color: #fff;
}

.dark_mode .bg-white,
.dark_mode .faq-body-wrapper,
.dark_mode .why-partner-section,
.dark_mode .area-card,
.dark_mode .how-we-partner-section,
.dark_mode .statistics_section .bg_light,
.dark_mode .timeline-section,
.dark_mode .stat-card,
.dark_mode .team-section,
.dark_mode .default-card-bg
 {
    background-color: #121212 !important;
}

